Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multichain Info
N/A
Latest 22 from a total of 22 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
Amount
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Send From | 23604545 | 277 days ago | IN | 0.000080857453012 ETH | 0.000000558201 | ||||
| Transfer Ownersh... | 14174130 | 495 days ago | IN | 0 ETH | 0.000004940331 | ||||
| Set Max Single R... | 14174113 | 495 days ago | IN | 0 ETH | 0.000008450789 | ||||
| Set Max Daily Re... | 14174107 | 495 days ago | IN | 0 ETH | 0.000008487082 | ||||
| Set Max Single T... | 14174103 | 495 days ago | IN | 0 ETH | 0.000008434035 | ||||
| Set Max Daily Li... | 14174098 | 495 days ago | IN | 0 ETH | 0.00000834937 | ||||
| Set Min Dst Gas | 14174094 | 495 days ago | IN | 0 ETH | 0.0000079751 | ||||
| Set Max Single R... | 14174090 | 495 days ago | IN | 0 ETH | 0.000008288146 | ||||
| Set Max Daily Re... | 14174083 | 495 days ago | IN | 0 ETH | 0.000008274523 | ||||
| Set Max Single T... | 14174076 | 495 days ago | IN | 0 ETH | 0.000008266505 | ||||
| Set Max Daily Li... | 14174070 | 495 days ago | IN | 0 ETH | 0.000008253151 | ||||
| Set Min Dst Gas | 14174064 | 495 days ago | IN | 0 ETH | 0.000007908835 | ||||
| Set Max Single R... | 14174059 | 495 days ago | IN | 0 ETH | 0.000008224741 | ||||
| Set Max Daily Re... | 14174051 | 495 days ago | IN | 0 ETH | 0.000008163104 | ||||
| Set Max Single T... | 14174041 | 495 days ago | IN | 0 ETH | 0.000008185246 | ||||
| Set Max Daily Li... | 14174038 | 495 days ago | IN | 0 ETH | 0.000008189658 | ||||
| Set Min Dst Gas | 14174033 | 495 days ago | IN | 0 ETH | 0.000007886887 | ||||
| Set Max Single R... | 14174029 | 495 days ago | IN | 0 ETH | 0.000008207158 | ||||
| Set Max Daily Re... | 14174024 | 495 days ago | IN | 0 ETH | 0.00000824017 | ||||
| Set Max Single T... | 14174017 | 495 days ago | IN | 0 ETH | 0.000008194758 | ||||
| Set Max Daily Li... | 14174011 | 495 days ago | IN | 0 ETH | 0.000008075058 | ||||
| Set Min Dst Gas | 14174007 | 495 days ago | IN | 0 ETH | 0.000007753005 |
Latest 1 internal transaction
| Parent Transaction Hash | Block | From | To | Amount | ||
|---|---|---|---|---|---|---|
| 23604545 | 277 days ago | 0.000080857453012 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
XVSProxyOFTDest
Compiler Version
v0.8.25+commit.b61c2a91
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.25;
import { IXVS } from "./interfaces/IXVS.sol";
import { BaseXVSProxyOFT } from "./BaseXVSProxyOFT.sol";
/**
* @title XVSProxyOFTDest
* @author Venus
* @notice XVSProxyOFTDest contract builds upon the functionality of its parent contract, BaseXVSProxyOFT,
* and focuses on managing token transfers to the destination chain.
* It provides functions to check eligibility and perform the actual token transfers while maintaining strict access controls and pausing mechanisms.
*/
contract XVSProxyOFTDest is BaseXVSProxyOFT {
/**
* @notice Emits when stored message dropped without successful retrying.
*/
event DropFailedMessage(uint16 srcChainId, bytes indexed srcAddress, uint64 nonce);
constructor(
address tokenAddress_,
uint8 sharedDecimals_,
address lzEndpoint_,
address oracle_
) BaseXVSProxyOFT(tokenAddress_, sharedDecimals_, lzEndpoint_, oracle_) {}
/**
* @notice Clear failed messages from the storage.
* @param srcChainId_ Chain id of source
* @param srcAddress_ Address of source followed by current bridge address
* @param nonce_ Nonce_ of the transaction
* @custom:access Only owner
* @custom:event Emits DropFailedMessage on clearance of failed message.
*/
function dropFailedMessage(uint16 srcChainId_, bytes memory srcAddress_, uint64 nonce_) external onlyOwner {
failedMessages[srcChainId_][srcAddress_][nonce_] = bytes32(0);
emit DropFailedMessage(srcChainId_, srcAddress_, nonce_);
}
/**
* @notice Returns the total circulating supply of the token on the destination chain i.e (total supply).
* @return total circulating supply of the token on the destination chain.
*/
function circulatingSupply() public view override returns (uint256) {
return innerToken.totalSupply();
}
/**
* @notice Debit tokens from the given address
* @param from_ Address from which tokens to be debited
* @param dstChainId_ Destination chain id
* @param amount_ Amount of tokens to be debited
* @return Actual amount debited
*/
function _debitFrom(
address from_,
uint16 dstChainId_,
bytes32,
uint256 amount_
) internal override whenNotPaused returns (uint256) {
require(from_ == _msgSender(), "ProxyOFT: owner is not send caller");
_isEligibleToSend(from_, dstChainId_, amount_);
IXVS(address(innerToken)).burn(from_, amount_);
return amount_;
}
/**
* @notice Credit tokens in the given account
* @param srcChainId_ Source chain id
* @param toAddress_ Address on which token will be credited
* @param amount_ Amount of tokens to be credited
* @return Actual amount credited
*/
function _creditTo(
uint16 srcChainId_,
address toAddress_,
uint256 amount_
) internal override whenNotPaused returns (uint256) {
_isEligibleToReceive(toAddress_, srcChainId_, amount_);
IXVS(address(innerToken)).mint(toAddress_, amount_);
return amount_;
}
}// SPDX-License-Identifier: Unlicense /* * @title Solidity Bytes Arrays Utils * @author Gonçalo Sá <[email protected]> * * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. * The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. */ pragma solidity >=0.8.0 <0.9.0; library BytesLib { function concat(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bytes memory) { bytes memory tempBytes; assembly { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // Store the length of the first bytes array at the beginning of // the memory for tempBytes. let length := mload(_preBytes) mstore(tempBytes, length) // Maintain a memory counter for the current write location in the // temp bytes array by adding the 32 bytes for the array length to // the starting location. let mc := add(tempBytes, 0x20) // Stop copying when the memory counter reaches the length of the // first bytes array. let end := add(mc, length) for { // Initialize a copy counter to the start of the _preBytes data, // 32 bytes into its memory. let cc := add(_preBytes, 0x20) } lt(mc, end) { // Increase both counters by 32 bytes each iteration. mc := add(mc, 0x20) cc := add(cc, 0x20) } { // Write the _preBytes data into the tempBytes memory 32 bytes // at a time. mstore(mc, mload(cc)) } // Add the length of _postBytes to the current length of tempBytes // and store it as the new length in the first 32 bytes of the // tempBytes memory. length := mload(_postBytes) mstore(tempBytes, add(length, mload(tempBytes))) // Move the memory counter back from a multiple of 0x20 to the // actual end of the _preBytes data. mc := end // Stop copying when the memory counter reaches the new combined // length of the arrays. end := add(mc, length) for { let cc := add(_postBytes, 0x20) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } // Update the free-memory pointer by padding our last write location // to 32 bytes: add 31 bytes to the end of tempBytes to move to the // next 32 byte block, then round down to the nearest multiple of // 32. If the sum of the length of the two arrays is zero then add // one before rounding down to leave a blank 32 bytes (the length block with 0). mstore( 0x40, and( add(add(end, iszero(add(length, mload(_preBytes)))), 31), not(31) // Round down to the nearest 32 bytes. ) ) } return tempBytes; } function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal { assembly { // Read the first 32 bytes of _preBytes storage, which is the length // of the array. (We don't need to use the offset into the slot // because arrays use the entire slot.) let fslot := sload(_preBytes.slot) // Arrays of 31 bytes or less have an even value in their slot, // while longer arrays have an odd value. The actual length is // the slot divided by two for odd values, and the lowest order // byte divided by two for even values. // If the slot is even, bitwise and the slot with 255 and divide by // two to get the length. If the slot is odd, bitwise and the slot // with -1 and divide by two. let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) let newlength := add(slength, mlength) // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage switch add(lt(slength, 32), lt(newlength, 32)) case 2 { // Since the new array still fits in the slot, we just need to // update the contents of the slot. // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length sstore( _preBytes.slot, // all the modifications to the slot are inside this // next block add( // we can just add to the slot contents because the // bytes we want to change are the LSBs fslot, add( mul( div( // load the bytes from memory mload(add(_postBytes, 0x20)), // zero all bytes to the right exp(0x100, sub(32, mlength)) ), // and now shift left the number of bytes to // leave space for the length in the slot exp(0x100, sub(32, newlength)) ), // increase length by the double of the memory // bytes length mul(mlength, 2) ) ) ) } case 1 { // The stored value fits in the slot, but the combined value // will exceed it. // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // The contents of the _postBytes array start 32 bytes into // the structure. Our first read should obtain the `submod` // bytes that can fit into the unused space in the last word // of the stored array. To get this, we read 32 bytes starting // from `submod`, so the data we read overlaps with the array // contents by `submod` bytes. Masking the lowest-order // `submod` bytes allows us to add that value directly to the // stored value. let submod := sub(32, slength) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(and(fslot, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00), and(mload(mc), mask))) for { mc := add(mc, 0x20) sc := add(sc, 1) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } default { // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) // Start copying to the last used word of the stored array. let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // Copy over the first `submod` bytes of the new data as in // case 1 above. let slengthmod := mod(slength, 32) let mlengthmod := mod(mlength, 32) let submod := sub(32, slengthmod) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(sload(sc), and(mload(mc), mask))) for { sc := add(sc, 1) mc := add(mc, 0x20) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } } } function slice( bytes memory _bytes, uint _start, uint _length ) internal pure returns (bytes memory) { require(_length + 31 >= _length, "slice_overflow"); require(_bytes.length >= _start + _length, "slice_outOfBounds"); bytes memory tempBytes; assembly { switch iszero(_length) case 0 { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // The first word of the slice result is potentially a partial // word read from the original array. To read it, we calculate // the length of that partial word and start copying that many // bytes into the array. The first word we copy will start with // data we don't care about, but the last `lengthmod` bytes will // land at the beginning of the contents of the new array. When // we're done copying, we overwrite the full first word with // the actual length of the slice. let lengthmod := and(_length, 31) // The multiplication in the next line is necessary // because when slicing multiples of 32 bytes (lengthmod == 0) // the following copy loop was copying the origin's length // and then ending prematurely not copying everything it should. let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod))) let end := add(mc, _length) for { // The multiplication in the next line has the same exact purpose // as the one above. let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } mstore(tempBytes, _length) //update free-memory pointer //allocating the array padded to 32 bytes like the compiler does now mstore(0x40, and(add(mc, 31), not(31))) } //if we want a zero-length slice let's just return a zero-length array default { tempBytes := mload(0x40) //zero out the 32 bytes slice we are about to return //we need to do it because Solidity does not garbage collect mstore(tempBytes, 0) mstore(0x40, add(tempBytes, 0x20)) } } return tempBytes; } function toAddress(bytes memory _bytes, uint _start) internal pure returns (address) { require(_bytes.length >= _start + 20, "toAddress_outOfBounds"); address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toUint8(bytes memory _bytes, uint _start) internal pure returns (uint8) { require(_bytes.length >= _start + 1, "toUint8_outOfBounds"); uint8 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x1), _start)) } return tempUint; } function toUint16(bytes memory _bytes, uint _start) internal pure returns (uint16) { require(_bytes.length >= _start + 2, "toUint16_outOfBounds"); uint16 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x2), _start)) } return tempUint; } function toUint32(bytes memory _bytes, uint _start) internal pure returns (uint32) { require(_bytes.length >= _start + 4, "toUint32_outOfBounds"); uint32 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x4), _start)) } return tempUint; } function toUint64(bytes memory _bytes, uint _start) internal pure returns (uint64) { require(_bytes.length >= _start + 8, "toUint64_outOfBounds"); uint64 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x8), _start)) } return tempUint; } function toUint96(bytes memory _bytes, uint _start) internal pure returns (uint96) { require(_bytes.length >= _start + 12, "toUint96_outOfBounds"); uint96 tempUint; assembly { tempUint := mload(add(add(_bytes, 0xc), _start)) } return tempUint; } function toUint128(bytes memory _bytes, uint _start) internal pure returns (uint128) { require(_bytes.length >= _start + 16, "toUint128_outOfBounds"); uint128 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x10), _start)) } return tempUint; } function toUint256(bytes memory _bytes, uint _start) internal pure returns (uint) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toBytes32(bytes memory _bytes, uint _start) internal pure returns (bytes32) { require(_bytes.length >= _start + 32, "toBytes32_outOfBounds"); bytes32 tempBytes32; assembly { tempBytes32 := mload(add(add(_bytes, 0x20), _start)) } return tempBytes32; } function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) { bool success = true; assembly { let length := mload(_preBytes) // if lengths don't match the arrays are not equal switch eq(length, mload(_postBytes)) case 1 { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 let mc := add(_preBytes, 0x20) let end := add(mc, length) for { let cc := add(_postBytes, 0x20) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) } eq(add(lt(mc, end), cb), 2) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { // if any of these checks fails then arrays are not equal if iszero(eq(mload(mc), mload(cc))) { // unsuccess: success := 0 cb := 0 } } } default { // unsuccess: success := 0 } } return success; } function equalStorage(bytes storage _preBytes, bytes memory _postBytes) internal view returns (bool) { bool success = true; assembly { // we know _preBytes_offset is 0 let fslot := sload(_preBytes.slot) // Decode the length of the stored array like in concatStorage(). let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) // if lengths don't match the arrays are not equal switch eq(slength, mlength) case 1 { // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage if iszero(iszero(slength)) { switch lt(slength, 32) case 1 { // blank the last byte which is the length fslot := mul(div(fslot, 0x100), 0x100) if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) { // unsuccess: success := 0 } } default { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := keccak256(0x0, 0x20) let mc := add(_postBytes, 0x20) let end := add(mc, mlength) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) for { } eq(add(lt(mc, end), cb), 2) { sc := add(sc, 1) mc := add(mc, 0x20) } { if iszero(eq(sload(sc), mload(mc))) { // unsuccess: success := 0 cb := 0 } } } } } default { // unsuccess: success := 0 } } return success; } }
// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.7.6;
library ExcessivelySafeCall {
uint constant LOW_28_MASK = 0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff;
/// @notice Use when you _really_ really _really_ don't trust the called
/// contract. This prevents the called contract from causing reversion of
/// the caller in as many ways as we can.
/// @dev The main difference between this and a solidity low-level call is
/// that we limit the number of bytes that the callee can cause to be
/// copied to caller memory. This prevents stupid things like malicious
/// contracts returning 10,000,000 bytes causing a local OOG when copying
/// to memory.
/// @param _target The address to call
/// @param _gas The amount of gas to forward to the remote contract
/// @param _maxCopy The maximum number of bytes of returndata to copy
/// to memory.
/// @param _calldata The data to send to the remote contract
/// @return success and returndata, as `.call()`. Returndata is capped to
/// `_maxCopy` bytes.
function excessivelySafeCall(
address _target,
uint _gas,
uint16 _maxCopy,
bytes memory _calldata
) internal returns (bool, bytes memory) {
// set up for assembly call
uint _toCopy;
bool _success;
bytes memory _returnData = new bytes(_maxCopy);
// dispatch message to recipient
// by assembly calling "handle" function
// we call via assembly to avoid memcopying a very large returndata
// returned by a malicious contract
assembly {
_success := call(
_gas, // gas
_target, // recipient
0, // ether value
add(_calldata, 0x20), // inloc
mload(_calldata), // inlen
0, // outloc
0 // outlen
)
// limit our copy to 256 bytes
_toCopy := returndatasize()
if gt(_toCopy, _maxCopy) {
_toCopy := _maxCopy
}
// Store the length of the copied bytes
mstore(_returnData, _toCopy)
// copy the bytes from returndata[0:_toCopy]
returndatacopy(add(_returnData, 0x20), 0, _toCopy)
}
return (_success, _returnData);
}
/// @notice Use when you _really_ really _really_ don't trust the called
/// contract. This prevents the called contract from causing reversion of
/// the caller in as many ways as we can.
/// @dev The main difference between this and a solidity low-level call is
/// that we limit the number of bytes that the callee can cause to be
/// copied to caller memory. This prevents stupid things like malicious
/// contracts returning 10,000,000 bytes causing a local OOG when copying
/// to memory.
/// @param _target The address to call
/// @param _gas The amount of gas to forward to the remote contract
/// @param _maxCopy The maximum number of bytes of returndata to copy
/// to memory.
/// @param _calldata The data to send to the remote contract
/// @return success and returndata, as `.call()`. Returndata is capped to
/// `_maxCopy` bytes.
function excessivelySafeStaticCall(
address _target,
uint _gas,
uint16 _maxCopy,
bytes memory _calldata
) internal view returns (bool, bytes memory) {
// set up for assembly call
uint _toCopy;
bool _success;
bytes memory _returnData = new bytes(_maxCopy);
// dispatch message to recipient
// by assembly calling "handle" function
// we call via assembly to avoid memcopying a very large returndata
// returned by a malicious contract
assembly {
_success := staticcall(
_gas, // gas
_target, // recipient
add(_calldata, 0x20), // inloc
mload(_calldata), // inlen
0, // outloc
0 // outlen
)
// limit our copy to 256 bytes
_toCopy := returndatasize()
if gt(_toCopy, _maxCopy) {
_toCopy := _maxCopy
}
// Store the length of the copied bytes
mstore(_returnData, _toCopy)
// copy the bytes from returndata[0:_toCopy]
returndatacopy(add(_returnData, 0x20), 0, _toCopy)
}
return (_success, _returnData);
}
/**
* @notice Swaps function selectors in encoded contract calls
* @dev Allows reuse of encoded calldata for functions with identical
* argument types but different names. It simply swaps out the first 4 bytes
* for the new selector. This function modifies memory in place, and should
* only be used with caution.
* @param _newSelector The new 4-byte selector
* @param _buf The encoded contract args
*/
function swapSelector(bytes4 _newSelector, bytes memory _buf) internal pure {
require(_buf.length >= 4);
uint _mask = LOW_28_MASK;
assembly {
// load the first word of
let _word := mload(add(_buf, 0x20))
// mask out the top 4 bytes
// /x
_word := and(_word, _mask)
_word := or(_newSelector, _word)
mstore(add(_buf, 0x20), _word)
}
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.0;
import "./ILayerZeroUserApplicationConfig.sol";
interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig {
// @notice send a LayerZero message to the specified address at a LayerZero endpoint.
// @param _dstChainId - the destination chain identifier
// @param _destination - the address on destination chain (in bytes). address length/format may vary by chains
// @param _payload - a custom bytes payload to send to the destination contract
// @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address
// @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction
// @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination
function send(
uint16 _dstChainId,
bytes calldata _destination,
bytes calldata _payload,
address payable _refundAddress,
address _zroPaymentAddress,
bytes calldata _adapterParams
) external payable;
// @notice used by the messaging library to publish verified payload
// @param _srcChainId - the source chain identifier
// @param _srcAddress - the source contract (as bytes) at the source chain
// @param _dstAddress - the address on destination chain
// @param _nonce - the unbound message ordering nonce
// @param _gasLimit - the gas limit for external contract execution
// @param _payload - verified payload to send to the destination contract
function receivePayload(
uint16 _srcChainId,
bytes calldata _srcAddress,
address _dstAddress,
uint64 _nonce,
uint _gasLimit,
bytes calldata _payload
) external;
// @notice get the inboundNonce of a lzApp from a source chain which could be EVM or non-EVM chain
// @param _srcChainId - the source chain identifier
// @param _srcAddress - the source chain contract address
function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64);
// @notice get the outboundNonce from this source chain which, consequently, is always an EVM
// @param _srcAddress - the source chain contract address
function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64);
// @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery
// @param _dstChainId - the destination chain identifier
// @param _userApplication - the user app address on this EVM chain
// @param _payload - the custom message to send over LayerZero
// @param _payInZRO - if false, user app pays the protocol fee in native token
// @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain
function estimateFees(
uint16 _dstChainId,
address _userApplication,
bytes calldata _payload,
bool _payInZRO,
bytes calldata _adapterParam
) external view returns (uint nativeFee, uint zroFee);
// @notice get this Endpoint's immutable source identifier
function getChainId() external view returns (uint16);
// @notice the interface to retry failed message on this Endpoint destination
// @param _srcChainId - the source chain identifier
// @param _srcAddress - the source chain contract address
// @param _payload - the payload to be retried
function retryPayload(
uint16 _srcChainId,
bytes calldata _srcAddress,
bytes calldata _payload
) external;
// @notice query if any STORED payload (message blocking) at the endpoint.
// @param _srcChainId - the source chain identifier
// @param _srcAddress - the source chain contract address
function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool);
// @notice query if the _libraryAddress is valid for sending msgs.
// @param _userApplication - the user app address on this EVM chain
function getSendLibraryAddress(address _userApplication) external view returns (address);
// @notice query if the _libraryAddress is valid for receiving msgs.
// @param _userApplication - the user app address on this EVM chain
function getReceiveLibraryAddress(address _userApplication) external view returns (address);
// @notice query if the non-reentrancy guard for send() is on
// @return true if the guard is on. false otherwise
function isSendingPayload() external view returns (bool);
// @notice query if the non-reentrancy guard for receive() is on
// @return true if the guard is on. false otherwise
function isReceivingPayload() external view returns (bool);
// @notice get the configuration of the LayerZero messaging library of the specified version
// @param _version - messaging library version
// @param _chainId - the chainId for the pending config change
// @param _userApplication - the contract address of the user application
// @param _configType - type of configuration. every messaging library has its own convention.
function getConfig(
uint16 _version,
uint16 _chainId,
address _userApplication,
uint _configType
) external view returns (bytes memory);
// @notice get the send() LayerZero messaging library version
// @param _userApplication - the contract address of the user application
function getSendVersion(address _userApplication) external view returns (uint16);
// @notice get the lzReceive() LayerZero messaging library version
// @param _userApplication - the contract address of the user application
function getReceiveVersion(address _userApplication) external view returns (uint16);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.0;
interface ILayerZeroReceiver {
// @notice LayerZero endpoint will invoke this function to deliver the message on the destination
// @param _srcChainId - the source endpoint identifier
// @param _srcAddress - the source sending contract address from the source chain
// @param _nonce - the ordered message nonce
// @param _payload - the signed payload is the UA bytes has encoded to be sent
function lzReceive(
uint16 _srcChainId,
bytes calldata _srcAddress,
uint64 _nonce,
bytes calldata _payload
) external;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.0;
interface ILayerZeroUserApplicationConfig {
// @notice set the configuration of the LayerZero messaging library of the specified version
// @param _version - messaging library version
// @param _chainId - the chainId for the pending config change
// @param _configType - type of configuration. every messaging library has its own convention.
// @param _config - configuration in the bytes. can encode arbitrary content.
function setConfig(
uint16 _version,
uint16 _chainId,
uint _configType,
bytes calldata _config
) external;
// @notice set the send() LayerZero messaging library version to _version
// @param _version - new messaging library version
function setSendVersion(uint16 _version) external;
// @notice set the lzReceive() LayerZero messaging library version to _version
// @param _version - new messaging library version
function setReceiveVersion(uint16 _version) external;
// @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload
// @param _srcChainId - the chainId of the source chain
// @param _srcAddress - the contract address of the source contract at the source chain
function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/ILayerZeroReceiver.sol";
import "./interfaces/ILayerZeroUserApplicationConfig.sol";
import "./interfaces/ILayerZeroEndpoint.sol";
import "../libraries/BytesLib.sol";
/*
* a generic LzReceiver implementation
*/
abstract contract LzApp is Ownable, ILayerZeroReceiver, ILayerZeroUserApplicationConfig {
using BytesLib for bytes;
// ua can not send payload larger than this by default, but it can be changed by the ua owner
uint public constant DEFAULT_PAYLOAD_SIZE_LIMIT = 10000;
ILayerZeroEndpoint public immutable lzEndpoint;
mapping(uint16 => bytes) public trustedRemoteLookup;
mapping(uint16 => mapping(uint16 => uint)) public minDstGasLookup;
mapping(uint16 => uint) public payloadSizeLimitLookup;
address public precrime;
event SetPrecrime(address precrime);
event SetTrustedRemote(uint16 _remoteChainId, bytes _path);
event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress);
event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint _minDstGas);
constructor(address _endpoint) {
lzEndpoint = ILayerZeroEndpoint(_endpoint);
}
function lzReceive(
uint16 _srcChainId,
bytes calldata _srcAddress,
uint64 _nonce,
bytes calldata _payload
) public virtual override {
// lzReceive must be called by the endpoint for security
require(_msgSender() == address(lzEndpoint), "LzApp: invalid endpoint caller");
bytes memory trustedRemote = trustedRemoteLookup[_srcChainId];
// if will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote.
require(
_srcAddress.length == trustedRemote.length && trustedRemote.length > 0 && keccak256(_srcAddress) == keccak256(trustedRemote),
"LzApp: invalid source sending contract"
);
_blockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
}
// abstract function - the default behaviour of LayerZero is blocking. See: NonblockingLzApp if you dont need to enforce ordered messaging
function _blockingLzReceive(
uint16 _srcChainId,
bytes memory _srcAddress,
uint64 _nonce,
bytes memory _payload
) internal virtual;
function _lzSend(
uint16 _dstChainId,
bytes memory _payload,
address payable _refundAddress,
address _zroPaymentAddress,
bytes memory _adapterParams,
uint _nativeFee
) internal virtual {
bytes memory trustedRemote = trustedRemoteLookup[_dstChainId];
require(trustedRemote.length != 0, "LzApp: destination chain is not a trusted source");
_checkPayloadSize(_dstChainId, _payload.length);
lzEndpoint.send{value: _nativeFee}(_dstChainId, trustedRemote, _payload, _refundAddress, _zroPaymentAddress, _adapterParams);
}
function _checkGasLimit(
uint16 _dstChainId,
uint16 _type,
bytes memory _adapterParams,
uint _extraGas
) internal view virtual {
uint providedGasLimit = _getGasLimit(_adapterParams);
uint minGasLimit = minDstGasLookup[_dstChainId][_type];
require(minGasLimit > 0, "LzApp: minGasLimit not set");
require(providedGasLimit >= minGasLimit + _extraGas, "LzApp: gas limit is too low");
}
function _getGasLimit(bytes memory _adapterParams) internal pure virtual returns (uint gasLimit) {
require(_adapterParams.length >= 34, "LzApp: invalid adapterParams");
assembly {
gasLimit := mload(add(_adapterParams, 34))
}
}
function _checkPayloadSize(uint16 _dstChainId, uint _payloadSize) internal view virtual {
uint payloadSizeLimit = payloadSizeLimitLookup[_dstChainId];
if (payloadSizeLimit == 0) {
// use default if not set
payloadSizeLimit = DEFAULT_PAYLOAD_SIZE_LIMIT;
}
require(_payloadSize <= payloadSizeLimit, "LzApp: payload size is too large");
}
//---------------------------UserApplication config----------------------------------------
function getConfig(
uint16 _version,
uint16 _chainId,
address,
uint _configType
) external view returns (bytes memory) {
return lzEndpoint.getConfig(_version, _chainId, address(this), _configType);
}
// generic config for LayerZero user Application
function setConfig(
uint16 _version,
uint16 _chainId,
uint _configType,
bytes calldata _config
) external override onlyOwner {
lzEndpoint.setConfig(_version, _chainId, _configType, _config);
}
function setSendVersion(uint16 _version) external override onlyOwner {
lzEndpoint.setSendVersion(_version);
}
function setReceiveVersion(uint16 _version) external override onlyOwner {
lzEndpoint.setReceiveVersion(_version);
}
function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner {
lzEndpoint.forceResumeReceive(_srcChainId, _srcAddress);
}
// _path = abi.encodePacked(remoteAddress, localAddress)
// this function set the trusted path for the cross-chain communication
function setTrustedRemote(uint16 _remoteChainId, bytes calldata _path) external onlyOwner {
trustedRemoteLookup[_remoteChainId] = _path;
emit SetTrustedRemote(_remoteChainId, _path);
}
function setTrustedRemoteAddress(uint16 _remoteChainId, bytes calldata _remoteAddress) external onlyOwner {
trustedRemoteLookup[_remoteChainId] = abi.encodePacked(_remoteAddress, address(this));
emit SetTrustedRemoteAddress(_remoteChainId, _remoteAddress);
}
function getTrustedRemoteAddress(uint16 _remoteChainId) external view returns (bytes memory) {
bytes memory path = trustedRemoteLookup[_remoteChainId];
require(path.length != 0, "LzApp: no trusted path record");
return path.slice(0, path.length - 20); // the last 20 bytes should be address(this)
}
function setPrecrime(address _precrime) external onlyOwner {
precrime = _precrime;
emit SetPrecrime(_precrime);
}
function setMinDstGas(
uint16 _dstChainId,
uint16 _packetType,
uint _minGas
) external onlyOwner {
minDstGasLookup[_dstChainId][_packetType] = _minGas;
emit SetMinDstGas(_dstChainId, _packetType, _minGas);
}
// if the size is 0, it means default size limit
function setPayloadSizeLimit(uint16 _dstChainId, uint _size) external onlyOwner {
payloadSizeLimitLookup[_dstChainId] = _size;
}
//--------------------------- VIEW FUNCTION ----------------------------------------
function isTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool) {
bytes memory trustedSource = trustedRemoteLookup[_srcChainId];
return keccak256(trustedSource) == keccak256(_srcAddress);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./LzApp.sol";
import "../libraries/ExcessivelySafeCall.sol";
/*
* the default LayerZero messaging behaviour is blocking, i.e. any failed message will block the channel
* this abstract class try-catch all fail messages and store locally for future retry. hence, non-blocking
* NOTE: if the srcAddress is not configured properly, it will still block the message pathway from (srcChainId, srcAddress)
*/
abstract contract NonblockingLzApp is LzApp {
using ExcessivelySafeCall for address;
constructor(address _endpoint) LzApp(_endpoint) {}
mapping(uint16 => mapping(bytes => mapping(uint64 => bytes32))) public failedMessages;
event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload, bytes _reason);
event RetryMessageSuccess(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _payloadHash);
// overriding the virtual function in LzReceiver
function _blockingLzReceive(
uint16 _srcChainId,
bytes memory _srcAddress,
uint64 _nonce,
bytes memory _payload
) internal virtual override {
(bool success, bytes memory reason) = address(this).excessivelySafeCall(
gasleft(),
150,
abi.encodeWithSelector(this.nonblockingLzReceive.selector, _srcChainId, _srcAddress, _nonce, _payload)
);
// try-catch all errors/exceptions
if (!success) {
_storeFailedMessage(_srcChainId, _srcAddress, _nonce, _payload, reason);
}
}
function _storeFailedMessage(
uint16 _srcChainId,
bytes memory _srcAddress,
uint64 _nonce,
bytes memory _payload,
bytes memory _reason
) internal virtual {
failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload);
emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload, _reason);
}
function nonblockingLzReceive(
uint16 _srcChainId,
bytes calldata _srcAddress,
uint64 _nonce,
bytes calldata _payload
) public virtual {
// only internal transaction
require(_msgSender() == address(this), "NonblockingLzApp: caller must be LzApp");
_nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
}
//@notice override this function
function _nonblockingLzReceive(
uint16 _srcChainId,
bytes memory _srcAddress,
uint64 _nonce,
bytes memory _payload
) internal virtual;
function retryMessage(
uint16 _srcChainId,
bytes calldata _srcAddress,
uint64 _nonce,
bytes calldata _payload
) public payable virtual {
// assert there is message to retry
bytes32 payloadHash = failedMessages[_srcChainId][_srcAddress][_nonce];
require(payloadHash != bytes32(0), "NonblockingLzApp: no stored message");
require(keccak256(_payload) == payloadHash, "NonblockingLzApp: invalid payload");
// clear the stored message
failedMessages[_srcChainId][_srcAddress][_nonce] = bytes32(0);
// execute the message. revert if it fails again
_nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
emit RetryMessageSuccess(_srcChainId, _srcAddress, _nonce, payloadHash);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./OFTCoreV2.sol";
import "./interfaces/IOFTV2.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
abstract contract BaseOFTV2 is OFTCoreV2, ERC165, IOFTV2 {
constructor(uint8 _sharedDecimals, address _lzEndpoint) OFTCoreV2(_sharedDecimals, _lzEndpoint) {}
/************************************************************************
* public functions
************************************************************************/
function sendFrom(
address _from,
uint16 _dstChainId,
bytes32 _toAddress,
uint _amount,
LzCallParams calldata _callParams
) public payable virtual override {
_send(_from, _dstChainId, _toAddress, _amount, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams);
}
function sendAndCall(
address _from,
uint16 _dstChainId,
bytes32 _toAddress,
uint _amount,
bytes calldata _payload,
uint64 _dstGasForCall,
LzCallParams calldata _callParams
) public payable virtual override {
_sendAndCall(
_from,
_dstChainId,
_toAddress,
_amount,
_payload,
_dstGasForCall,
_callParams.refundAddress,
_callParams.zroPaymentAddress,
_callParams.adapterParams
);
}
/************************************************************************
* public view functions
************************************************************************/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return interfaceId == type(IOFTV2).interfaceId || super.supportsInterface(interfaceId);
}
function estimateSendFee(
uint16 _dstChainId,
bytes32 _toAddress,
uint _amount,
bool _useZro,
bytes calldata _adapterParams
) public view virtual override returns (uint nativeFee, uint zroFee) {
return _estimateSendFee(_dstChainId, _toAddress, _amount, _useZro, _adapterParams);
}
function estimateSendAndCallFee(
uint16 _dstChainId,
bytes32 _toAddress,
uint _amount,
bytes calldata _payload,
uint64 _dstGasForCall,
bool _useZro,
bytes calldata _adapterParams
) public view virtual override returns (uint nativeFee, uint zroFee) {
return _estimateSendAndCallFee(_dstChainId, _toAddress, _amount, _payload, _dstGasForCall, _useZro, _adapterParams);
}
function circulatingSupply() public view virtual override returns (uint);
function token() public view virtual override returns (address);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.0;
import "@openzeppelin/contracts/utils/introspection/IERC165.sol";
/**
* @dev Interface of the IOFT core standard
*/
interface ICommonOFT is IERC165 {
struct LzCallParams {
address payable refundAddress;
address zroPaymentAddress;
bytes adapterParams;
}
/**
* @dev estimate send token `_tokenId` to (`_dstChainId`, `_toAddress`)
* _dstChainId - L0 defined chain id to send tokens too
* _toAddress - dynamic bytes array which contains the address to whom you are sending tokens to on the dstChain
* _amount - amount of the tokens to transfer
* _useZro - indicates to use zro to pay L0 fees
* _adapterParam - flexible bytes array to indicate messaging adapter services in L0
*/
function estimateSendFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee);
function estimateSendAndCallFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee);
/**
* @dev returns the circulating amount of tokens on current chain
*/
function circulatingSupply() external view returns (uint);
/**
* @dev returns the address of the ERC20 token
*/
function token() external view returns (address);
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity >=0.5.0;
interface IOFTReceiverV2 {
/**
* @dev Called by the OFT contract when tokens are received from source chain.
* @param _srcChainId The chain id of the source chain.
* @param _srcAddress The address of the OFT token contract on the source chain.
* @param _nonce The nonce of the transaction on the source chain.
* @param _from The address of the account who calls the sendAndCall() on the source chain.
* @param _amount The amount of tokens to transfer.
* @param _payload Additional data with no specified format.
*/
function onOFTReceived(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes32 _from, uint _amount, bytes calldata _payload) external;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.0;
import "./ICommonOFT.sol";
/**
* @dev Interface of the IOFT core standard
*/
interface IOFTV2 is ICommonOFT {
/**
* @dev send `_amount` amount of token to (`_dstChainId`, `_toAddress`) from `_from`
* `_from` the owner of token
* `_dstChainId` the destination chain identifier
* `_toAddress` can be any size depending on the `dstChainId`.
* `_amount` the quantity of tokens in wei
* `_refundAddress` the address LayerZero refunds if too much message fee is sent
* `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (LayerZero Token)
* `_adapterParams` is a flexible bytes array to indicate messaging adapter services
*/
function sendFrom(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, LzCallParams calldata _callParams) external payable;
function sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, LzCallParams calldata _callParams) external payable;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../../lzApp/NonblockingLzApp.sol";
import "../../../libraries/ExcessivelySafeCall.sol";
import "./interfaces/ICommonOFT.sol";
import "./interfaces/IOFTReceiverV2.sol";
abstract contract OFTCoreV2 is NonblockingLzApp {
using BytesLib for bytes;
using ExcessivelySafeCall for address;
uint public constant NO_EXTRA_GAS = 0;
// packet type
uint8 public constant PT_SEND = 0;
uint8 public constant PT_SEND_AND_CALL = 1;
uint8 public immutable sharedDecimals;
mapping(uint16 => mapping(bytes => mapping(uint64 => bool))) public creditedPackets;
/**
* @dev Emitted when `_amount` tokens are moved from the `_sender` to (`_dstChainId`, `_toAddress`)
* `_nonce` is the outbound nonce
*/
event SendToChain(uint16 indexed _dstChainId, address indexed _from, bytes32 indexed _toAddress, uint _amount);
/**
* @dev Emitted when `_amount` tokens are received from `_srcChainId` into the `_toAddress` on the local chain.
* `_nonce` is the inbound nonce.
*/
event ReceiveFromChain(uint16 indexed _srcChainId, address indexed _to, uint _amount);
event CallOFTReceivedSuccess(uint16 indexed _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _hash);
event NonContractAddress(address _address);
// _sharedDecimals should be the minimum decimals on all chains
constructor(uint8 _sharedDecimals, address _lzEndpoint) NonblockingLzApp(_lzEndpoint) {
sharedDecimals = _sharedDecimals;
}
/************************************************************************
* public functions
************************************************************************/
function callOnOFTReceived(
uint16 _srcChainId,
bytes calldata _srcAddress,
uint64 _nonce,
bytes32 _from,
address _to,
uint _amount,
bytes calldata _payload,
uint _gasForCall
) public virtual {
require(_msgSender() == address(this), "OFTCore: caller must be OFTCore");
// send
_amount = _transferFrom(address(this), _to, _amount);
emit ReceiveFromChain(_srcChainId, _to, _amount);
// call
IOFTReceiverV2(_to).onOFTReceived{gas: _gasForCall}(_srcChainId, _srcAddress, _nonce, _from, _amount, _payload);
}
/************************************************************************
* internal functions
************************************************************************/
function _estimateSendFee(
uint16 _dstChainId,
bytes32 _toAddress,
uint _amount,
bool _useZro,
bytes memory _adapterParams
) internal view virtual returns (uint nativeFee, uint zroFee) {
// mock the payload for sendFrom()
bytes memory payload = _encodeSendPayload(_toAddress, _ld2sd(_amount));
return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams);
}
function _estimateSendAndCallFee(
uint16 _dstChainId,
bytes32 _toAddress,
uint _amount,
bytes memory _payload,
uint64 _dstGasForCall,
bool _useZro,
bytes memory _adapterParams
) internal view virtual returns (uint nativeFee, uint zroFee) {
// mock the payload for sendAndCall()
bytes memory payload = _encodeSendAndCallPayload(msg.sender, _toAddress, _ld2sd(_amount), _payload, _dstGasForCall);
return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams);
}
function _nonblockingLzReceive(
uint16 _srcChainId,
bytes memory _srcAddress,
uint64 _nonce,
bytes memory _payload
) internal virtual override {
uint8 packetType = _payload.toUint8(0);
if (packetType == PT_SEND) {
_sendAck(_srcChainId, _srcAddress, _nonce, _payload);
} else if (packetType == PT_SEND_AND_CALL) {
_sendAndCallAck(_srcChainId, _srcAddress, _nonce, _payload);
} else {
revert("OFTCore: unknown packet type");
}
}
function _send(
address _from,
uint16 _dstChainId,
bytes32 _toAddress,
uint _amount,
address payable _refundAddress,
address _zroPaymentAddress,
bytes memory _adapterParams
) internal virtual returns (uint amount) {
_checkGasLimit(_dstChainId, PT_SEND, _adapterParams, NO_EXTRA_GAS);
(amount, ) = _removeDust(_amount);
amount = _debitFrom(_from, _dstChainId, _toAddress, amount); // amount returned should not have dust
require(amount > 0, "OFTCore: amount too small");
bytes memory lzPayload = _encodeSendPayload(_toAddress, _ld2sd(amount));
_lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value);
emit SendToChain(_dstChainId, _from, _toAddress, amount);
}
function _sendAck(
uint16 _srcChainId,
bytes memory,
uint64,
bytes memory _payload
) internal virtual {
(address to, uint64 amountSD) = _decodeSendPayload(_payload);
if (to == address(0)) {
to = address(0xdead);
}
uint amount = _sd2ld(amountSD);
amount = _creditTo(_srcChainId, to, amount);
emit ReceiveFromChain(_srcChainId, to, amount);
}
function _sendAndCall(
address _from,
uint16 _dstChainId,
bytes32 _toAddress,
uint _amount,
bytes memory _payload,
uint64 _dstGasForCall,
address payable _refundAddress,
address _zroPaymentAddress,
bytes memory _adapterParams
) internal virtual returns (uint amount) {
_checkGasLimit(_dstChainId, PT_SEND_AND_CALL, _adapterParams, _dstGasForCall);
(amount, ) = _removeDust(_amount);
amount = _debitFrom(_from, _dstChainId, _toAddress, amount);
require(amount > 0, "OFTCore: amount too small");
// encode the msg.sender into the payload instead of _from
bytes memory lzPayload = _encodeSendAndCallPayload(msg.sender, _toAddress, _ld2sd(amount), _payload, _dstGasForCall);
_lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value);
emit SendToChain(_dstChainId, _from, _toAddress, amount);
}
function _sendAndCallAck(
uint16 _srcChainId,
bytes memory _srcAddress,
uint64 _nonce,
bytes memory _payload
) internal virtual {
(bytes32 from, address to, uint64 amountSD, bytes memory payloadForCall, uint64 gasForCall) = _decodeSendAndCallPayload(_payload);
bool credited = creditedPackets[_srcChainId][_srcAddress][_nonce];
uint amount = _sd2ld(amountSD);
// credit to this contract first, and then transfer to receiver only if callOnOFTReceived() succeeds
if (!credited) {
amount = _creditTo(_srcChainId, address(this), amount);
creditedPackets[_srcChainId][_srcAddress][_nonce] = true;
}
if (!_isContract(to)) {
emit NonContractAddress(to);
return;
}
// workaround for stack too deep
uint16 srcChainId = _srcChainId;
bytes memory srcAddress = _srcAddress;
uint64 nonce = _nonce;
bytes memory payload = _payload;
bytes32 from_ = from;
address to_ = to;
uint amount_ = amount;
bytes memory payloadForCall_ = payloadForCall;
// no gas limit for the call if retry
uint gas = credited ? gasleft() : gasForCall;
(bool success, bytes memory reason) = address(this).excessivelySafeCall(
gasleft(),
150,
abi.encodeWithSelector(this.callOnOFTReceived.selector, srcChainId, srcAddress, nonce, from_, to_, amount_, payloadForCall_, gas)
);
if (success) {
bytes32 hash = keccak256(payload);
emit CallOFTReceivedSuccess(srcChainId, srcAddress, nonce, hash);
} else {
// store the failed message into the nonblockingLzApp
_storeFailedMessage(srcChainId, srcAddress, nonce, payload, reason);
}
}
function _isContract(address _account) internal view returns (bool) {
return _account.code.length > 0;
}
function _ld2sd(uint _amount) internal view virtual returns (uint64) {
uint amountSD = _amount / _ld2sdRate();
require(amountSD <= type(uint64).max, "OFTCore: amountSD overflow");
return uint64(amountSD);
}
function _sd2ld(uint64 _amountSD) internal view virtual returns (uint) {
return _amountSD * _ld2sdRate();
}
function _removeDust(uint _amount) internal view virtual returns (uint amountAfter, uint dust) {
dust = _amount % _ld2sdRate();
amountAfter = _amount - dust;
}
function _encodeSendPayload(bytes32 _toAddress, uint64 _amountSD) internal view virtual returns (bytes memory) {
return abi.encodePacked(PT_SEND, _toAddress, _amountSD);
}
function _decodeSendPayload(bytes memory _payload) internal view virtual returns (address to, uint64 amountSD) {
require(_payload.toUint8(0) == PT_SEND && _payload.length == 41, "OFTCore: invalid payload");
to = _payload.toAddress(13); // drop the first 12 bytes of bytes32
amountSD = _payload.toUint64(33);
}
function _encodeSendAndCallPayload(
address _from,
bytes32 _toAddress,
uint64 _amountSD,
bytes memory _payload,
uint64 _dstGasForCall
) internal view virtual returns (bytes memory) {
return abi.encodePacked(PT_SEND_AND_CALL, _toAddress, _amountSD, _addressToBytes32(_from), _dstGasForCall, _payload);
}
function _decodeSendAndCallPayload(bytes memory _payload)
internal
view
virtual
returns (
bytes32 from,
address to,
uint64 amountSD,
bytes memory payload,
uint64 dstGasForCall
)
{
require(_payload.toUint8(0) == PT_SEND_AND_CALL, "OFTCore: invalid payload");
to = _payload.toAddress(13); // drop the first 12 bytes of bytes32
amountSD = _payload.toUint64(33);
from = _payload.toBytes32(41);
dstGasForCall = _payload.toUint64(73);
payload = _payload.slice(81, _payload.length - 81);
}
function _addressToBytes32(address _address) internal pure virtual returns (bytes32) {
return bytes32(uint(uint160(_address)));
}
function _debitFrom(
address _from,
uint16 _dstChainId,
bytes32 _toAddress,
uint _amount
) internal virtual returns (uint);
function _creditTo(
uint16 _srcChainId,
address _toAddress,
uint _amount
) internal virtual returns (uint);
function _transferFrom(
address _from,
address _to,
uint _amount
) internal virtual returns (uint);
function _ld2sdRate() internal view virtual returns (uint);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
/**
* @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.encodeWithSelector(token.transfer.selector, 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.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
/**
* @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);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
}
/**
* @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
}
}
/**
* @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.encodeWithSelector(token.approve.selector, spender, value);
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
_callOptionalReturn(token, approvalCall);
}
}
/**
* @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
* Revert on invalid signature.
*/
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*
* 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.isContract(address(token));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.25;
interface OracleInterface {
function getPrice(address asset) external view returns (uint256);
}
interface ResilientOracleInterface is OracleInterface {
function updatePrice(address vToken) external;
function updateAssetPrice(address asset) external;
function getUnderlyingPrice(address vToken) external view returns (uint256);
}
interface TwapInterface is OracleInterface {
function updateTwap(address asset) external returns (uint256);
}
interface BoundValidatorInterface {
function validatePriceWithAnchorPrice(
address asset,
uint256 reporterPrice,
uint256 anchorPrice
) external view returns (bool);
}// SPDX-License-Identifier: BSD-3-Clause pragma solidity ^0.8.25; /// @dev Base unit for computations, usually used in scaling (multiplications, divisions) uint256 constant EXP_SCALE = 1e18; /// @dev A unit (literal one) in EXP_SCALE, usually used in additions/subtractions uint256 constant MANTISSA_ONE = EXP_SCALE; /// @dev The approximate number of seconds per year uint256 constant SECONDS_PER_YEAR = 31_536_000;
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.25;
import { EXP_SCALE as EXP_SCALE_, MANTISSA_ONE as MANTISSA_ONE_ } from "./constants.sol";
/**
* @title Exponential module for storing fixed-precision decimals
* @author Compound
* @notice Exp is a struct which stores decimals with a fixed precision of 18 decimal places.
* Thus, if we wanted to store the 5.1, mantissa would store 5.1e18. That is:
* `Exp({mantissa: 5100000000000000000})`.
*/
contract ExponentialNoError {
struct Exp {
uint256 mantissa;
}
struct Double {
uint256 mantissa;
}
uint256 internal constant EXP_SCALE = EXP_SCALE_;
uint256 internal constant DOUBLE_SCALE = 1e36;
uint256 internal constant HALF_EXP_SCALE = EXP_SCALE / 2;
uint256 internal constant MANTISSA_ONE = MANTISSA_ONE_;
/**
* @dev Truncates the given exp to a whole number value.
* For example, truncate(Exp{mantissa: 15 * EXP_SCALE}) = 15
*/
function truncate(Exp memory exp) internal pure returns (uint256) {
// Note: We are not using careful math here as we're performing a division that cannot fail
return exp.mantissa / EXP_SCALE;
}
/**
* @dev Multiply an Exp by a scalar, then truncate to return an unsigned integer.
*/
// solhint-disable-next-line func-name-mixedcase
function mul_ScalarTruncate(Exp memory a, uint256 scalar) internal pure returns (uint256) {
Exp memory product = mul_(a, scalar);
return truncate(product);
}
/**
* @dev Multiply an Exp by a scalar, truncate, then add an to an unsigned integer, returning an unsigned integer.
*/
// solhint-disable-next-line func-name-mixedcase
function mul_ScalarTruncateAddUInt(Exp memory a, uint256 scalar, uint256 addend) internal pure returns (uint256) {
Exp memory product = mul_(a, scalar);
return add_(truncate(product), addend);
}
/**
* @dev Checks if first Exp is less than second Exp.
*/
function lessThanExp(Exp memory left, Exp memory right) internal pure returns (bool) {
return left.mantissa < right.mantissa;
}
function safe224(uint256 n, string memory errorMessage) internal pure returns (uint224) {
require(n <= type(uint224).max, errorMessage);
return uint224(n);
}
function safe32(uint256 n, string memory errorMessage) internal pure returns (uint32) {
require(n <= type(uint32).max, errorMessage);
return uint32(n);
}
function add_(Exp memory a, Exp memory b) internal pure returns (Exp memory) {
return Exp({ mantissa: add_(a.mantissa, b.mantissa) });
}
function add_(Double memory a, Double memory b) internal pure returns (Double memory) {
return Double({ mantissa: add_(a.mantissa, b.mantissa) });
}
function add_(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
function sub_(Exp memory a, Exp memory b) internal pure returns (Exp memory) {
return Exp({ mantissa: sub_(a.mantissa, b.mantissa) });
}
function sub_(Double memory a, Double memory b) internal pure returns (Double memory) {
return Double({ mantissa: sub_(a.mantissa, b.mantissa) });
}
function sub_(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
function mul_(Exp memory a, Exp memory b) internal pure returns (Exp memory) {
return Exp({ mantissa: mul_(a.mantissa, b.mantissa) / EXP_SCALE });
}
function mul_(Exp memory a, uint256 b) internal pure returns (Exp memory) {
return Exp({ mantissa: mul_(a.mantissa, b) });
}
function mul_(uint256 a, Exp memory b) internal pure returns (uint256) {
return mul_(a, b.mantissa) / EXP_SCALE;
}
function mul_(Double memory a, Double memory b) internal pure returns (Double memory) {
return Double({ mantissa: mul_(a.mantissa, b.mantissa) / DOUBLE_SCALE });
}
function mul_(Double memory a, uint256 b) internal pure returns (Double memory) {
return Double({ mantissa: mul_(a.mantissa, b) });
}
function mul_(uint256 a, Double memory b) internal pure returns (uint256) {
return mul_(a, b.mantissa) / DOUBLE_SCALE;
}
function mul_(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
function div_(Exp memory a, Exp memory b) internal pure returns (Exp memory) {
return Exp({ mantissa: div_(mul_(a.mantissa, EXP_SCALE), b.mantissa) });
}
function div_(Exp memory a, uint256 b) internal pure returns (Exp memory) {
return Exp({ mantissa: div_(a.mantissa, b) });
}
function div_(uint256 a, Exp memory b) internal pure returns (uint256) {
return div_(mul_(a, EXP_SCALE), b.mantissa);
}
function div_(Double memory a, Double memory b) internal pure returns (Double memory) {
return Double({ mantissa: div_(mul_(a.mantissa, DOUBLE_SCALE), b.mantissa) });
}
function div_(Double memory a, uint256 b) internal pure returns (Double memory) {
return Double({ mantissa: div_(a.mantissa, b) });
}
function div_(uint256 a, Double memory b) internal pure returns (uint256) {
return div_(mul_(a, DOUBLE_SCALE), b.mantissa);
}
function div_(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
function fraction(uint256 a, uint256 b) internal pure returns (Double memory) {
return Double({ mantissa: div_(mul_(a, DOUBLE_SCALE), b) });
}
}// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.25;
/// @notice Thrown if the supplied address is a zero address where it is not allowed
error ZeroAddressNotAllowed();
/// @notice Thrown if the supplied value is 0 where it is not allowed
error ZeroValueNotAllowed();
/// @notice Checks if the provided address is nonzero, reverts otherwise
/// @param address_ Address to check
/// @custom:error ZeroAddressNotAllowed is thrown if the provided address is a zero address
function ensureNonzeroAddress(address address_) pure {
if (address_ == address(0)) {
revert ZeroAddressNotAllowed();
}
}
/// @notice Checks if the provided value is nonzero, reverts otherwise
/// @param value_ Value to check
/// @custom:error ZeroValueNotAllowed is thrown if the provided value is 0
function ensureNonzeroValue(uint256 value_) pure {
if (value_ == 0) {
revert ZeroValueNotAllowed();
}
}// SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.25;
import { SafeERC20, IERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import { ResilientOracleInterface } from "@venusprotocol/oracle/contracts/interfaces/OracleInterface.sol";
import { Pausable } from "@openzeppelin/contracts/security/Pausable.sol";
import { BaseOFTV2 } from "@layerzerolabs/solidity-examples/contracts/token/oft/v2/BaseOFTV2.sol";
import { ensureNonzeroAddress } from "@venusprotocol/solidity-utilities/contracts/validators.sol";
import { ExponentialNoError } from "@venusprotocol/solidity-utilities/contracts/ExponentialNoError.sol";
/**
* @title BaseXVSProxyOFT
* @author Venus
* @notice The BaseXVSProxyOFT contract is tailored for facilitating cross-chain transactions with an ERC20 token.
* It manages transaction limits of a single and daily transactions.
* This contract inherits key functionalities from other contracts, including pausing capabilities and error handling.
* It holds state variables for the inner token and maps for tracking transaction limits and statistics across various chains and addresses.
* The contract allows the owner to configure limits, set whitelists, and control pausing.
* Internal functions conduct eligibility check of transactions, making the contract a fundamental component for cross-chain token management.
*/
abstract contract BaseXVSProxyOFT is Pausable, ExponentialNoError, BaseOFTV2 {
using SafeERC20 for IERC20;
IERC20 internal immutable innerToken;
uint256 internal immutable ld2sdRate;
bool public sendAndCallEnabled;
/**
* @notice The address of ResilientOracle contract wrapped in its interface.
*/
ResilientOracleInterface public oracle;
/**
* @notice Maximum limit for a single transaction in USD(scaled with 18 decimals) from local chain.
*/
mapping(uint16 => uint256) public chainIdToMaxSingleTransactionLimit;
/**
* @notice Maximum daily limit for transactions in USD(scaled with 18 decimals) from local chain.
*/
mapping(uint16 => uint256) public chainIdToMaxDailyLimit;
/**
* @notice Total sent amount in USD(scaled with 18 decimals) within the last 24-hour window from local chain.
*/
mapping(uint16 => uint256) public chainIdToLast24HourTransferred;
/**
* @notice Timestamp when the last 24-hour window started from local chain.
*/
mapping(uint16 => uint256) public chainIdToLast24HourWindowStart;
/**
* @notice Maximum limit for a single receive transaction in USD(scaled with 18 decimals) from remote chain.
*/
mapping(uint16 => uint256) public chainIdToMaxSingleReceiveTransactionLimit;
/**
* @notice Maximum daily limit for receiving transactions in USD(scaled with 18 decimals) from remote chain.
*/
mapping(uint16 => uint256) public chainIdToMaxDailyReceiveLimit;
/**
* @notice Total received amount in USD(scaled with 18 decimals) within the last 24-hour window from remote chain.
*/
mapping(uint16 => uint256) public chainIdToLast24HourReceived;
/**
* @notice Timestamp when the last 24-hour window started from remote chain.
*/
mapping(uint16 => uint256) public chainIdToLast24HourReceiveWindowStart;
/**
* @notice Address on which cap check and bound limit is not applicable.
*/
mapping(address => bool) public whitelist;
/**
* @notice Emitted when address is added to whitelist.
*/
event SetWhitelist(address indexed addr, bool isWhitelist);
/**
* @notice Emitted when the maximum limit for a single transaction from local chain is modified.
*/
event SetMaxSingleTransactionLimit(uint16 chainId, uint256 oldMaxLimit, uint256 newMaxLimit);
/**
* @notice Emitted when the maximum daily limit of transactions from local chain is modified.
*/
event SetMaxDailyLimit(uint16 chainId, uint256 oldMaxLimit, uint256 newMaxLimit);
/**
* @notice Emitted when the maximum limit for a single receive transaction from remote chain is modified.
*/
event SetMaxSingleReceiveTransactionLimit(uint16 chainId, uint256 oldMaxLimit, uint256 newMaxLimit);
/**
* @notice Emitted when the maximum daily limit for receiving transactions from remote chain is modified.
*/
event SetMaxDailyReceiveLimit(uint16 chainId, uint256 oldMaxLimit, uint256 newMaxLimit);
/**
* @notice Event emitted when oracle is modified.
*/
event OracleChanged(address indexed oldOracle, address indexed newOracle);
/**
* @notice Event emitted when trusted remote sets to empty.
*/
event TrustedRemoteRemoved(uint16 chainId);
/**
* @notice Event emitted when inner token set successfully.
*/
event InnerTokenAdded(address indexed innerToken);
/**
*@notice Emitted on sweep token success
*/
event SweepToken(address indexed token, address indexed to, uint256 sweepAmount);
/**
* @notice Event emitted when SendAndCallEnabled updated successfully.
*/
event UpdateSendAndCallEnabled(bool indexed enabled);
/**
*@notice Error thrown when this contract balance is less than sweep amount
*/
error InsufficientBalance(uint256 sweepAmount, uint256 balance);
/**
* @param tokenAddress_ Address of the inner token.
* @param sharedDecimals_ Number of shared decimals.
* @param lzEndpoint_ Address of the layer zero endpoint contract.
* @param oracle_ Address of the price oracle.
* @custom:error ZeroAddressNotAllowed is thrown when token contract address is zero.
* @custom:error ZeroAddressNotAllowed is thrown when lzEndpoint contract address is zero.
* @custom:error ZeroAddressNotAllowed is thrown when oracle contract address is zero.
* @custom:event Emits InnerTokenAdded with token address.
* @custom:event Emits OracleChanged with zero address and oracle address.
*/
constructor(
address tokenAddress_,
uint8 sharedDecimals_,
address lzEndpoint_,
address oracle_
) BaseOFTV2(sharedDecimals_, lzEndpoint_) {
ensureNonzeroAddress(tokenAddress_);
ensureNonzeroAddress(lzEndpoint_);
ensureNonzeroAddress(oracle_);
innerToken = IERC20(tokenAddress_);
(bool success, bytes memory data) = tokenAddress_.staticcall(abi.encodeWithSignature("decimals()"));
require(success, "ProxyOFT: failed to get token decimals");
uint8 decimals = abi.decode(data, (uint8));
require(sharedDecimals_ <= decimals, "ProxyOFT: sharedDecimals must be <= decimals");
ld2sdRate = 10 ** (decimals - sharedDecimals_);
emit InnerTokenAdded(tokenAddress_);
emit OracleChanged(address(0), oracle_);
oracle = ResilientOracleInterface(oracle_);
}
/**
* @notice Set the address of the ResilientOracle contract.
* @dev Reverts if the new address is zero.
* @param oracleAddress_ The new address of the ResilientOracle contract.
* @custom:access Only owner.
* @custom:event Emits OracleChanged with old and new oracle address.
*/
function setOracle(address oracleAddress_) external onlyOwner {
ensureNonzeroAddress(oracleAddress_);
emit OracleChanged(address(oracle), oracleAddress_);
oracle = ResilientOracleInterface(oracleAddress_);
}
/**
* @notice Sets the limit of single transaction amount.
* @param chainId_ Destination chain id.
* @param limit_ Amount in USD(scaled with 18 decimals).
* @custom:access Only owner.
* @custom:event Emits SetMaxSingleTransactionLimit with old and new limit associated with chain id.
*/
function setMaxSingleTransactionLimit(uint16 chainId_, uint256 limit_) external onlyOwner {
require(limit_ <= chainIdToMaxDailyLimit[chainId_], "Single transaction limit > Daily limit");
emit SetMaxSingleTransactionLimit(chainId_, chainIdToMaxSingleTransactionLimit[chainId_], limit_);
chainIdToMaxSingleTransactionLimit[chainId_] = limit_;
}
/**
* @notice Sets the limit of daily (24 Hour) transactions amount.
* @param chainId_ Destination chain id.
* @param limit_ Amount in USD(scaled with 18 decimals).
* @custom:access Only owner.
* @custom:event Emits setMaxDailyLimit with old and new limit associated with chain id.
*/
function setMaxDailyLimit(uint16 chainId_, uint256 limit_) external onlyOwner {
require(limit_ >= chainIdToMaxSingleTransactionLimit[chainId_], "Daily limit < single transaction limit");
emit SetMaxDailyLimit(chainId_, chainIdToMaxDailyLimit[chainId_], limit_);
chainIdToMaxDailyLimit[chainId_] = limit_;
}
/**
* @notice Sets the maximum limit for a single receive transaction.
* @param chainId_ The destination chain ID.
* @param limit_ The new maximum limit in USD(scaled with 18 decimals).
* @custom:access Only owner.
* @custom:event Emits setMaxSingleReceiveTransactionLimit with old and new limit associated with chain id.
*/
function setMaxSingleReceiveTransactionLimit(uint16 chainId_, uint256 limit_) external onlyOwner {
require(limit_ <= chainIdToMaxDailyReceiveLimit[chainId_], "single receive transaction limit > Daily limit");
emit SetMaxSingleReceiveTransactionLimit(chainId_, chainIdToMaxSingleReceiveTransactionLimit[chainId_], limit_);
chainIdToMaxSingleReceiveTransactionLimit[chainId_] = limit_;
}
/**
* @notice Sets the maximum daily limit for receiving transactions.
* @param chainId_ The destination chain ID.
* @param limit_ The new maximum daily limit in USD(scaled with 18 decimals).
* @custom:access Only owner.
* @custom:event Emits setMaxDailyReceiveLimit with old and new limit associated with chain id.
*/
function setMaxDailyReceiveLimit(uint16 chainId_, uint256 limit_) external onlyOwner {
require(
limit_ >= chainIdToMaxSingleReceiveTransactionLimit[chainId_],
"Daily limit < single receive transaction limit"
);
emit SetMaxDailyReceiveLimit(chainId_, chainIdToMaxDailyReceiveLimit[chainId_], limit_);
chainIdToMaxDailyReceiveLimit[chainId_] = limit_;
}
/**
* @notice Sets the whitelist address to skip checks on transaction limit.
* @param user_ Address to be add in whitelist.
* @param val_ Boolean to be set (true for user_ address is whitelisted).
* @custom:access Only owner.
* @custom:event Emits setWhitelist.
*/
function setWhitelist(address user_, bool val_) external onlyOwner {
emit SetWhitelist(user_, val_);
whitelist[user_] = val_;
}
/**
* @notice Triggers stopped state of the bridge.
* @custom:access Only owner.
*/
function pause() external onlyOwner {
_pause();
}
/**
* @notice Triggers resume state of the bridge.
* @custom:access Only owner.
*/
function unpause() external onlyOwner {
_unpause();
}
/**
* @notice A public function to sweep accidental ERC-20 transfers to this contract. Tokens are sent to user
* @param token_ The address of the ERC-20 token to sweep
* @param to_ The address of the recipient
* @param amount_ The amount of tokens needs to transfer
* @custom:event Emits SweepToken event
* @custom:error Throw InsufficientBalance if amount_ is greater than the available balance of the token in the contract
* @custom:access Only Owner
*/
function sweepToken(IERC20 token_, address to_, uint256 amount_) external onlyOwner {
uint256 balance = token_.balanceOf(address(this));
if (amount_ > balance) {
revert InsufficientBalance(amount_, balance);
}
emit SweepToken(address(token_), to_, amount_);
token_.safeTransfer(to_, amount_);
}
/**
* @notice Remove trusted remote from storage.
* @param remoteChainId_ The chain's id corresponds to setting the trusted remote to empty.
* @custom:access Only owner.
* @custom:event Emits TrustedRemoteRemoved once chain id is removed from trusted remote.
*/
function removeTrustedRemote(uint16 remoteChainId_) external onlyOwner {
delete trustedRemoteLookup[remoteChainId_];
emit TrustedRemoteRemoved(remoteChainId_);
}
/**
* @notice It enables or disables sendAndCall functionality for the bridge.
* @param enabled_ Boolean indicating whether the sendAndCall function should be enabled or disabled.
*/
function updateSendAndCallEnabled(bool enabled_) external onlyOwner {
sendAndCallEnabled = enabled_;
emit UpdateSendAndCallEnabled(enabled_);
}
/**
* @notice Checks the eligibility of a sender to initiate a cross-chain token transfer.
* @dev This external view function assesses whether the specified sender is eligible to transfer the given amount
* to the specified destination chain. It considers factors such as whitelisting, transaction limits, and a 24-hour window.
* @param from_ The sender's address initiating the transfer.
* @param dstChainId_ Indicates destination chain.
* @param amount_ The quantity of tokens to be transferred.
* @return eligibleToSend A boolean indicating whether the sender is eligible to transfer the tokens.
* @return maxSingleTransactionLimit The maximum limit for a single transaction.
* @return maxDailyLimit The maximum daily limit for transactions.
* @return amountInUsd The equivalent amount in USD based on the oracle price.
* @return transferredInWindow The total amount transferred in the current 24-hour window.
* @return last24HourWindowStart The timestamp when the current 24-hour window started.
* @return isWhiteListedUser A boolean indicating whether the sender is whitelisted.
*/
function isEligibleToSend(
address from_,
uint16 dstChainId_,
uint256 amount_
)
external
view
returns (
bool eligibleToSend,
uint256 maxSingleTransactionLimit,
uint256 maxDailyLimit,
uint256 amountInUsd,
uint256 transferredInWindow,
uint256 last24HourWindowStart,
bool isWhiteListedUser
)
{
// Check if the sender's address is whitelisted
isWhiteListedUser = whitelist[from_];
// Calculate the amount in USD using the oracle price
Exp memory oraclePrice = Exp({ mantissa: oracle.getPrice(token()) });
amountInUsd = mul_ScalarTruncate(oraclePrice, amount_);
// Load values for the 24-hour window checks
uint256 currentBlockTimestamp = block.timestamp;
last24HourWindowStart = chainIdToLast24HourWindowStart[dstChainId_];
transferredInWindow = chainIdToLast24HourTransferred[dstChainId_];
maxSingleTransactionLimit = chainIdToMaxSingleTransactionLimit[dstChainId_];
maxDailyLimit = chainIdToMaxDailyLimit[dstChainId_];
if (currentBlockTimestamp - last24HourWindowStart > 1 days) {
transferredInWindow = amountInUsd;
last24HourWindowStart = currentBlockTimestamp;
} else {
transferredInWindow += amountInUsd;
}
eligibleToSend = (isWhiteListedUser ||
((amountInUsd <= maxSingleTransactionLimit) && (transferredInWindow <= maxDailyLimit)));
}
/**
* @notice Initiates a cross-chain token transfer and triggers a call on the destination chain.
* @dev This internal override function enables the contract to send tokens and invoke calls on the specified
* destination chain. It checks whether the sendAndCall feature is enabled before proceeding with the transfer.
* @param from_ Address from which tokens will be debited.
* @param dstChainId_ Destination chain id on which tokens will be send.
* @param toAddress_ Address on which tokens will be credited on destination chain.
* @param amount_ Amount of tokens that will be transferred.
* @param payload_ Additional data payload for the call on the destination chain.
* @param dstGasForCall_ The amount of gas allocated for the call on the destination chain.
* @param callparams_ Additional parameters, including refund address, ZRO payment address,
* and adapter params.
*/
function sendAndCall(
address from_,
uint16 dstChainId_,
bytes32 toAddress_,
uint256 amount_,
bytes calldata payload_,
uint64 dstGasForCall_,
LzCallParams calldata callparams_
) public payable override {
require(sendAndCallEnabled, "sendAndCall is disabled");
super.sendAndCall(from_, dstChainId_, toAddress_, amount_, payload_, dstGasForCall_, callparams_);
}
function retryMessage(
uint16 _srcChainId,
bytes calldata _srcAddress,
uint64 _nonce,
bytes calldata _payload
) public payable override {
bytes memory trustedRemote = trustedRemoteLookup[_srcChainId];
// it will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote.
require(
_srcAddress.length == trustedRemote.length &&
trustedRemote.length > 0 &&
keccak256(_srcAddress) == keccak256(trustedRemote),
"LzApp: invalid source sending contract"
);
super.retryMessage(_srcChainId, _srcAddress, _nonce, _payload);
}
/**
* @notice Empty implementation of renounce ownership to avoid any mishappening.
*/
function renounceOwnership() public override {}
/**
* @notice Return's the address of the inner token of this bridge.
* @return Address of the inner token of this bridge.
*/
function token() public view override returns (address) {
return address(innerToken);
}
/**
* @notice Checks if the sender is eligible to send tokens
* @param from_ Sender's address sending tokens
* @param dstChainId_ Chain id on which tokens should be sent
* @param amount_ Amount of tokens to be sent
*/
function _isEligibleToSend(address from_, uint16 dstChainId_, uint256 amount_) internal {
// Check if the sender's address is whitelisted
bool isWhiteListedUser = whitelist[from_];
// Check if the user is whitelisted and return if true
if (isWhiteListedUser) {
return;
}
// Calculate the amount in USD using the oracle price
uint256 amountInUsd;
Exp memory oraclePrice = Exp({ mantissa: oracle.getPrice(token()) });
amountInUsd = mul_ScalarTruncate(oraclePrice, amount_);
// Load values for the 24-hour window checks
uint256 currentBlockTimestamp = block.timestamp;
uint256 lastDayWindowStart = chainIdToLast24HourWindowStart[dstChainId_];
uint256 transferredInWindow = chainIdToLast24HourTransferred[dstChainId_];
uint256 maxSingleTransactionLimit = chainIdToMaxSingleTransactionLimit[dstChainId_];
uint256 maxDailyLimit = chainIdToMaxDailyLimit[dstChainId_];
// Revert if the amount exceeds the single transaction limit
require(amountInUsd <= maxSingleTransactionLimit, "Single Transaction Limit Exceed");
// Check if the time window has changed (more than 24 hours have passed)
if (currentBlockTimestamp - lastDayWindowStart > 1 days) {
transferredInWindow = amountInUsd;
chainIdToLast24HourWindowStart[dstChainId_] = currentBlockTimestamp;
} else {
transferredInWindow += amountInUsd;
}
// Revert if the amount exceeds the daily limit
require(transferredInWindow <= maxDailyLimit, "Daily Transaction Limit Exceed");
// Update the amount for the 24-hour window
chainIdToLast24HourTransferred[dstChainId_] = transferredInWindow;
}
/**
* @notice Checks if receiver is able to receive tokens
* @param toAddress_ Receiver address
* @param srcChainId_ Source chain id from which token is send
* @param receivedAmount_ Amount of tokens received
*/
function _isEligibleToReceive(address toAddress_, uint16 srcChainId_, uint256 receivedAmount_) internal {
// Check if the recipient's address is whitelisted
bool isWhiteListedUser = whitelist[toAddress_];
// Check if the user is whitelisted and return if true
if (isWhiteListedUser) {
return;
}
// Calculate the received amount in USD using the oracle price
uint256 receivedAmountInUsd;
Exp memory oraclePrice = Exp({ mantissa: oracle.getPrice(address(token())) });
receivedAmountInUsd = mul_ScalarTruncate(oraclePrice, receivedAmount_);
uint256 currentBlockTimestamp = block.timestamp;
// Load values for the 24-hour window checks for receiving
uint256 lastDayReceiveWindowStart = chainIdToLast24HourReceiveWindowStart[srcChainId_];
uint256 receivedInWindow = chainIdToLast24HourReceived[srcChainId_];
uint256 maxSingleReceiveTransactionLimit = chainIdToMaxSingleReceiveTransactionLimit[srcChainId_];
uint256 maxDailyReceiveLimit = chainIdToMaxDailyReceiveLimit[srcChainId_];
// Check if the received amount exceeds the single transaction limit
require(receivedAmountInUsd <= maxSingleReceiveTransactionLimit, "Single Transaction Limit Exceed");
// Check if the time window has changed (more than 24 hours have passed)
if (currentBlockTimestamp - lastDayReceiveWindowStart > 1 days) {
receivedInWindow = receivedAmountInUsd;
chainIdToLast24HourReceiveWindowStart[srcChainId_] = currentBlockTimestamp;
} else {
receivedInWindow += receivedAmountInUsd;
}
// Revert if the received amount exceeds the daily limit
require(receivedInWindow <= maxDailyReceiveLimit, "Daily Transaction Limit Exceed");
// Update the received amount for the 24-hour window
chainIdToLast24HourReceived[srcChainId_] = receivedInWindow;
}
/**
* @notice Transfer tokens from sender to receiver account.
* @param from_ Address from which token has to be transferred(Sender).
* @param to_ Address on which token will be tranferred(Receiver).
* @param amount_ Amount of token to be transferred.
* @return Actual balance difference.
*/
function _transferFrom(
address from_,
address to_,
uint256 amount_
) internal override whenNotPaused returns (uint256) {
uint256 before = innerToken.balanceOf(to_);
if (from_ == address(this)) {
innerToken.safeTransfer(to_, amount_);
} else {
innerToken.safeTransferFrom(from_, to_, amount_);
}
return innerToken.balanceOf(to_) - before;
}
/**
* @notice Returns Conversion rate factor from large decimals to shared decimals.
* @return Conversion rate factor.
*/
function _ld2sdRate() internal view override returns (uint256) {
return ld2sdRate;
}
}// SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.25;
/**
* @title IXVS
* @author Venus
* @notice Interface implemented by `XVS` token.
*/
interface IXVS {
function mint(address to, uint256 amount) external;
function burn(address from, uint256 amount) external;
}{
"optimizer": {
"enabled": true,
"runs": 200,
"details": {
"yul": true
}
},
"evmVersion": "paris",
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"metadata": {
"useLiteralContent": true
},
"libraries": {}
}Contract ABI
API[{"inputs":[{"internalType":"address","name":"tokenAddress_","type":"address"},{"internalType":"uint8","name":"sharedDecimals_","type":"uint8"},{"internalType":"address","name":"lzEndpoint_","type":"address"},{"internalType":"address","name":"oracle_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"sweepAmount","type":"uint256"},{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"ZeroAddressNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"_hash","type":"bytes32"}],"name":"CallOFTReceivedSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"srcChainId","type":"uint16"},{"indexed":true,"internalType":"bytes","name":"srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"nonce","type":"uint64"}],"name":"DropFailedMessage","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"innerToken","type":"address"}],"name":"InnerTokenAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"_reason","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"NonContractAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldOracle","type":"address"},{"indexed":true,"internalType":"address","name":"newOracle","type":"address"}],"name":"OracleChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ReceiveFromChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"_payloadHash","type":"bytes32"}],"name":"RetryMessageSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"SendToChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"chainId","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"oldMaxLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newMaxLimit","type":"uint256"}],"name":"SetMaxDailyLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"chainId","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"oldMaxLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newMaxLimit","type":"uint256"}],"name":"SetMaxDailyReceiveLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"chainId","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"oldMaxLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newMaxLimit","type":"uint256"}],"name":"SetMaxSingleReceiveTransactionLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"chainId","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"oldMaxLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newMaxLimit","type":"uint256"}],"name":"SetMaxSingleTransactionLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"_type","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_minDstGas","type":"uint256"}],"name":"SetMinDstGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"bool","name":"isWhitelist","type":"bool"}],"name":"SetWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"sweepAmount","type":"uint256"}],"name":"SweepToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"chainId","type":"uint16"}],"name":"TrustedRemoteRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"enabled","type":"bool"}],"name":"UpdateSendAndCallEnabled","type":"event"},{"inputs":[],"name":"DEFAULT_PAYLOAD_SIZE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NO_EXTRA_GAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND_AND_CALL","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes32","name":"_from","type":"bytes32"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint256","name":"_gasForCall","type":"uint256"}],"name":"callOnOFTReceived","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToLast24HourReceiveWindowStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToLast24HourReceived","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToLast24HourTransferred","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToLast24HourWindowStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToMaxDailyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToMaxDailyReceiveLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToMaxSingleReceiveTransactionLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToMaxSingleTransactionLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"creditedPackets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"srcChainId_","type":"uint16"},{"internalType":"bytes","name":"srcAddress_","type":"bytes"},{"internalType":"uint64","name":"nonce_","type":"uint64"}],"name":"dropFailedMessage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint64","name":"_dstGasForCall","type":"uint64"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendAndCallFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"failedMessages","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_configType","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"}],"name":"getTrustedRemoteAddress","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"uint16","name":"dstChainId_","type":"uint16"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"isEligibleToSend","outputs":[{"internalType":"bool","name":"eligibleToSend","type":"bool"},{"internalType":"uint256","name":"maxSingleTransactionLimit","type":"uint256"},{"internalType":"uint256","name":"maxDailyLimit","type":"uint256"},{"internalType":"uint256","name":"amountInUsd","type":"uint256"},{"internalType":"uint256","name":"transferredInWindow","type":"uint256"},{"internalType":"uint256","name":"last24HourWindowStart","type":"uint256"},{"internalType":"bool","name":"isWhiteListedUser","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"isTrustedRemote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lzEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"oracle","outputs":[{"internalType":"contract ResilientOracleInterface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"payloadSizeLimitLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"remoteChainId_","type":"uint16"}],"name":"removeTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"uint16","name":"dstChainId_","type":"uint16"},{"internalType":"bytes32","name":"toAddress_","type":"bytes32"},{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"bytes","name":"payload_","type":"bytes"},{"internalType":"uint64","name":"dstGasForCall_","type":"uint64"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.LzCallParams","name":"callparams_","type":"tuple"}],"name":"sendAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"sendAndCallEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.LzCallParams","name":"_callParams","type":"tuple"}],"name":"sendFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"chainId_","type":"uint16"},{"internalType":"uint256","name":"limit_","type":"uint256"}],"name":"setMaxDailyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"chainId_","type":"uint16"},{"internalType":"uint256","name":"limit_","type":"uint256"}],"name":"setMaxDailyReceiveLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"chainId_","type":"uint16"},{"internalType":"uint256","name":"limit_","type":"uint256"}],"name":"setMaxSingleReceiveTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"chainId_","type":"uint16"},{"internalType":"uint256","name":"limit_","type":"uint256"}],"name":"setMaxSingleTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint16","name":"_packetType","type":"uint16"},{"internalType":"uint256","name":"_minGas","type":"uint256"}],"name":"setMinDstGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"oracleAddress_","type":"address"}],"name":"setOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_size","type":"uint256"}],"name":"setPayloadSizeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user_","type":"address"},{"internalType":"bool","name":"val_","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sharedDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token_","type":"address"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"sweepToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled_","type":"bool"}],"name":"updateSendAndCallEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]Contract Creation Code
61010060405234801561001157600080fd5b50604051615b2b380380615b2b8339810160408190526100309161035b565b6000805460ff191690558383838382828181808061004d336102ab565b6001600160a01b0316608052505060ff1660a0525061006d905084610304565b61007682610304565b61007f81610304565b6001600160a01b03841660c081905260408051600481526024810182526020810180516001600160e01b031663313ce56760e01b1790529051600092839290916100c991906103af565b600060405180830381855afa9150503d8060008114610104576040519150601f19603f3d011682016040523d82523d6000602084013e610109565b606091505b50915091508161016f5760405162461bcd60e51b815260206004820152602660248201527f50726f78794f46543a206661696c656420746f2067657420746f6b656e20646560448201526563696d616c7360d01b60648201526084015b60405180910390fd5b60008180602001905181019061018591906103de565b90508060ff168660ff1611156101f25760405162461bcd60e51b815260206004820152602c60248201527f50726f78794f46543a20736861726564446563696d616c73206d75737420626560448201526b203c3d20646563696d616c7360a01b6064820152608401610166565b6101fc8682610416565b61020790600a610519565b60e0526040516001600160a01b038816907f0b673f021ff9a27bbe58f282908695869e130b3103029190387b83650806c2c390600090a26040516001600160a01b038516906000907f05cd89403c6bdeac21c2ff33de395121a31fa1bc2bf3adf4825f1f86e79969dd908290a35050600780546001600160a01b0390931661010002610100600160a81b031990931692909217909155506105289650505050505050565b600080546001600160a01b03838116610100818102610100600160a81b0319851617855560405193049190911692909183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b6001600160a01b03811661032b576040516342bcdf7f60e11b815260040160405180910390fd5b50565b80516001600160a01b038116811461034557600080fd5b919050565b805160ff8116811461034557600080fd5b6000806000806080858703121561037157600080fd5b61037a8561032e565b93506103886020860161034a565b92506103966040860161032e565b91506103a46060860161032e565b905092959194509250565b6000825160005b818110156103d057602081860181015185830152016103b6565b506000920191825250919050565b6000602082840312156103f057600080fd5b6103f98261034a565b9392505050565b634e487b7160e01b600052601160045260246000fd5b60ff828116828216039081111561042f5761042f610400565b92915050565b600181815b8085111561047057816000190482111561045657610456610400565b8085161561046357918102915b93841c939080029061043a565b509250929050565b6000826104875750600161042f565b816104945750600061042f565b81600181146104aa57600281146104b4576104d0565b600191505061042f565b60ff8411156104c5576104c5610400565b50506001821b61042f565b5060208310610133831016604e8410600b84101617156104f3575081810a61042f565b6104fd8383610435565b806000190482111561051157610511610400565b029392505050565b60006103f960ff841683610478565b60805160a05160c05160e0516155376105f4600039600081816130ca0152818161363d0152613b78015260008181610ca10152818161106801528181611ba701528181612d6b01528181612df701528181612e3001528181612e790152818161371301528181613be101528181613daa01526141da015260006108be015260008181610abe01528181610cf501528181610f3c01528181610fe40152818161142601528181611ecf015281816123c20152818161259d01528181612a9b01526138a101526155376000f3fe6080604052600436106103b75760003560e01c80637dc0d1d0116101f2578063baf3292d1161010d578063df2a5b3b116100a0578063f2fde38b1161006f578063f2fde38b14610c52578063f5ecbdbc14610c72578063fc0c546a14610c92578063fdff235b14610cc557600080fd5b8063df2a5b3b14610bdd578063e6a20ae614610bfd578063eaffd49a14610c12578063eb8d72b714610c3257600080fd5b8063cc01e9b6116100dc578063cc01e9b614610b50578063cc7015ae14610b70578063d1deba1f14610b9d578063d708a46814610bb057600080fd5b8063baf3292d14610ae0578063c1e9132e14610b00578063c446183414610b1a578063cbed8b9c14610b3057600080fd5b806393a61d6c116101855780639f38369a116101545780639f38369a14610a4c578063a4c51df514610a6c578063a6c3d16514610a8c578063b353aaa714610aac57600080fd5b806393a61d6c1461097d578063950c8a74146109aa5780639b19251a146109ca5780639bdb9812146109fa57600080fd5b80638cfd8f5c116101c15780638cfd8f5c146108e05780638da5cb5b14610918578063904365671461093b5780639358928b1461096857600080fd5b80637dc0d1d01461083a5780638456cb591461087757806384e69c691461088c578063857749b0146108ac57600080fd5b80634c42899a116102e257806364aff9ec11610275578063715018a611610244578063715018a6146107ce5780637533d788146107da57806376203b48146108075780637adbf9731461081a57600080fd5b806364aff9ec1461075b57806366ad5c8a1461077b578063695ef6bf1461079b57806369c1e7b8146107ae57600080fd5b806353489d6c116102b157806353489d6c146106b457806353d6fd59146106d45780635b8c41e6146106f45780635c975abb1461074357600080fd5b80634c42899a146106135780634cec62561461063a5780634ed2c662146106675780634f4ba0f41461068757600080fd5b80632dbbec081161035a5780633f1f4fa4116103295780633f1f4fa41461059c5780633f4ba83a146105c957806342d65a8d146105de57806344770515146105fe57600080fd5b80632dbbec08146104ec578063365260b41461050c5780633c4ec39b146105415780633d8b38f61461057c57600080fd5b80630df37483116103965780630df374831461043357806310ddb13714610453578063182b4b89146104735780632488eec8146104cc57600080fd5b80621d3567146103bc57806301ffc9a7146103de57806307e0db1714610413575b600080fd5b3480156103c857600080fd5b506103dc6103d736600461456a565b610cf2565b005b3480156103ea57600080fd5b506103fe6103f93660046145fd565b610ee4565b60405190151581526020015b60405180910390f35b34801561041f57600080fd5b506103dc61042e366004614627565b610f1b565b34801561043f57600080fd5b506103dc61044e366004614642565b610fa4565b34801561045f57600080fd5b506103dc61046e366004614627565b610fc3565b34801561047f57600080fd5b5061049361048e366004614681565b61101b565b6040805197151588526020880196909652948601939093526060850191909152608084015260a0830152151560c082015260e00161040a565b3480156104d857600080fd5b506103dc6104e7366004614642565b611191565b3480156104f857600080fd5b506103dc610507366004614627565b611275565b34801561051857600080fd5b5061052c6105273660046146cd565b6112d4565b6040805192835260208301919091520161040a565b34801561054d57600080fd5b5061056e61055c366004614627565b600d6020526000908152604090205481565b60405190815260200161040a565b34801561058857600080fd5b506103fe610597366004614734565b611329565b3480156105a857600080fd5b5061056e6105b7366004614627565b60036020526000908152604090205481565b3480156105d557600080fd5b506103dc6113f5565b3480156105ea57600080fd5b506103dc6105f9366004614734565b611407565b34801561060a57600080fd5b5061056e600081565b34801561061f57600080fd5b50610628600081565b60405160ff909116815260200161040a565b34801561064657600080fd5b5061056e610655366004614627565b600a6020526000908152604090205481565b34801561067357600080fd5b506103dc610682366004614786565b61148d565b34801561069357600080fd5b5061056e6106a2366004614627565b60096020526000908152604090205481565b3480156106c057600080fd5b506103dc6106cf366004614642565b6114d2565b3480156106e057600080fd5b506103dc6106ef3660046147a3565b6115b6565b34801561070057600080fd5b5061056e61070f366004614849565b6005602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b34801561074f57600080fd5b5060005460ff166103fe565b34801561076757600080fd5b506103dc6107763660046148e9565b61162e565b34801561078757600080fd5b506103dc61079636600461456a565b611735565b6103dc6107a9366004614942565b611811565b3480156107ba57600080fd5b506103dc6107c9366004614642565b61187c565b3480156103dc57600080fd5b3480156107e657600080fd5b506107fa6107f5366004614627565b611968565b60405161040a9190614a05565b6103dc610815366004614a18565b611a02565b34801561082657600080fd5b506103dc610835366004614aca565b611a6e565b34801561084657600080fd5b5060075461085f9061010090046001600160a01b031681565b6040516001600160a01b03909116815260200161040a565b34801561088357600080fd5b506103dc611ae6565b34801561089857600080fd5b506103dc6108a7366004614849565b611af6565b3480156108b857600080fd5b506106287f000000000000000000000000000000000000000000000000000000000000000081565b3480156108ec57600080fd5b5061056e6108fb366004614ae7565b600260209081526000928352604080842090915290825290205481565b34801561092457600080fd5b5060005461010090046001600160a01b031661085f565b34801561094757600080fd5b5061056e610956366004614627565b600c6020526000908152604090205481565b34801561097457600080fd5b5061056e611ba3565b34801561098957600080fd5b5061056e610998366004614627565b600b6020526000908152604090205481565b3480156109b657600080fd5b5060045461085f906001600160a01b031681565b3480156109d657600080fd5b506103fe6109e5366004614aca565b60106020526000908152604090205460ff1681565b348015610a0657600080fd5b506103fe610a15366004614849565b6006602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b348015610a5857600080fd5b506107fa610a67366004614627565b611c2c565b348015610a7857600080fd5b5061052c610a87366004614b1a565b611d42565b348015610a9857600080fd5b506103dc610aa7366004614734565b611dd1565b348015610ab857600080fd5b5061085f7f000000000000000000000000000000000000000000000000000000000000000081565b348015610aec57600080fd5b506103dc610afb366004614aca565b611e5a565b348015610b0c57600080fd5b506007546103fe9060ff1681565b348015610b2657600080fd5b5061056e61271081565b348015610b3c57600080fd5b506103dc610b4b366004614bd7565b611eb0565b348015610b5c57600080fd5b506103dc610b6b366004614642565b611f45565b348015610b7c57600080fd5b5061056e610b8b366004614627565b60086020526000908152604090205481565b6103dc610bab36600461456a565b612031565b348015610bbc57600080fd5b5061056e610bcb366004614627565b600e6020526000908152604090205481565b348015610be957600080fd5b506103dc610bf8366004614c45565b612135565b348015610c0957600080fd5b50610628600181565b348015610c1e57600080fd5b506103dc610c2d366004614c63565b61219f565b348015610c3e57600080fd5b506103dc610c4d366004614734565b6122be565b348015610c5e57600080fd5b506103dc610c6d366004614aca565b612318565b348015610c7e57600080fd5b506107fa610c8d366004614d2b565b612391565b348015610c9e57600080fd5b507f000000000000000000000000000000000000000000000000000000000000000061085f565b348015610cd157600080fd5b5061056e610ce0366004614627565b600f6020526000908152604090205481565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610d6f5760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff861660009081526001602052604081208054610d8d90614d78565b80601f0160208091040260200160405190810160405280929190818152602001828054610db990614d78565b8015610e065780601f10610ddb57610100808354040283529160200191610e06565b820191906000526020600020905b815481529060010190602001808311610de957829003601f168201915b50505050509050805186869050148015610e21575060008151115b8015610e49575080516020820120604051610e3f9088908890614dac565b6040518091039020145b610e655760405162461bcd60e51b8152600401610d6690614dbc565b610edb8787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a93509150889088908190840183828082843760009201919091525061244492505050565b50505050505050565b60006001600160e01b03198216631f7ecdf760e01b1480610f1557506301ffc9a760e01b6001600160e01b03198316145b92915050565b610f236124bd565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906307e0db17906024015b600060405180830381600087803b158015610f8957600080fd5b505af1158015610f9d573d6000803e3d6000fd5b5050505050565b610fac6124bd565b61ffff909116600090815260036020526040902055565b610fcb6124bd565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906310ddb13790602401610f6f565b6001600160a01b03838116600090815260106020908152604080832054815192830190915260075492938493849384938493849360ff909216928492909182916101009004166341976e097f00000000000000000000000000000000000000000000000000000000000000006040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156110cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ef9190614e02565b905290506110fd818a61251d565b61ffff8b166000908152600b6020908152604080832054600a835281842054600884528285205460099094529190932054919a509098509196509094509250426201518061114b8583614e31565b111561115c57859450809350611169565b6111668686614e44565b94505b828061118057508786111580156111805750868511155b985050509397509397509397909450565b6111996124bd565b61ffff821660009081526008602052604090205481101561120b5760405162461bcd60e51b815260206004820152602660248201527f4461696c79206c696d6974203c2073696e676c65207472616e73616374696f6e604482015265081b1a5b5a5d60d21b6064820152608401610d66565b61ffff82166000818152600960209081526040918290205482519384529083015281018290527f4dd31065e259d5284e44d1f9265710da72eafcf78dc925e3881189fc3b71f6939060600160405180910390a161ffff909116600090815260096020526040902055565b61127d6124bd565b61ffff81166000908152600160205260408120611299916144a6565b60405161ffff821681527f6d5075c81d4d9e75bec6052f4e44f58f8a8cf1327544addbbf015fb06f83bd37906020015b60405180910390a150565b60008061131a8888888888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061253592505050565b91509150965096945050505050565b61ffff83166000908152600160205260408120805482919061134a90614d78565b80601f016020809104026020016040519081016040528092919081815260200182805461137690614d78565b80156113c35780601f10611398576101008083540402835291602001916113c3565b820191906000526020600020905b8154815290600101906020018083116113a657829003601f168201915b5050505050905083836040516113da929190614dac565b60405180910390208180519060200120149150509392505050565b6113fd6124bd565b611405612629565b565b61140f6124bd565b6040516342d65a8d60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342d65a8d9061145f90869086908690600401614e80565b600060405180830381600087803b15801561147957600080fd5b505af1158015610edb573d6000803e3d6000fd5b6114956124bd565b6007805460ff19168215159081179091556040517fe628f01c6f4e6340598d3a2913390db68e8859379eebff349e170f2b16baed0090600090a250565b6114da6124bd565b61ffff821660009081526009602052604090205481111561154c5760405162461bcd60e51b815260206004820152602660248201527f53696e676c65207472616e73616374696f6e206c696d6974203e204461696c79604482015265081b1a5b5a5d60d21b6064820152608401610d66565b61ffff82166000818152600860209081526040918290205482519384529083015281018290527f7babeac42ccbb33537ee421fedc4db7b5f251b5d2a3fa5c0ff4b35b2d783be879060600160405180910390a161ffff909116600090815260086020526040902055565b6115be6124bd565b816001600160a01b03167ff6019ec0a78d156d249a1ec7579e2321f6ac7521d6e1d2eacf90ba4a184dcceb826040516115fb911515815260200190565b60405180910390a26001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6116366124bd565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa15801561167d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a19190614e02565b9050808211156116ce5760405163cf47918160e01b81526004810183905260248101829052604401610d66565b826001600160a01b0316846001600160a01b03167f6d25be279134f4ecaa4770aff0c3d916d9e7c5ef37b65ed95dbdba411f5d54d58460405161171391815260200190565b60405180910390a361172f6001600160a01b038516848461267b565b50505050565b3330146117935760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610d66565b6118098686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8901819004810282018101909252878152899350915087908790819084018382808284376000920191909152506126e392505050565b505050505050565b611809858585856118256020870187614aca565b6118356040880160208901614aca565b6118426040890189614e9e565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061276a92505050565b6118846124bd565b61ffff82166000908152600c60205260409020548110156118fe5760405162461bcd60e51b815260206004820152602e60248201527f4461696c79206c696d6974203c2073696e676c6520726563656976652074726160448201526d1b9cd858dd1a5bdb881b1a5b5a5d60921b6064820152608401610d66565b61ffff82166000818152600d60209081526040918290205482519384529083015281018290527f95dc51094cd27cf4ee3fd0dbb50cf96f8df1629c822f5434c4a34d7eb03c97249060600160405180910390a161ffff9091166000908152600d6020526040902055565b6001602052600090815260409020805461198190614d78565b80601f01602080910402602001604051908101604052809291908181526020018280546119ad90614d78565b80156119fa5780601f106119cf576101008083540402835291602001916119fa565b820191906000526020600020905b8154815290600101906020018083116119dd57829003601f168201915b505050505081565b60075460ff16611a545760405162461bcd60e51b815260206004820152601760248201527f73656e64416e6443616c6c2069732064697361626c65640000000000000000006044820152606401610d66565b611a648888888888888888612852565b5050505050505050565b611a766124bd565b611a7f816128f6565b6007546040516001600160a01b0380841692610100900416907f05cd89403c6bdeac21c2ff33de395121a31fa1bc2bf3adf4825f1f86e79969dd90600090a3600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b611aee6124bd565b61140561291d565b611afe6124bd565b61ffff83166000908152600560205260408082209051611b1f908590614ee4565b9081526040805191829003602090810183206001600160401b038616600090815291522091909155611b52908390614ee4565b6040805191829003822061ffff861683526001600160401b0384166020840152917f48a980eea4ea1c540209e2f9f32a4c2edf51fab37b1d21f453868301ecb6e2ee910160405180910390a2505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c279190614e02565b905090565b61ffff8116600090815260016020526040812080546060929190611c4f90614d78565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7b90614d78565b8015611cc85780601f10611c9d57610100808354040283529160200191611cc8565b820191906000526020600020905b815481529060010190602001808311611cab57829003601f168201915b505050505090508051600003611d205760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610d66565b611d3b600060148351611d339190614e31565b83919061295a565b9392505050565b600080611dbf8b8b8b8b8b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c9081908401838280828437600092019190915250612a6792505050565b91509150995099975050505050505050565b611dd96124bd565b818130604051602001611dee93929190614f00565b60408051601f1981840301815291815261ffff8516600090815260016020522090611e199082614f6e565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce838383604051611e4d93929190614e80565b60405180910390a1505050565b611e626124bd565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b906020016112c9565b611eb86124bd565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063cbed8b9c90611f0c908890889088908890889060040161502d565b600060405180830381600087803b158015611f2657600080fd5b505af1158015611f3a573d6000803e3d6000fd5b505050505050505050565b611f4d6124bd565b61ffff82166000908152600d6020526040902054811115611fc75760405162461bcd60e51b815260206004820152602e60248201527f73696e676c652072656365697665207472616e73616374696f6e206c696d697460448201526d080f8811185a5b1e481b1a5b5a5d60921b6064820152608401610d66565b61ffff82166000818152600c60209081526040918290205482519384529083015281018290527f2c42997a938a029910a78e7c28d762b349c28e70f3a89c1fbccbb1a46020b1599060600160405180910390a161ffff9091166000908152600c6020526040902055565b61ffff86166000908152600160205260408120805461204f90614d78565b80601f016020809104026020016040519081016040528092919081815260200182805461207b90614d78565b80156120c85780601f1061209d576101008083540402835291602001916120c8565b820191906000526020600020905b8154815290600101906020018083116120ab57829003601f168201915b505050505090508051868690501480156120e3575060008151115b801561210b5750805160208201206040516121019088908890614dac565b6040518091039020145b6121275760405162461bcd60e51b8152600401610d6690614dbc565b610edb878787878787612b29565b61213d6124bd565b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac090606001611e4d565b3330146121ee5760405162461bcd60e51b815260206004820152601f60248201527f4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265006044820152606401610d66565b6121f9308686612d3f565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf8660405161223b91815260200190565b60405180910390a3604051633fe79aed60e11b81526001600160a01b03861690637fcf35da90839061227f908e908e908e908e908e908d908d908d9060040161505b565b600060405180830381600088803b15801561229957600080fd5b5087f11580156122ad573d6000803e3d6000fd5b505050505050505050505050505050565b6122c66124bd565b61ffff831660009081526001602052604090206122e48284836150b6565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab838383604051611e4d93929190614e80565b6123206124bd565b6001600160a01b0381166123855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d66565b61238e81612ef9565b50565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f5ecbdbc90608401600060405180830381865afa158015612411573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526124399190810190615175565b90505b949350505050565b6000806124a75a60966366ad5c8a60e01b8989898960405160240161246c94939291906151e2565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915230929190612f52565b9150915081611809576118098686868685612fdc565b6000546001600160a01b036101009091041633146114055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d66565b60008061252a8484613079565b905061243c816130aa565b600080600061258387612547886130c2565b6040805160006020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb10906125da908b90309086908b908b90600401615220565b6040805180830381865afa1580156125f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061261a9190615274565b92509250509550959350505050565b612631613148565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6040516001600160a01b0383166024820152604481018290526126de90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152613191565b505050565b60006126ef8282613266565b905060ff811661270a57612705858585856132c2565b610f9d565b60001960ff8216016127225761270585858585613352565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610d66565b600061277887828481613560565b61278185613635565b50905061279088888884613675565b9050600081116127de5760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610d66565b60006127ed87612547846130c2565b90506127fd888287878734613778565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a8560405161283e91815260200190565b60405180910390a450979650505050505050565b611f3a8888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508a925061289f9150506020890189614aca565b6128af60408a0160208b01614aca565b6128bc60408b018b614e9e565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061391d92505050565b6001600160a01b03811661238e576040516342bcdf7f60e11b815260040160405180910390fd5b612925613a12565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861265e3390565b60608161296881601f614e44565b10156129a75760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610d66565b6129b18284614e44565b845110156129f55760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610d66565b606082158015612a145760405191506000825260208201604052612a5e565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015612a4d578051835260209283019201612a35565b5050858452601f01601f1916604052505b50949350505050565b6000806000612a81338a612a7a8b6130c2565b8a8a613a58565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb1090612ad8908d90309086908b908b90600401615220565b6040805180830381865afa158015612af4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b189190615274565b925092505097509795505050505050565b61ffff86166000908152600560205260408082209051612b4c9088908890614dac565b90815260408051602092819003830190206001600160401b03871660009081529252902054905080612bcc5760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610d66565b808383604051612bdd929190614dac565b604051809103902014612c3c5760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610d66565b61ffff87166000908152600560205260408082209051612c5f9089908990614dac565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f88018290048202830182019052868252612cf7918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284376000920191909152506126e392505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051612d2e959493929190615298565b60405180910390a150505050505050565b6000612d49613a12565b6040516370a0823160e01b81526001600160a01b0384811660048301526000917f0000000000000000000000000000000000000000000000000000000000000000909116906370a0823190602401602060405180830381865afa158015612db4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dd89190614e02565b9050306001600160a01b03861603612e2357612e1e6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016858561267b565b612e58565b612e586001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016868686613a99565b6040516370a0823160e01b81526001600160a01b03858116600483015282917f0000000000000000000000000000000000000000000000000000000000000000909116906370a0823190602401602060405180830381865afa158015612ec2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ee69190614e02565b612ef09190614e31565b95945050505050565b600080546001600160a01b03838116610100818102610100600160a81b0319851617855560405193049190911692909183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b6000606060008060008661ffff166001600160401b03811115612f7757612f776147dc565b6040519080825280601f01601f191660200182016040528015612fa1576020820181803683370190505b50905060008087516020890160008d8df191503d925086831115612fc3578692505b828152826000602083013e909890975095505050505050565b8180519060200120600560008761ffff1661ffff1681526020019081526020016000208560405161300d9190614ee4565b9081526040805191829003602090810183206001600160401b0388166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c9061306a90879087908790879087906152d3565b60405180910390a15050505050565b60408051602081019091526000815260405180602001604052806130a1856000015185613ad1565b90529392505050565b8051600090610f1590670de0b6b3a76400009061533b565b6000806130ef7f00000000000000000000000000000000000000000000000000000000000000008461533b565b90506001600160401b03811115610f155760405162461bcd60e51b815260206004820152601a60248201527f4f4654436f72653a20616d6f756e745344206f766572666c6f770000000000006044820152606401610d66565b60005460ff166114055760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610d66565b60006131e6826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316613add9092919063ffffffff16565b9050805160001480613207575080806020019051810190613207919061534f565b6126de5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610d66565b6000613273826001614e44565b835110156132b95760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610d66565b50016001015190565b6000806132ce83613aec565b90925090506001600160a01b0382166132e75761dead91505b60006132f282613b71565b90506132ff878483613ba6565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf8360405161334191815260200190565b60405180910390a350505050505050565b600080600080600061336386613c45565b945094509450945094506000600660008b61ffff1661ffff168152602001908152602001600020896040516133989190614ee4565b90815260408051602092819003830190206001600160401b038b166000908152925281205460ff1691506133cb85613b71565b905081613439576133dd8b3083613ba6565b61ffff8c16600090815260066020526040908190209051919250600191613405908d90614ee4565b90815260408051602092819003830190206001600160401b038d16600090815292529020805460ff19169115159190911790555b6001600160a01b0386163b613490576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a15050505050505061172f565b8a8a8a8a8a8a868a60008a6134ae578b6001600160401b03166134b0565b5a5b90506000806134e25a609663eaffd49a60e01b8e8e8e8d8d8d8d8d60405160240161246c98979695949392919061536c565b91509150811561353b578751602089012060405161ffff8d16907fb8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd8849061352d908e908e9086906153e0565b60405180910390a250613548565b6135488b8b8b8b85612fdc565b50505050505050505050505050505050505050505050565b600061356b83613cfc565b61ffff808716600090815260026020908152604080832093891683529290522054909150806135dc5760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610d66565b6135e68382614e44565b8210156118095760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610d66565b6000806136627f00000000000000000000000000000000000000000000000000000000000000008461540e565b905061366e8184614e31565b9150915091565b600061367f613a12565b6001600160a01b03851633146136e25760405162461bcd60e51b815260206004820152602260248201527f50726f78794f46543a206f776e6572206973206e6f742073656e642063616c6c60448201526132b960f11b6064820152608401610d66565b6136ed858584613d58565b604051632770a7eb60e21b81526001600160a01b038681166004830152602482018490527f00000000000000000000000000000000000000000000000000000000000000001690639dc29fac90604401600060405180830381600087803b15801561375757600080fd5b505af115801561376b573d6000803e3d6000fd5b5093979650505050505050565b61ffff86166000908152600160205260408120805461379690614d78565b80601f01602080910402602001604051908101604052809291908181526020018280546137c290614d78565b801561380f5780601f106137e45761010080835404028352916020019161380f565b820191906000526020600020905b8154815290600101906020018083116137f257829003601f168201915b5050505050905080516000036138805760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610d66565b61388b878751613f7a565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c58031009084906138e2908b9086908c908c908c908c90600401615422565b6000604051808303818588803b1580156138fb57600080fd5b505af115801561390f573d6000803e3d6000fd5b505050505050505050505050565b6000613935896001846001600160401b038916613560565b61393e87613635565b50905061394d8a8a8a84613675565b90506000811161399b5760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610d66565b60006139ab338a612a7a856130c2565b90506139bb8a8287878734613778565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a856040516139fc91815260200190565b60405180910390a4509998505050505050505050565b60005460ff16156114055760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610d66565b6060600185856001600160a01b0389168587604051602001613a7f96959493929190615489565b604051602081830303815290604052905095945050505050565b6040516001600160a01b038085166024830152831660448201526064810182905261172f9085906323b872dd60e01b906084016126a7565b6000611d3b82846154ea565b606061243c8484600085613feb565b60008080613afa8482613266565b60ff16148015613b0b575082516029145b613b525760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610d66565b613b5d83600d6140c6565b9150613b6a83602161412b565b9050915091565b6000610f157f00000000000000000000000000000000000000000000000000000000000000006001600160401b0384166154ea565b6000613bb0613a12565b613bbb838584614188565b6040516340c10f1960e01b81526001600160a01b038481166004830152602482018490527f000000000000000000000000000000000000000000000000000000000000000016906340c10f1990604401600060405180830381600087803b158015613c2557600080fd5b505af1158015613c39573d6000803e3d6000fd5b50939695505050505050565b600080806060816001613c588783613266565b60ff1614613ca35760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610d66565b613cae86600d6140c6565b9350613cbb86602161412b565b9250613cc88660296143aa565b9450613cd586604961412b565b9050613cf16051808851613ce99190614e31565b88919061295a565b915091939590929450565b6000602282511015613d505760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610d66565b506022015190565b6001600160a01b03831660009081526010602052604090205460ff168015613d805750505050565b60408051602081019091526007546000918291819061010090046001600160a01b03166341976e097f00000000000000000000000000000000000000000000000000000000000000006040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015613e0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e319190614e02565b90529050613e3f818561251d565b61ffff86166000908152600b6020908152604080832054600a835281842054600884528285205460099094529190932054939550429390919081871115613ec85760405162461bcd60e51b815260206004820152601f60248201527f53696e676c65205472616e73616374696f6e204c696d697420457863656564006044820152606401610d66565b62015180613ed68587614e31565b1115613efa5761ffff8a166000908152600b60205260409020859055869250613f07565b613f048784614e44565b92505b80831115613f575760405162461bcd60e51b815260206004820152601e60248201527f4461696c79205472616e73616374696f6e204c696d69742045786365656400006044820152606401610d66565b505061ffff9097166000908152600a602052604090209690965550505050505050565b61ffff821660009081526003602052604081205490819003613f9b57506127105b808211156126de5760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152606401610d66565b60608247101561404c5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610d66565b600080866001600160a01b031685876040516140689190614ee4565b60006040518083038185875af1925050503d80600081146140a5576040519150601f19603f3d011682016040523d82523d6000602084013e6140aa565b606091505b50915091506140bb87838387614408565b979650505050505050565b60006140d3826014614e44565b8351101561411b5760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610d66565b500160200151600160601b900490565b6000614138826008614e44565b8351101561417f5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610d66565b50016008015190565b6001600160a01b03831660009081526010602052604090205460ff1680156141b05750505050565b60408051602081019091526007546000918291819061010090046001600160a01b03166341976e097f00000000000000000000000000000000000000000000000000000000000000006040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa15801561423d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142619190614e02565b9052905061426f818561251d565b61ffff86166000908152600f6020908152604080832054600e835281842054600c845282852054600d90945291909320549395504293909190818711156142f85760405162461bcd60e51b815260206004820152601f60248201527f53696e676c65205472616e73616374696f6e204c696d697420457863656564006044820152606401610d66565b620151806143068587614e31565b111561432a5761ffff8a166000908152600f60205260409020859055869250614337565b6143348784614e44565b92505b808311156143875760405162461bcd60e51b815260206004820152601e60248201527f4461696c79205472616e73616374696f6e204c696d69742045786365656400006044820152606401610d66565b505061ffff9097166000908152600e602052604090209690965550505050505050565b60006143b7826020614e44565b835110156143ff5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610d66565b50016020015190565b60608315614477578251600003614470576001600160a01b0385163b6144705760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610d66565b508161243c565b61243c838381511561448c5781518083602001fd5b8060405162461bcd60e51b8152600401610d669190614a05565b5080546144b290614d78565b6000825580601f106144c2575050565b601f01602090049060005260206000209081019061238e91905b808211156144f057600081556001016144dc565b5090565b803561ffff8116811461450657600080fd5b919050565b60008083601f84011261451d57600080fd5b5081356001600160401b0381111561453457600080fd5b60208301915083602082850101111561454c57600080fd5b9250929050565b80356001600160401b038116811461450657600080fd5b6000806000806000806080878903121561458357600080fd5b61458c876144f4565b955060208701356001600160401b03808211156145a857600080fd5b6145b48a838b0161450b565b90975095508591506145c860408a01614553565b945060608901359150808211156145de57600080fd5b506145eb89828a0161450b565b979a9699509497509295939492505050565b60006020828403121561460f57600080fd5b81356001600160e01b031981168114611d3b57600080fd5b60006020828403121561463957600080fd5b611d3b826144f4565b6000806040838503121561465557600080fd5b61465e836144f4565b946020939093013593505050565b6001600160a01b038116811461238e57600080fd5b60008060006060848603121561469657600080fd5b83356146a18161466c565b92506146af602085016144f4565b9150604084013590509250925092565b801515811461238e57600080fd5b60008060008060008060a087890312156146e657600080fd5b6146ef876144f4565b95506020870135945060408701359350606087013561470d816146bf565b925060808701356001600160401b0381111561472857600080fd5b6145eb89828a0161450b565b60008060006040848603121561474957600080fd5b614752846144f4565b925060208401356001600160401b0381111561476d57600080fd5b6147798682870161450b565b9497909650939450505050565b60006020828403121561479857600080fd5b8135611d3b816146bf565b600080604083850312156147b657600080fd5b82356147c18161466c565b915060208301356147d1816146bf565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561481a5761481a6147dc565b604052919050565b60006001600160401b0382111561483b5761483b6147dc565b50601f01601f191660200190565b60008060006060848603121561485e57600080fd5b614867846144f4565b925060208401356001600160401b0381111561488257600080fd5b8401601f8101861361489357600080fd5b80356148a66148a182614822565b6147f2565b8181528760208385010111156148bb57600080fd5b816020840160208301376000602083830101528094505050506148e060408501614553565b90509250925092565b6000806000606084860312156148fe57600080fd5b83356149098161466c565b925060208401356149198161466c565b929592945050506040919091013590565b60006060828403121561493c57600080fd5b50919050565b600080600080600060a0868803121561495a57600080fd5b85356149658161466c565b9450614973602087016144f4565b9350604086013592506060860135915060808601356001600160401b0381111561499c57600080fd5b6149a88882890161492a565b9150509295509295909350565b60005b838110156149d05781810151838201526020016149b8565b50506000910152565b600081518084526149f18160208601602086016149b5565b601f01601f19169290920160200192915050565b602081526000611d3b60208301846149d9565b60008060008060008060008060e0898b031215614a3457600080fd5b8835614a3f8161466c565b9750614a4d60208a016144f4565b9650604089013595506060890135945060808901356001600160401b0380821115614a7757600080fd5b614a838c838d0161450b565b9096509450849150614a9760a08c01614553565b935060c08b0135915080821115614aad57600080fd5b50614aba8b828c0161492a565b9150509295985092959890939650565b600060208284031215614adc57600080fd5b8135611d3b8161466c565b60008060408385031215614afa57600080fd5b614b03836144f4565b9150614b11602084016144f4565b90509250929050565b600080600080600080600080600060e08a8c031215614b3857600080fd5b614b418a6144f4565b985060208a0135975060408a0135965060608a01356001600160401b0380821115614b6b57600080fd5b614b778d838e0161450b565b9098509650869150614b8b60808d01614553565b955060a08c01359150614b9d826146bf565b90935060c08b01359080821115614bb357600080fd5b50614bc08c828d0161450b565b915080935050809150509295985092959850929598565b600080600080600060808688031215614bef57600080fd5b614bf8866144f4565b9450614c06602087016144f4565b93506040860135925060608601356001600160401b03811115614c2857600080fd5b614c348882890161450b565b969995985093965092949392505050565b600080600060608486031215614c5a57600080fd5b6146a1846144f4565b6000806000806000806000806000806101008b8d031215614c8357600080fd5b614c8c8b6144f4565b995060208b01356001600160401b0380821115614ca857600080fd5b614cb48e838f0161450b565b909b509950899150614cc860408e01614553565b985060608d0135975060808d01359150614ce18261466c565b90955060a08c0135945060c08c01359080821115614cfe57600080fd5b50614d0b8d828e0161450b565b9150809450508092505060e08b013590509295989b9194979a5092959850565b60008060008060808587031215614d4157600080fd5b614d4a856144f4565b9350614d58602086016144f4565b92506040850135614d688161466c565b9396929550929360600135925050565b600181811c90821680614d8c57607f821691505b60208210810361493c57634e487b7160e01b600052602260045260246000fd5b8183823760009101908152919050565b60208082526026908201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6040820152651b9d1c9858dd60d21b606082015260800190565b600060208284031215614e1457600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b81810381811115610f1557610f15614e1b565b80820180821115610f1557610f15614e1b565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201526000612439604083018486614e57565b6000808335601e19843603018112614eb557600080fd5b8301803591506001600160401b03821115614ecf57600080fd5b60200191503681900382131561454c57600080fd5b60008251614ef68184602087016149b5565b9190910192915050565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b601f8211156126de576000816000526020600020601f850160051c81016020861015614f4f5750805b601f850160051c820191505b8181101561180957828155600101614f5b565b81516001600160401b03811115614f8757614f876147dc565b614f9b81614f958454614d78565b84614f26565b602080601f831160018114614fd05760008415614fb85750858301515b600019600386901b1c1916600185901b178555611809565b600085815260208120601f198616915b82811015614fff57888601518255948401946001909101908401614fe0565b508582101561501d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600061ffff8088168352808716602084015250846040830152608060608301526140bb608083018486614e57565b61ffff8916815260c06020820152600061507960c08301898b614e57565b6001600160401b038816604084015286606084015285608084015282810360a08401526150a7818587614e57565b9b9a5050505050505050505050565b6001600160401b038311156150cd576150cd6147dc565b6150e1836150db8354614d78565b83614f26565b6000601f84116001811461511557600085156150fd5750838201355b600019600387901b1c1916600186901b178355610f9d565b600083815260209020601f19861690835b828110156151465786850135825560209485019460019092019101615126565b50868210156151635760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60006020828403121561518757600080fd5b81516001600160401b0381111561519d57600080fd5b8201601f810184136151ae57600080fd5b80516151bc6148a182614822565b8181528560208385010111156151d157600080fd5b612ef08260208301602086016149b5565b61ffff851681526080602082015260006151ff60808301866149d9565b6001600160401b038516604084015282810360608401526140bb81856149d9565b61ffff861681526001600160a01b038516602082015260a06040820181905260009061524e908301866149d9565b8415156060840152828103608084015261526881856149d9565b98975050505050505050565b6000806040838503121561528757600080fd5b505080516020909101519092909150565b61ffff861681526080602082015260006152b6608083018688614e57565b6001600160401b0394909416604083015250606001529392505050565b61ffff8616815260a0602082015260006152f060a08301876149d9565b6001600160401b0386166040840152828103606084015261531181866149d9565b9050828103608084015261526881856149d9565b634e487b7160e01b600052601260045260246000fd5b60008261534a5761534a615325565b500490565b60006020828403121561536157600080fd5b8151611d3b816146bf565b600061010061ffff8b16835280602084015261538a8184018b6149d9565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c085015290506153ca81866149d9565b9150508260e08301529998505050505050505050565b6060815260006153f360608301866149d9565b6001600160401b039490941660208301525060400152919050565b60008261541d5761541d615325565b500690565b61ffff8716815260c06020820152600061543f60c08301886149d9565b828103604084015261545181886149d9565b6001600160a01b0387811660608601528616608085015283810360a0850152905061547c81856149d9565b9998505050505050505050565b60ff60f81b8760f81b16815285600182015260006001600160401b0360c01b808760c01b166021840152856029840152808560c01b1660498401525082516154d88160518501602087016149b5565b91909101605101979650505050505050565b8082028115828204841417610f1557610f15614e1b56fea264697066735822122078a20abcb22d7cb1fa2db0ea891c1e652ab0382a5180ce86b54f25c83dc77a1264736f6c63430008190033000000000000000000000000789482e37218f9b26d8d9115e356462fa9a37116000000000000000000000000000000000000000000000000000000000000000800000000000000000000000055370e0fbb5f5b8daed978ba1c075a499eb107b80000000000000000000000006c01eca2b5c97f135406a3a5531445a7d977d28e
Deployed Bytecode
0x6080604052600436106103b75760003560e01c80637dc0d1d0116101f2578063baf3292d1161010d578063df2a5b3b116100a0578063f2fde38b1161006f578063f2fde38b14610c52578063f5ecbdbc14610c72578063fc0c546a14610c92578063fdff235b14610cc557600080fd5b8063df2a5b3b14610bdd578063e6a20ae614610bfd578063eaffd49a14610c12578063eb8d72b714610c3257600080fd5b8063cc01e9b6116100dc578063cc01e9b614610b50578063cc7015ae14610b70578063d1deba1f14610b9d578063d708a46814610bb057600080fd5b8063baf3292d14610ae0578063c1e9132e14610b00578063c446183414610b1a578063cbed8b9c14610b3057600080fd5b806393a61d6c116101855780639f38369a116101545780639f38369a14610a4c578063a4c51df514610a6c578063a6c3d16514610a8c578063b353aaa714610aac57600080fd5b806393a61d6c1461097d578063950c8a74146109aa5780639b19251a146109ca5780639bdb9812146109fa57600080fd5b80638cfd8f5c116101c15780638cfd8f5c146108e05780638da5cb5b14610918578063904365671461093b5780639358928b1461096857600080fd5b80637dc0d1d01461083a5780638456cb591461087757806384e69c691461088c578063857749b0146108ac57600080fd5b80634c42899a116102e257806364aff9ec11610275578063715018a611610244578063715018a6146107ce5780637533d788146107da57806376203b48146108075780637adbf9731461081a57600080fd5b806364aff9ec1461075b57806366ad5c8a1461077b578063695ef6bf1461079b57806369c1e7b8146107ae57600080fd5b806353489d6c116102b157806353489d6c146106b457806353d6fd59146106d45780635b8c41e6146106f45780635c975abb1461074357600080fd5b80634c42899a146106135780634cec62561461063a5780634ed2c662146106675780634f4ba0f41461068757600080fd5b80632dbbec081161035a5780633f1f4fa4116103295780633f1f4fa41461059c5780633f4ba83a146105c957806342d65a8d146105de57806344770515146105fe57600080fd5b80632dbbec08146104ec578063365260b41461050c5780633c4ec39b146105415780633d8b38f61461057c57600080fd5b80630df37483116103965780630df374831461043357806310ddb13714610453578063182b4b89146104735780632488eec8146104cc57600080fd5b80621d3567146103bc57806301ffc9a7146103de57806307e0db1714610413575b600080fd5b3480156103c857600080fd5b506103dc6103d736600461456a565b610cf2565b005b3480156103ea57600080fd5b506103fe6103f93660046145fd565b610ee4565b60405190151581526020015b60405180910390f35b34801561041f57600080fd5b506103dc61042e366004614627565b610f1b565b34801561043f57600080fd5b506103dc61044e366004614642565b610fa4565b34801561045f57600080fd5b506103dc61046e366004614627565b610fc3565b34801561047f57600080fd5b5061049361048e366004614681565b61101b565b6040805197151588526020880196909652948601939093526060850191909152608084015260a0830152151560c082015260e00161040a565b3480156104d857600080fd5b506103dc6104e7366004614642565b611191565b3480156104f857600080fd5b506103dc610507366004614627565b611275565b34801561051857600080fd5b5061052c6105273660046146cd565b6112d4565b6040805192835260208301919091520161040a565b34801561054d57600080fd5b5061056e61055c366004614627565b600d6020526000908152604090205481565b60405190815260200161040a565b34801561058857600080fd5b506103fe610597366004614734565b611329565b3480156105a857600080fd5b5061056e6105b7366004614627565b60036020526000908152604090205481565b3480156105d557600080fd5b506103dc6113f5565b3480156105ea57600080fd5b506103dc6105f9366004614734565b611407565b34801561060a57600080fd5b5061056e600081565b34801561061f57600080fd5b50610628600081565b60405160ff909116815260200161040a565b34801561064657600080fd5b5061056e610655366004614627565b600a6020526000908152604090205481565b34801561067357600080fd5b506103dc610682366004614786565b61148d565b34801561069357600080fd5b5061056e6106a2366004614627565b60096020526000908152604090205481565b3480156106c057600080fd5b506103dc6106cf366004614642565b6114d2565b3480156106e057600080fd5b506103dc6106ef3660046147a3565b6115b6565b34801561070057600080fd5b5061056e61070f366004614849565b6005602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b34801561074f57600080fd5b5060005460ff166103fe565b34801561076757600080fd5b506103dc6107763660046148e9565b61162e565b34801561078757600080fd5b506103dc61079636600461456a565b611735565b6103dc6107a9366004614942565b611811565b3480156107ba57600080fd5b506103dc6107c9366004614642565b61187c565b3480156103dc57600080fd5b3480156107e657600080fd5b506107fa6107f5366004614627565b611968565b60405161040a9190614a05565b6103dc610815366004614a18565b611a02565b34801561082657600080fd5b506103dc610835366004614aca565b611a6e565b34801561084657600080fd5b5060075461085f9061010090046001600160a01b031681565b6040516001600160a01b03909116815260200161040a565b34801561088357600080fd5b506103dc611ae6565b34801561089857600080fd5b506103dc6108a7366004614849565b611af6565b3480156108b857600080fd5b506106287f000000000000000000000000000000000000000000000000000000000000000881565b3480156108ec57600080fd5b5061056e6108fb366004614ae7565b600260209081526000928352604080842090915290825290205481565b34801561092457600080fd5b5060005461010090046001600160a01b031661085f565b34801561094757600080fd5b5061056e610956366004614627565b600c6020526000908152604090205481565b34801561097457600080fd5b5061056e611ba3565b34801561098957600080fd5b5061056e610998366004614627565b600b6020526000908152604090205481565b3480156109b657600080fd5b5060045461085f906001600160a01b031681565b3480156109d657600080fd5b506103fe6109e5366004614aca565b60106020526000908152604090205460ff1681565b348015610a0657600080fd5b506103fe610a15366004614849565b6006602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b348015610a5857600080fd5b506107fa610a67366004614627565b611c2c565b348015610a7857600080fd5b5061052c610a87366004614b1a565b611d42565b348015610a9857600080fd5b506103dc610aa7366004614734565b611dd1565b348015610ab857600080fd5b5061085f7f00000000000000000000000055370e0fbb5f5b8daed978ba1c075a499eb107b881565b348015610aec57600080fd5b506103dc610afb366004614aca565b611e5a565b348015610b0c57600080fd5b506007546103fe9060ff1681565b348015610b2657600080fd5b5061056e61271081565b348015610b3c57600080fd5b506103dc610b4b366004614bd7565b611eb0565b348015610b5c57600080fd5b506103dc610b6b366004614642565b611f45565b348015610b7c57600080fd5b5061056e610b8b366004614627565b60086020526000908152604090205481565b6103dc610bab36600461456a565b612031565b348015610bbc57600080fd5b5061056e610bcb366004614627565b600e6020526000908152604090205481565b348015610be957600080fd5b506103dc610bf8366004614c45565b612135565b348015610c0957600080fd5b50610628600181565b348015610c1e57600080fd5b506103dc610c2d366004614c63565b61219f565b348015610c3e57600080fd5b506103dc610c4d366004614734565b6122be565b348015610c5e57600080fd5b506103dc610c6d366004614aca565b612318565b348015610c7e57600080fd5b506107fa610c8d366004614d2b565b612391565b348015610c9e57600080fd5b507f000000000000000000000000789482e37218f9b26d8d9115e356462fa9a3711661085f565b348015610cd157600080fd5b5061056e610ce0366004614627565b600f6020526000908152604090205481565b337f00000000000000000000000055370e0fbb5f5b8daed978ba1c075a499eb107b86001600160a01b031614610d6f5760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff861660009081526001602052604081208054610d8d90614d78565b80601f0160208091040260200160405190810160405280929190818152602001828054610db990614d78565b8015610e065780601f10610ddb57610100808354040283529160200191610e06565b820191906000526020600020905b815481529060010190602001808311610de957829003601f168201915b50505050509050805186869050148015610e21575060008151115b8015610e49575080516020820120604051610e3f9088908890614dac565b6040518091039020145b610e655760405162461bcd60e51b8152600401610d6690614dbc565b610edb8787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a93509150889088908190840183828082843760009201919091525061244492505050565b50505050505050565b60006001600160e01b03198216631f7ecdf760e01b1480610f1557506301ffc9a760e01b6001600160e01b03198316145b92915050565b610f236124bd565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000055370e0fbb5f5b8daed978ba1c075a499eb107b86001600160a01b0316906307e0db17906024015b600060405180830381600087803b158015610f8957600080fd5b505af1158015610f9d573d6000803e3d6000fd5b5050505050565b610fac6124bd565b61ffff909116600090815260036020526040902055565b610fcb6124bd565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000055370e0fbb5f5b8daed978ba1c075a499eb107b86001600160a01b0316906310ddb13790602401610f6f565b6001600160a01b03838116600090815260106020908152604080832054815192830190915260075492938493849384938493849360ff909216928492909182916101009004166341976e097f000000000000000000000000789482e37218f9b26d8d9115e356462fa9a371166040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156110cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ef9190614e02565b905290506110fd818a61251d565b61ffff8b166000908152600b6020908152604080832054600a835281842054600884528285205460099094529190932054919a509098509196509094509250426201518061114b8583614e31565b111561115c57859450809350611169565b6111668686614e44565b94505b828061118057508786111580156111805750868511155b985050509397509397509397909450565b6111996124bd565b61ffff821660009081526008602052604090205481101561120b5760405162461bcd60e51b815260206004820152602660248201527f4461696c79206c696d6974203c2073696e676c65207472616e73616374696f6e604482015265081b1a5b5a5d60d21b6064820152608401610d66565b61ffff82166000818152600960209081526040918290205482519384529083015281018290527f4dd31065e259d5284e44d1f9265710da72eafcf78dc925e3881189fc3b71f6939060600160405180910390a161ffff909116600090815260096020526040902055565b61127d6124bd565b61ffff81166000908152600160205260408120611299916144a6565b60405161ffff821681527f6d5075c81d4d9e75bec6052f4e44f58f8a8cf1327544addbbf015fb06f83bd37906020015b60405180910390a150565b60008061131a8888888888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061253592505050565b91509150965096945050505050565b61ffff83166000908152600160205260408120805482919061134a90614d78565b80601f016020809104026020016040519081016040528092919081815260200182805461137690614d78565b80156113c35780601f10611398576101008083540402835291602001916113c3565b820191906000526020600020905b8154815290600101906020018083116113a657829003601f168201915b5050505050905083836040516113da929190614dac565b60405180910390208180519060200120149150509392505050565b6113fd6124bd565b611405612629565b565b61140f6124bd565b6040516342d65a8d60e01b81526001600160a01b037f00000000000000000000000055370e0fbb5f5b8daed978ba1c075a499eb107b816906342d65a8d9061145f90869086908690600401614e80565b600060405180830381600087803b15801561147957600080fd5b505af1158015610edb573d6000803e3d6000fd5b6114956124bd565b6007805460ff19168215159081179091556040517fe628f01c6f4e6340598d3a2913390db68e8859379eebff349e170f2b16baed0090600090a250565b6114da6124bd565b61ffff821660009081526009602052604090205481111561154c5760405162461bcd60e51b815260206004820152602660248201527f53696e676c65207472616e73616374696f6e206c696d6974203e204461696c79604482015265081b1a5b5a5d60d21b6064820152608401610d66565b61ffff82166000818152600860209081526040918290205482519384529083015281018290527f7babeac42ccbb33537ee421fedc4db7b5f251b5d2a3fa5c0ff4b35b2d783be879060600160405180910390a161ffff909116600090815260086020526040902055565b6115be6124bd565b816001600160a01b03167ff6019ec0a78d156d249a1ec7579e2321f6ac7521d6e1d2eacf90ba4a184dcceb826040516115fb911515815260200190565b60405180910390a26001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6116366124bd565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa15801561167d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a19190614e02565b9050808211156116ce5760405163cf47918160e01b81526004810183905260248101829052604401610d66565b826001600160a01b0316846001600160a01b03167f6d25be279134f4ecaa4770aff0c3d916d9e7c5ef37b65ed95dbdba411f5d54d58460405161171391815260200190565b60405180910390a361172f6001600160a01b038516848461267b565b50505050565b3330146117935760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610d66565b6118098686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8901819004810282018101909252878152899350915087908790819084018382808284376000920191909152506126e392505050565b505050505050565b611809858585856118256020870187614aca565b6118356040880160208901614aca565b6118426040890189614e9e565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061276a92505050565b6118846124bd565b61ffff82166000908152600c60205260409020548110156118fe5760405162461bcd60e51b815260206004820152602e60248201527f4461696c79206c696d6974203c2073696e676c6520726563656976652074726160448201526d1b9cd858dd1a5bdb881b1a5b5a5d60921b6064820152608401610d66565b61ffff82166000818152600d60209081526040918290205482519384529083015281018290527f95dc51094cd27cf4ee3fd0dbb50cf96f8df1629c822f5434c4a34d7eb03c97249060600160405180910390a161ffff9091166000908152600d6020526040902055565b6001602052600090815260409020805461198190614d78565b80601f01602080910402602001604051908101604052809291908181526020018280546119ad90614d78565b80156119fa5780601f106119cf576101008083540402835291602001916119fa565b820191906000526020600020905b8154815290600101906020018083116119dd57829003601f168201915b505050505081565b60075460ff16611a545760405162461bcd60e51b815260206004820152601760248201527f73656e64416e6443616c6c2069732064697361626c65640000000000000000006044820152606401610d66565b611a648888888888888888612852565b5050505050505050565b611a766124bd565b611a7f816128f6565b6007546040516001600160a01b0380841692610100900416907f05cd89403c6bdeac21c2ff33de395121a31fa1bc2bf3adf4825f1f86e79969dd90600090a3600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b611aee6124bd565b61140561291d565b611afe6124bd565b61ffff83166000908152600560205260408082209051611b1f908590614ee4565b9081526040805191829003602090810183206001600160401b038616600090815291522091909155611b52908390614ee4565b6040805191829003822061ffff861683526001600160401b0384166020840152917f48a980eea4ea1c540209e2f9f32a4c2edf51fab37b1d21f453868301ecb6e2ee910160405180910390a2505050565b60007f000000000000000000000000789482e37218f9b26d8d9115e356462fa9a371166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c279190614e02565b905090565b61ffff8116600090815260016020526040812080546060929190611c4f90614d78565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7b90614d78565b8015611cc85780601f10611c9d57610100808354040283529160200191611cc8565b820191906000526020600020905b815481529060010190602001808311611cab57829003601f168201915b505050505090508051600003611d205760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610d66565b611d3b600060148351611d339190614e31565b83919061295a565b9392505050565b600080611dbf8b8b8b8b8b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c9081908401838280828437600092019190915250612a6792505050565b91509150995099975050505050505050565b611dd96124bd565b818130604051602001611dee93929190614f00565b60408051601f1981840301815291815261ffff8516600090815260016020522090611e199082614f6e565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce838383604051611e4d93929190614e80565b60405180910390a1505050565b611e626124bd565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b906020016112c9565b611eb86124bd565b6040516332fb62e760e21b81526001600160a01b037f00000000000000000000000055370e0fbb5f5b8daed978ba1c075a499eb107b8169063cbed8b9c90611f0c908890889088908890889060040161502d565b600060405180830381600087803b158015611f2657600080fd5b505af1158015611f3a573d6000803e3d6000fd5b505050505050505050565b611f4d6124bd565b61ffff82166000908152600d6020526040902054811115611fc75760405162461bcd60e51b815260206004820152602e60248201527f73696e676c652072656365697665207472616e73616374696f6e206c696d697460448201526d080f8811185a5b1e481b1a5b5a5d60921b6064820152608401610d66565b61ffff82166000818152600c60209081526040918290205482519384529083015281018290527f2c42997a938a029910a78e7c28d762b349c28e70f3a89c1fbccbb1a46020b1599060600160405180910390a161ffff9091166000908152600c6020526040902055565b61ffff86166000908152600160205260408120805461204f90614d78565b80601f016020809104026020016040519081016040528092919081815260200182805461207b90614d78565b80156120c85780601f1061209d576101008083540402835291602001916120c8565b820191906000526020600020905b8154815290600101906020018083116120ab57829003601f168201915b505050505090508051868690501480156120e3575060008151115b801561210b5750805160208201206040516121019088908890614dac565b6040518091039020145b6121275760405162461bcd60e51b8152600401610d6690614dbc565b610edb878787878787612b29565b61213d6124bd565b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac090606001611e4d565b3330146121ee5760405162461bcd60e51b815260206004820152601f60248201527f4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265006044820152606401610d66565b6121f9308686612d3f565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf8660405161223b91815260200190565b60405180910390a3604051633fe79aed60e11b81526001600160a01b03861690637fcf35da90839061227f908e908e908e908e908e908d908d908d9060040161505b565b600060405180830381600088803b15801561229957600080fd5b5087f11580156122ad573d6000803e3d6000fd5b505050505050505050505050505050565b6122c66124bd565b61ffff831660009081526001602052604090206122e48284836150b6565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab838383604051611e4d93929190614e80565b6123206124bd565b6001600160a01b0381166123855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d66565b61238e81612ef9565b50565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000055370e0fbb5f5b8daed978ba1c075a499eb107b86001600160a01b03169063f5ecbdbc90608401600060405180830381865afa158015612411573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526124399190810190615175565b90505b949350505050565b6000806124a75a60966366ad5c8a60e01b8989898960405160240161246c94939291906151e2565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915230929190612f52565b9150915081611809576118098686868685612fdc565b6000546001600160a01b036101009091041633146114055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d66565b60008061252a8484613079565b905061243c816130aa565b600080600061258387612547886130c2565b6040805160006020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b60405163040a7bb160e41b81529091506001600160a01b037f00000000000000000000000055370e0fbb5f5b8daed978ba1c075a499eb107b816906340a7bb10906125da908b90309086908b908b90600401615220565b6040805180830381865afa1580156125f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061261a9190615274565b92509250509550959350505050565b612631613148565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6040516001600160a01b0383166024820152604481018290526126de90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152613191565b505050565b60006126ef8282613266565b905060ff811661270a57612705858585856132c2565b610f9d565b60001960ff8216016127225761270585858585613352565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610d66565b600061277887828481613560565b61278185613635565b50905061279088888884613675565b9050600081116127de5760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610d66565b60006127ed87612547846130c2565b90506127fd888287878734613778565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a8560405161283e91815260200190565b60405180910390a450979650505050505050565b611f3a8888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508a925061289f9150506020890189614aca565b6128af60408a0160208b01614aca565b6128bc60408b018b614e9e565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061391d92505050565b6001600160a01b03811661238e576040516342bcdf7f60e11b815260040160405180910390fd5b612925613a12565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861265e3390565b60608161296881601f614e44565b10156129a75760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610d66565b6129b18284614e44565b845110156129f55760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610d66565b606082158015612a145760405191506000825260208201604052612a5e565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015612a4d578051835260209283019201612a35565b5050858452601f01601f1916604052505b50949350505050565b6000806000612a81338a612a7a8b6130c2565b8a8a613a58565b60405163040a7bb160e41b81529091506001600160a01b037f00000000000000000000000055370e0fbb5f5b8daed978ba1c075a499eb107b816906340a7bb1090612ad8908d90309086908b908b90600401615220565b6040805180830381865afa158015612af4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b189190615274565b925092505097509795505050505050565b61ffff86166000908152600560205260408082209051612b4c9088908890614dac565b90815260408051602092819003830190206001600160401b03871660009081529252902054905080612bcc5760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610d66565b808383604051612bdd929190614dac565b604051809103902014612c3c5760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610d66565b61ffff87166000908152600560205260408082209051612c5f9089908990614dac565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f88018290048202830182019052868252612cf7918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284376000920191909152506126e392505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051612d2e959493929190615298565b60405180910390a150505050505050565b6000612d49613a12565b6040516370a0823160e01b81526001600160a01b0384811660048301526000917f000000000000000000000000789482e37218f9b26d8d9115e356462fa9a37116909116906370a0823190602401602060405180830381865afa158015612db4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dd89190614e02565b9050306001600160a01b03861603612e2357612e1e6001600160a01b037f000000000000000000000000789482e37218f9b26d8d9115e356462fa9a3711616858561267b565b612e58565b612e586001600160a01b037f000000000000000000000000789482e37218f9b26d8d9115e356462fa9a3711616868686613a99565b6040516370a0823160e01b81526001600160a01b03858116600483015282917f000000000000000000000000789482e37218f9b26d8d9115e356462fa9a37116909116906370a0823190602401602060405180830381865afa158015612ec2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ee69190614e02565b612ef09190614e31565b95945050505050565b600080546001600160a01b03838116610100818102610100600160a81b0319851617855560405193049190911692909183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b6000606060008060008661ffff166001600160401b03811115612f7757612f776147dc565b6040519080825280601f01601f191660200182016040528015612fa1576020820181803683370190505b50905060008087516020890160008d8df191503d925086831115612fc3578692505b828152826000602083013e909890975095505050505050565b8180519060200120600560008761ffff1661ffff1681526020019081526020016000208560405161300d9190614ee4565b9081526040805191829003602090810183206001600160401b0388166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c9061306a90879087908790879087906152d3565b60405180910390a15050505050565b60408051602081019091526000815260405180602001604052806130a1856000015185613ad1565b90529392505050565b8051600090610f1590670de0b6b3a76400009061533b565b6000806130ef7f00000000000000000000000000000000000000000000000000000002540be4008461533b565b90506001600160401b03811115610f155760405162461bcd60e51b815260206004820152601a60248201527f4f4654436f72653a20616d6f756e745344206f766572666c6f770000000000006044820152606401610d66565b60005460ff166114055760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610d66565b60006131e6826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316613add9092919063ffffffff16565b9050805160001480613207575080806020019051810190613207919061534f565b6126de5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610d66565b6000613273826001614e44565b835110156132b95760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610d66565b50016001015190565b6000806132ce83613aec565b90925090506001600160a01b0382166132e75761dead91505b60006132f282613b71565b90506132ff878483613ba6565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf8360405161334191815260200190565b60405180910390a350505050505050565b600080600080600061336386613c45565b945094509450945094506000600660008b61ffff1661ffff168152602001908152602001600020896040516133989190614ee4565b90815260408051602092819003830190206001600160401b038b166000908152925281205460ff1691506133cb85613b71565b905081613439576133dd8b3083613ba6565b61ffff8c16600090815260066020526040908190209051919250600191613405908d90614ee4565b90815260408051602092819003830190206001600160401b038d16600090815292529020805460ff19169115159190911790555b6001600160a01b0386163b613490576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a15050505050505061172f565b8a8a8a8a8a8a868a60008a6134ae578b6001600160401b03166134b0565b5a5b90506000806134e25a609663eaffd49a60e01b8e8e8e8d8d8d8d8d60405160240161246c98979695949392919061536c565b91509150811561353b578751602089012060405161ffff8d16907fb8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd8849061352d908e908e9086906153e0565b60405180910390a250613548565b6135488b8b8b8b85612fdc565b50505050505050505050505050505050505050505050565b600061356b83613cfc565b61ffff808716600090815260026020908152604080832093891683529290522054909150806135dc5760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610d66565b6135e68382614e44565b8210156118095760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610d66565b6000806136627f00000000000000000000000000000000000000000000000000000002540be4008461540e565b905061366e8184614e31565b9150915091565b600061367f613a12565b6001600160a01b03851633146136e25760405162461bcd60e51b815260206004820152602260248201527f50726f78794f46543a206f776e6572206973206e6f742073656e642063616c6c60448201526132b960f11b6064820152608401610d66565b6136ed858584613d58565b604051632770a7eb60e21b81526001600160a01b038681166004830152602482018490527f000000000000000000000000789482e37218f9b26d8d9115e356462fa9a371161690639dc29fac90604401600060405180830381600087803b15801561375757600080fd5b505af115801561376b573d6000803e3d6000fd5b5093979650505050505050565b61ffff86166000908152600160205260408120805461379690614d78565b80601f01602080910402602001604051908101604052809291908181526020018280546137c290614d78565b801561380f5780601f106137e45761010080835404028352916020019161380f565b820191906000526020600020905b8154815290600101906020018083116137f257829003601f168201915b5050505050905080516000036138805760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610d66565b61388b878751613f7a565b60405162c5803160e81b81526001600160a01b037f00000000000000000000000055370e0fbb5f5b8daed978ba1c075a499eb107b8169063c58031009084906138e2908b9086908c908c908c908c90600401615422565b6000604051808303818588803b1580156138fb57600080fd5b505af115801561390f573d6000803e3d6000fd5b505050505050505050505050565b6000613935896001846001600160401b038916613560565b61393e87613635565b50905061394d8a8a8a84613675565b90506000811161399b5760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610d66565b60006139ab338a612a7a856130c2565b90506139bb8a8287878734613778565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a856040516139fc91815260200190565b60405180910390a4509998505050505050505050565b60005460ff16156114055760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610d66565b6060600185856001600160a01b0389168587604051602001613a7f96959493929190615489565b604051602081830303815290604052905095945050505050565b6040516001600160a01b038085166024830152831660448201526064810182905261172f9085906323b872dd60e01b906084016126a7565b6000611d3b82846154ea565b606061243c8484600085613feb565b60008080613afa8482613266565b60ff16148015613b0b575082516029145b613b525760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610d66565b613b5d83600d6140c6565b9150613b6a83602161412b565b9050915091565b6000610f157f00000000000000000000000000000000000000000000000000000002540be4006001600160401b0384166154ea565b6000613bb0613a12565b613bbb838584614188565b6040516340c10f1960e01b81526001600160a01b038481166004830152602482018490527f000000000000000000000000789482e37218f9b26d8d9115e356462fa9a3711616906340c10f1990604401600060405180830381600087803b158015613c2557600080fd5b505af1158015613c39573d6000803e3d6000fd5b50939695505050505050565b600080806060816001613c588783613266565b60ff1614613ca35760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610d66565b613cae86600d6140c6565b9350613cbb86602161412b565b9250613cc88660296143aa565b9450613cd586604961412b565b9050613cf16051808851613ce99190614e31565b88919061295a565b915091939590929450565b6000602282511015613d505760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610d66565b506022015190565b6001600160a01b03831660009081526010602052604090205460ff168015613d805750505050565b60408051602081019091526007546000918291819061010090046001600160a01b03166341976e097f000000000000000000000000789482e37218f9b26d8d9115e356462fa9a371166040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015613e0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e319190614e02565b90529050613e3f818561251d565b61ffff86166000908152600b6020908152604080832054600a835281842054600884528285205460099094529190932054939550429390919081871115613ec85760405162461bcd60e51b815260206004820152601f60248201527f53696e676c65205472616e73616374696f6e204c696d697420457863656564006044820152606401610d66565b62015180613ed68587614e31565b1115613efa5761ffff8a166000908152600b60205260409020859055869250613f07565b613f048784614e44565b92505b80831115613f575760405162461bcd60e51b815260206004820152601e60248201527f4461696c79205472616e73616374696f6e204c696d69742045786365656400006044820152606401610d66565b505061ffff9097166000908152600a602052604090209690965550505050505050565b61ffff821660009081526003602052604081205490819003613f9b57506127105b808211156126de5760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152606401610d66565b60608247101561404c5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610d66565b600080866001600160a01b031685876040516140689190614ee4565b60006040518083038185875af1925050503d80600081146140a5576040519150601f19603f3d011682016040523d82523d6000602084013e6140aa565b606091505b50915091506140bb87838387614408565b979650505050505050565b60006140d3826014614e44565b8351101561411b5760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610d66565b500160200151600160601b900490565b6000614138826008614e44565b8351101561417f5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610d66565b50016008015190565b6001600160a01b03831660009081526010602052604090205460ff1680156141b05750505050565b60408051602081019091526007546000918291819061010090046001600160a01b03166341976e097f000000000000000000000000789482e37218f9b26d8d9115e356462fa9a371166040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa15801561423d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142619190614e02565b9052905061426f818561251d565b61ffff86166000908152600f6020908152604080832054600e835281842054600c845282852054600d90945291909320549395504293909190818711156142f85760405162461bcd60e51b815260206004820152601f60248201527f53696e676c65205472616e73616374696f6e204c696d697420457863656564006044820152606401610d66565b620151806143068587614e31565b111561432a5761ffff8a166000908152600f60205260409020859055869250614337565b6143348784614e44565b92505b808311156143875760405162461bcd60e51b815260206004820152601e60248201527f4461696c79205472616e73616374696f6e204c696d69742045786365656400006044820152606401610d66565b505061ffff9097166000908152600e602052604090209690965550505050505050565b60006143b7826020614e44565b835110156143ff5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610d66565b50016020015190565b60608315614477578251600003614470576001600160a01b0385163b6144705760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610d66565b508161243c565b61243c838381511561448c5781518083602001fd5b8060405162461bcd60e51b8152600401610d669190614a05565b5080546144b290614d78565b6000825580601f106144c2575050565b601f01602090049060005260206000209081019061238e91905b808211156144f057600081556001016144dc565b5090565b803561ffff8116811461450657600080fd5b919050565b60008083601f84011261451d57600080fd5b5081356001600160401b0381111561453457600080fd5b60208301915083602082850101111561454c57600080fd5b9250929050565b80356001600160401b038116811461450657600080fd5b6000806000806000806080878903121561458357600080fd5b61458c876144f4565b955060208701356001600160401b03808211156145a857600080fd5b6145b48a838b0161450b565b90975095508591506145c860408a01614553565b945060608901359150808211156145de57600080fd5b506145eb89828a0161450b565b979a9699509497509295939492505050565b60006020828403121561460f57600080fd5b81356001600160e01b031981168114611d3b57600080fd5b60006020828403121561463957600080fd5b611d3b826144f4565b6000806040838503121561465557600080fd5b61465e836144f4565b946020939093013593505050565b6001600160a01b038116811461238e57600080fd5b60008060006060848603121561469657600080fd5b83356146a18161466c565b92506146af602085016144f4565b9150604084013590509250925092565b801515811461238e57600080fd5b60008060008060008060a087890312156146e657600080fd5b6146ef876144f4565b95506020870135945060408701359350606087013561470d816146bf565b925060808701356001600160401b0381111561472857600080fd5b6145eb89828a0161450b565b60008060006040848603121561474957600080fd5b614752846144f4565b925060208401356001600160401b0381111561476d57600080fd5b6147798682870161450b565b9497909650939450505050565b60006020828403121561479857600080fd5b8135611d3b816146bf565b600080604083850312156147b657600080fd5b82356147c18161466c565b915060208301356147d1816146bf565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561481a5761481a6147dc565b604052919050565b60006001600160401b0382111561483b5761483b6147dc565b50601f01601f191660200190565b60008060006060848603121561485e57600080fd5b614867846144f4565b925060208401356001600160401b0381111561488257600080fd5b8401601f8101861361489357600080fd5b80356148a66148a182614822565b6147f2565b8181528760208385010111156148bb57600080fd5b816020840160208301376000602083830101528094505050506148e060408501614553565b90509250925092565b6000806000606084860312156148fe57600080fd5b83356149098161466c565b925060208401356149198161466c565b929592945050506040919091013590565b60006060828403121561493c57600080fd5b50919050565b600080600080600060a0868803121561495a57600080fd5b85356149658161466c565b9450614973602087016144f4565b9350604086013592506060860135915060808601356001600160401b0381111561499c57600080fd5b6149a88882890161492a565b9150509295509295909350565b60005b838110156149d05781810151838201526020016149b8565b50506000910152565b600081518084526149f18160208601602086016149b5565b601f01601f19169290920160200192915050565b602081526000611d3b60208301846149d9565b60008060008060008060008060e0898b031215614a3457600080fd5b8835614a3f8161466c565b9750614a4d60208a016144f4565b9650604089013595506060890135945060808901356001600160401b0380821115614a7757600080fd5b614a838c838d0161450b565b9096509450849150614a9760a08c01614553565b935060c08b0135915080821115614aad57600080fd5b50614aba8b828c0161492a565b9150509295985092959890939650565b600060208284031215614adc57600080fd5b8135611d3b8161466c565b60008060408385031215614afa57600080fd5b614b03836144f4565b9150614b11602084016144f4565b90509250929050565b600080600080600080600080600060e08a8c031215614b3857600080fd5b614b418a6144f4565b985060208a0135975060408a0135965060608a01356001600160401b0380821115614b6b57600080fd5b614b778d838e0161450b565b9098509650869150614b8b60808d01614553565b955060a08c01359150614b9d826146bf565b90935060c08b01359080821115614bb357600080fd5b50614bc08c828d0161450b565b915080935050809150509295985092959850929598565b600080600080600060808688031215614bef57600080fd5b614bf8866144f4565b9450614c06602087016144f4565b93506040860135925060608601356001600160401b03811115614c2857600080fd5b614c348882890161450b565b969995985093965092949392505050565b600080600060608486031215614c5a57600080fd5b6146a1846144f4565b6000806000806000806000806000806101008b8d031215614c8357600080fd5b614c8c8b6144f4565b995060208b01356001600160401b0380821115614ca857600080fd5b614cb48e838f0161450b565b909b509950899150614cc860408e01614553565b985060608d0135975060808d01359150614ce18261466c565b90955060a08c0135945060c08c01359080821115614cfe57600080fd5b50614d0b8d828e0161450b565b9150809450508092505060e08b013590509295989b9194979a5092959850565b60008060008060808587031215614d4157600080fd5b614d4a856144f4565b9350614d58602086016144f4565b92506040850135614d688161466c565b9396929550929360600135925050565b600181811c90821680614d8c57607f821691505b60208210810361493c57634e487b7160e01b600052602260045260246000fd5b8183823760009101908152919050565b60208082526026908201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6040820152651b9d1c9858dd60d21b606082015260800190565b600060208284031215614e1457600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b81810381811115610f1557610f15614e1b565b80820180821115610f1557610f15614e1b565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201526000612439604083018486614e57565b6000808335601e19843603018112614eb557600080fd5b8301803591506001600160401b03821115614ecf57600080fd5b60200191503681900382131561454c57600080fd5b60008251614ef68184602087016149b5565b9190910192915050565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b601f8211156126de576000816000526020600020601f850160051c81016020861015614f4f5750805b601f850160051c820191505b8181101561180957828155600101614f5b565b81516001600160401b03811115614f8757614f876147dc565b614f9b81614f958454614d78565b84614f26565b602080601f831160018114614fd05760008415614fb85750858301515b600019600386901b1c1916600185901b178555611809565b600085815260208120601f198616915b82811015614fff57888601518255948401946001909101908401614fe0565b508582101561501d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600061ffff8088168352808716602084015250846040830152608060608301526140bb608083018486614e57565b61ffff8916815260c06020820152600061507960c08301898b614e57565b6001600160401b038816604084015286606084015285608084015282810360a08401526150a7818587614e57565b9b9a5050505050505050505050565b6001600160401b038311156150cd576150cd6147dc565b6150e1836150db8354614d78565b83614f26565b6000601f84116001811461511557600085156150fd5750838201355b600019600387901b1c1916600186901b178355610f9d565b600083815260209020601f19861690835b828110156151465786850135825560209485019460019092019101615126565b50868210156151635760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60006020828403121561518757600080fd5b81516001600160401b0381111561519d57600080fd5b8201601f810184136151ae57600080fd5b80516151bc6148a182614822565b8181528560208385010111156151d157600080fd5b612ef08260208301602086016149b5565b61ffff851681526080602082015260006151ff60808301866149d9565b6001600160401b038516604084015282810360608401526140bb81856149d9565b61ffff861681526001600160a01b038516602082015260a06040820181905260009061524e908301866149d9565b8415156060840152828103608084015261526881856149d9565b98975050505050505050565b6000806040838503121561528757600080fd5b505080516020909101519092909150565b61ffff861681526080602082015260006152b6608083018688614e57565b6001600160401b0394909416604083015250606001529392505050565b61ffff8616815260a0602082015260006152f060a08301876149d9565b6001600160401b0386166040840152828103606084015261531181866149d9565b9050828103608084015261526881856149d9565b634e487b7160e01b600052601260045260246000fd5b60008261534a5761534a615325565b500490565b60006020828403121561536157600080fd5b8151611d3b816146bf565b600061010061ffff8b16835280602084015261538a8184018b6149d9565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c085015290506153ca81866149d9565b9150508260e08301529998505050505050505050565b6060815260006153f360608301866149d9565b6001600160401b039490941660208301525060400152919050565b60008261541d5761541d615325565b500690565b61ffff8716815260c06020820152600061543f60c08301886149d9565b828103604084015261545181886149d9565b6001600160a01b0387811660608601528616608085015283810360a0850152905061547c81856149d9565b9998505050505050505050565b60ff60f81b8760f81b16815285600182015260006001600160401b0360c01b808760c01b166021840152856029840152808560c01b1660498401525082516154d88160518501602087016149b5565b91909101605101979650505050505050565b8082028115828204841417610f1557610f15614e1b56fea264697066735822122078a20abcb22d7cb1fa2db0ea891c1e652ab0382a5180ce86b54f25c83dc77a1264736f6c63430008190033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000789482e37218f9b26d8d9115e356462fa9a37116000000000000000000000000000000000000000000000000000000000000000800000000000000000000000055370e0fbb5f5b8daed978ba1c075a499eb107b80000000000000000000000006c01eca2b5c97f135406a3a5531445a7d977d28e
-----Decoded View---------------
Arg [0] : tokenAddress_ (address): 0x789482e37218f9b26d8D9115E356462fA9A37116
Arg [1] : sharedDecimals_ (uint8): 8
Arg [2] : lzEndpoint_ (address): 0x55370E0fBB5f5b8dAeD978BA1c075a499eB107B8
Arg [3] : oracle_ (address): 0x6c01ECa2B5C97F135406a3A5531445A7d977D28e
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000789482e37218f9b26d8d9115e356462fa9a37116
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [2] : 00000000000000000000000055370e0fbb5f5b8daed978ba1c075a499eb107b8
Arg [3] : 0000000000000000000000006c01eca2b5c97f135406a3a5531445a7d977d28e
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.