Source Code
Latest 25 from a total of 6,787 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Redeem | 382038543 | 132 days ago | IN | 0 ETH | 0.00010352 | ||||
| Redeem | 381048186 | 135 days ago | IN | 0 ETH | 0.00000385 | ||||
| Redeem | 373471182 | 157 days ago | IN | 0 ETH | 0.00000666 | ||||
| Redeem | 373369648 | 157 days ago | IN | 0 ETH | 0.00000409 | ||||
| Redeem | 368995746 | 169 days ago | IN | 0 ETH | 0.00000429 | ||||
| Redeem | 368390106 | 171 days ago | IN | 0 ETH | 0.00006443 | ||||
| Redeem | 368167385 | 172 days ago | IN | 0 ETH | 0.00001297 | ||||
| Redeem | 368028058 | 172 days ago | IN | 0 ETH | 0.00002204 | ||||
| Redeem | 367950646 | 172 days ago | IN | 0 ETH | 0.00000875 | ||||
| Redeem | 366980742 | 175 days ago | IN | 0 ETH | 0.00000449 | ||||
| Redeem | 365202669 | 180 days ago | IN | 0 ETH | 0.00000388 | ||||
| Redeem | 364941869 | 181 days ago | IN | 0 ETH | 0.00000415 | ||||
| Redeem | 364581702 | 182 days ago | IN | 0 ETH | 0.00000381 | ||||
| Redeem | 364303072 | 183 days ago | IN | 0 ETH | 0.00000395 | ||||
| Redeem | 362808689 | 187 days ago | IN | 0 ETH | 0.00000431 | ||||
| Redeem | 362790225 | 187 days ago | IN | 0 ETH | 0.00000414 | ||||
| Redeem | 362038614 | 190 days ago | IN | 0 ETH | 0.00000371 | ||||
| Redeem | 361461753 | 191 days ago | IN | 0 ETH | 0.00001441 | ||||
| Redeem | 361171554 | 192 days ago | IN | 0 ETH | 0.0000047 | ||||
| Redeem | 360482995 | 194 days ago | IN | 0 ETH | 0.00000778 | ||||
| Redeem | 358700769 | 199 days ago | IN | 0 ETH | 0.00001497 | ||||
| Redeem | 357790731 | 202 days ago | IN | 0 ETH | 0.000004 | ||||
| Redeem | 355849450 | 207 days ago | IN | 0.00004 ETH | 0.00000412 | ||||
| Redeem | 355828944 | 208 days ago | IN | 0 ETH | 0.00000389 | ||||
| Redeem | 355753401 | 208 days ago | IN | 0 ETH | 0.00000374 |
Latest 25 internal transactions (View All)
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 366980742 | 175 days ago | 0.00467063 ETH | ||||
| 366980742 | 175 days ago | 0.00002468 ETH | ||||
| 366980742 | 175 days ago | 0.00469531 ETH | ||||
| 364946160 | 181 days ago | 0.01 ETH | ||||
| 364946160 | 181 days ago | 0.01 ETH | ||||
| 364581702 | 182 days ago | 0.00110696 ETH | ||||
| 364581702 | 182 days ago | 0.0000184 ETH | ||||
| 364581702 | 182 days ago | 0.00112536 ETH | ||||
| 356869636 | 205 days ago | 0.00336 ETH | ||||
| 356869636 | 205 days ago | 0.00336 ETH | ||||
| 355849450 | 207 days ago | 0.00004 ETH | ||||
| 355529436 | 208 days ago | 0.00001 ETH | ||||
| 355089977 | 210 days ago | 0.0019 ETH | ||||
| 355089977 | 210 days ago | 0.0019 ETH | ||||
| 354205704 | 212 days ago | 0 ETH | ||||
| 354205704 | 212 days ago | 0.00171146 ETH | ||||
| 354205704 | 212 days ago | 0.00171146 ETH | ||||
| 354088939 | 213 days ago | 0.005 ETH | ||||
| 354088939 | 213 days ago | 0.005 ETH | ||||
| 354005365 | 213 days ago | 0 ETH | ||||
| 354005365 | 213 days ago | 0.00379341 ETH | ||||
| 354005365 | 213 days ago | 0.00379341 ETH | ||||
| 353388805 | 215 days ago | 0.02 ETH | ||||
| 353388805 | 215 days ago | 0.02 ETH | ||||
| 350971177 | 222 days ago | 0.00248 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MayanSwap
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./interfaces/ITokenBridge.sol";
import "./interfaces/IWormhole.sol";
import "./MayanStructs.sol";
import "./libs/BytesLib.sol";
contract MayanSwap {
event Redeemed(uint16 indexed emitterChainId, bytes32 indexed emitterAddress, uint64 indexed sequence);
using SafeERC20 for IERC20;
using BytesLib for bytes;
ITokenBridge tokenBridge;
address guardian;
address nextGuardian;
bool paused;
IWETH weth;
uint16 homeChainId;
struct RelayerFees {
uint64 swapFee;
uint64 redeemFee;
uint64 refundFee;
}
struct Criteria {
uint256 transferDeadline;
uint64 swapDeadline;
uint64 amountOutMin;
bool unwrap;
uint64 gasDrop;
bytes customPayload;
}
struct Recepient {
bytes32 mayanAddr;
uint16 mayanChainId;
bytes32 auctionAddr;
bytes32 destAddr;
uint16 destChainId;
bytes32 referrer;
bytes32 refundAddr;
}
constructor(address _tokenBridge, address _weth) {
tokenBridge = ITokenBridge(_tokenBridge);
homeChainId = tokenBridge.chainId();
guardian = msg.sender;
weth = IWETH(_weth);
}
function swap(RelayerFees memory relayerFees, Recepient memory recipient, bytes32 tokenOutAddr, uint16 tokenOutChainId, Criteria memory criteria, address tokenIn, uint256 amountIn) public payable returns (uint64 sequence) {
require(paused == false, 'contract is paused');
require(block.timestamp <= criteria.transferDeadline, 'deadline passed');
if (criteria.unwrap) {
require(criteria.gasDrop == 0, 'gas drop not allowed');
}
uint8 decimals = decimalsOf(tokenIn);
uint256 normalizedAmount = normalizeAmount(amountIn, decimals);
require(relayerFees.swapFee + relayerFees.refundFee < normalizedAmount, 'fees exceed amount');
require(relayerFees.redeemFee < criteria.amountOutMin, 'redeem fee exceeds min output');
amountIn = deNormalizeAmount(normalizedAmount, decimals);
IERC20(tokenIn).safeTransferFrom(msg.sender, address(this), amountIn);
IERC20(tokenIn).safeIncreaseAllowance(address(tokenBridge), amountIn);
uint64 seq1 = tokenBridge.transferTokens{ value: msg.value/2 }(tokenIn, amountIn, recipient.mayanChainId, recipient.mayanAddr, 0, 0);
MayanStructs.Swap memory swapStruct = MayanStructs.Swap({
payloadId: criteria.customPayload.length > 0 ? 2 : 1,
tokenAddr: tokenOutAddr,
tokenChainId: tokenOutChainId,
destAddr: recipient.destAddr,
destChainId: recipient.destChainId,
sourceAddr: recipient.refundAddr,
sourceChainId: homeChainId,
sequence: seq1,
amountOutMin: criteria.amountOutMin,
deadline: criteria.swapDeadline,
swapFee: relayerFees.swapFee,
redeemFee: relayerFees.redeemFee,
refundFee: relayerFees.refundFee,
auctionAddr: recipient.auctionAddr,
unwrapRedeem: criteria.unwrap,
unwrapRefund: false
});
bytes memory encoded = encodeSwap(swapStruct)
.concat(abi.encodePacked(swapStruct.unwrapRedeem, swapStruct.unwrapRefund, recipient.referrer, criteria.gasDrop));
if (swapStruct.payloadId == 2) {
require(swapStruct.destChainId == recipient.mayanChainId, 'invalid chain id with payload');
encoded = encoded.concat(abi.encodePacked(criteria.customPayload));
}
sequence = tokenBridge.wormhole().publishMessage{
value : msg.value/2
}(0, encoded, tokenBridge.finality());
}
function wrapAndSwapETH(RelayerFees memory relayerFees, Recepient memory recipient, bytes32 tokenOutAddr, uint16 tokenOutChainId, Criteria memory criteria) public payable returns (uint64 sequence) {
require(paused == false, 'contract is paused');
require(block.timestamp <= criteria.transferDeadline, 'deadline passed');
if (criteria.unwrap) {
require(criteria.gasDrop == 0, 'gas drop not allowed');
}
uint wormholeFee = tokenBridge.wormhole().messageFee();
uint256 normalizedAmount = normalizeAmount(msg.value - 2*wormholeFee, 18);
require(relayerFees.swapFee + relayerFees.refundFee < normalizedAmount, 'fees exceed amount');
require(relayerFees.redeemFee < criteria.amountOutMin, 'redeem fee exceeds min output');
uint256 amountIn = deNormalizeAmount(normalizedAmount, 18);
uint64 seq1 = tokenBridge.wrapAndTransferETH{ value: amountIn + wormholeFee }(recipient.mayanChainId, recipient.mayanAddr, 0, 0);
uint dust = msg.value - 2*wormholeFee - amountIn;
if (dust > 0) {
payable(msg.sender).transfer(dust);
}
MayanStructs.Swap memory swapStruct = MayanStructs.Swap({
payloadId: criteria.customPayload.length > 0 ? 2 : 1,
tokenAddr: tokenOutAddr,
tokenChainId: tokenOutChainId,
destAddr: recipient.destAddr,
destChainId: recipient.destChainId,
sourceAddr: recipient.refundAddr,
sourceChainId: homeChainId,
sequence: seq1,
amountOutMin: criteria.amountOutMin,
deadline: criteria.swapDeadline,
swapFee: relayerFees.swapFee,
redeemFee: relayerFees.redeemFee,
refundFee: relayerFees.refundFee,
auctionAddr: recipient.auctionAddr,
unwrapRedeem: criteria.unwrap,
unwrapRefund: true
});
bytes memory encoded = encodeSwap(swapStruct)
.concat(abi.encodePacked(swapStruct.unwrapRedeem, swapStruct.unwrapRefund, recipient.referrer, criteria.gasDrop));
if (swapStruct.payloadId == 2) {
require(swapStruct.destChainId == recipient.mayanChainId, 'invalid chain id with payload');
encoded = encoded.concat(abi.encodePacked(criteria.customPayload));
}
sequence = tokenBridge.wormhole().publishMessage{
value : wormholeFee
}(0, encoded, tokenBridge.finality());
}
function redeem(bytes memory encodedVm) public payable {
IWormhole.VM memory vm = tokenBridge.wormhole().parseVM(encodedVm);
ITokenBridge.TransferWithPayload memory transferPayload = tokenBridge.parseTransferWithPayload(vm.payload);
MayanStructs.Redeem memory redeemPayload = parseRedeemPayload(transferPayload.payload);
address recipient = truncateAddress(redeemPayload.recipient);
if (redeemPayload.payloadId == 2) {
require(msg.sender == recipient, 'not recipient');
}
address tokenAddr;
if (transferPayload.tokenChain == homeChainId) {
tokenAddr = truncateAddress(transferPayload.tokenAddress);
} else {
tokenAddr = tokenBridge.wrappedAsset(transferPayload.tokenChain, transferPayload.tokenAddress);
}
uint256 amount = IERC20(tokenAddr).balanceOf(address(this));
tokenBridge.completeTransferWithPayload(encodedVm);
amount = IERC20(tokenAddr).balanceOf(address(this)) - amount;
uint256 relayerFee = deNormalizeAmount(uint256(redeemPayload.relayerFee), decimalsOf(tokenAddr));
require(amount > relayerFee, 'relayer fee exeeds amount');
if (redeemPayload.gasDrop > 0) {
uint256 gasDrop = deNormalizeAmount(uint256(redeemPayload.gasDrop), decimalsOf(address(weth)));
require(msg.value == gasDrop, 'incorrect gas drop');
payable(recipient).transfer(gasDrop);
}
if (redeemPayload.unwrap && tokenAddr == address(weth)) {
weth.withdraw(amount);
payable(msg.sender).transfer(relayerFee);
payable(recipient).transfer(amount - relayerFee);
} else {
IERC20(tokenAddr).safeTransfer(msg.sender, relayerFee);
IERC20(tokenAddr).safeTransfer(recipient, amount - relayerFee);
}
emit Redeemed(vm.emitterChainId, vm.emitterAddress, vm.sequence);
}
function redeemAndUnwrap(bytes memory encodedVm) public {
IWormhole.VM memory vm = tokenBridge.wormhole().parseVM(encodedVm);
ITokenBridge.TransferWithPayload memory transferPayload = tokenBridge.parseTransferWithPayload(vm.payload);
require(transferPayload.tokenChain == homeChainId, 'not home chain');
address tokenAddr = truncateAddress(transferPayload.tokenAddress);
require(tokenAddr == address(weth), 'not weth');
MayanStructs.Redeem memory redeemPayload = parseRedeemPayload(transferPayload.payload);
require(redeemPayload.unwrap, 'not unwrap');
address recipient = truncateAddress(redeemPayload.recipient);
if (redeemPayload.payloadId == 2) {
require(msg.sender == recipient, 'not recipient');
}
uint256 amount = address(this).balance;
tokenBridge.completeTransferAndUnwrapETHWithPayload(encodedVm);
amount = address(this).balance - amount;
uint256 relayerFee = deNormalizeAmount(uint256(redeemPayload.relayerFee), 18);
require(amount > relayerFee, 'relayer fee exeeds amount');
payable(msg.sender).transfer(relayerFee);
payable(recipient).transfer(amount - relayerFee);
emit Redeemed(vm.emitterChainId, vm.emitterAddress, vm.sequence);
}
function parseRedeemPayload(bytes memory encoded) public pure returns (MayanStructs.Redeem memory r) {
uint index = 0;
r.payloadId = encoded.toUint8(index);
index += 1;
require(r.payloadId == 1 || r.payloadId == 2, 'payload id not supported');
r.recipient = encoded.toBytes32(index);
index += 32;
r.relayerFee = encoded.toUint64(index);
index += 8;
r.unwrap = encoded[index] != bytes1(0);
index += 1;
r.gasDrop = encoded.toUint64(index);
index += 8;
if (r.payloadId == 2) {
r.customPayload = encoded.slice(index, encoded.length - index);
} else {
require(index == encoded.length, 'invalid payload length');
}
}
function truncateAddress(bytes32 b) internal pure returns (address) {
require(bytes12(b) == 0, 'invalid EVM address');
return address(uint160(uint256(b)));
}
function decimalsOf(address token) internal view returns(uint8) {
(,bytes memory queriedDecimals) = token.staticcall(abi.encodeWithSignature('decimals()'));
return abi.decode(queriedDecimals, (uint8));
}
function normalizeAmount(uint256 amount, uint8 decimals) internal pure returns(uint256) {
if (decimals > 8) {
amount /= 10 ** (decimals - 8);
}
return amount;
}
function deNormalizeAmount(uint256 amount, uint8 decimals) internal pure returns(uint256) {
if (decimals > 8) {
amount *= 10 ** (decimals - 8);
}
return amount;
}
function encodeSwap(MayanStructs.Swap memory s) public pure returns(bytes memory encoded) {
encoded = abi.encodePacked(
s.payloadId,
s.tokenAddr,
s.tokenChainId,
s.destAddr,
s.destChainId,
s.sourceAddr,
s.sourceChainId,
s.sequence,
s.amountOutMin,
s.deadline,
s.swapFee,
s.redeemFee,
s.refundFee,
s.auctionAddr
);
}
function setPause(bool _pause) public {
require(msg.sender == guardian, 'only guardian');
paused = _pause;
}
function isPaused() public view returns(bool) {
return paused;
}
function changeGuardian(address newGuardian) public {
require(msg.sender == guardian, 'only guardian');
nextGuardian = newGuardian;
}
function claimGuardian() public {
require(msg.sender == nextGuardian, 'only next guardian');
guardian = nextGuardian;
}
function sweepToken(address token, uint256 amount, address to) public {
require(msg.sender == guardian, 'only guardian');
IERC20(token).safeTransfer(to, amount);
}
function sweepEth(uint256 amount, address payable to) public {
require(msg.sender == guardian, 'only guardian');
require(to != address(0), 'transfer to the zero address');
to.transfer(amount);
}
function getWeth() public view returns(address) {
return address(weth);
}
receive() external payable {}
}// 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: Apache 2
pragma solidity ^0.8.0;
import "./IWETH.sol";
import "./IWormhole.sol";
interface ITokenBridge {
struct Transfer {
uint8 payloadID;
uint256 amount;
bytes32 tokenAddress;
uint16 tokenChain;
bytes32 to;
uint16 toChain;
uint256 fee;
}
struct TransferWithPayload {
uint8 payloadID;
uint256 amount;
bytes32 tokenAddress;
uint16 tokenChain;
bytes32 to;
uint16 toChain;
bytes32 fromAddress;
bytes payload;
}
struct AssetMeta {
uint8 payloadID;
bytes32 tokenAddress;
uint16 tokenChain;
uint8 decimals;
bytes32 symbol;
bytes32 name;
}
struct RegisterChain {
bytes32 module;
uint8 action;
uint16 chainId;
uint16 emitterChainID;
bytes32 emitterAddress;
}
struct UpgradeContract {
bytes32 module;
uint8 action;
uint16 chainId;
bytes32 newContract;
}
struct RecoverChainId {
bytes32 module;
uint8 action;
uint256 evmChainId;
uint16 newChainId;
}
event ContractUpgraded(address indexed oldContract, address indexed newContract);
function _parseTransferCommon(bytes memory encoded) external pure returns (Transfer memory transfer);
function attestToken(address tokenAddress, uint32 nonce) external payable returns (uint64 sequence);
function wrapAndTransferETH(uint16 recipientChain, bytes32 recipient, uint256 arbiterFee, uint32 nonce) external payable returns (uint64 sequence);
function wrapAndTransferETHWithPayload(uint16 recipientChain, bytes32 recipient, uint32 nonce, bytes memory payload) external payable returns (uint64 sequence);
function transferTokens(address token, uint256 amount, uint16 recipientChain, bytes32 recipient, uint256 arbiterFee, uint32 nonce) external payable returns (uint64 sequence);
function transferTokensWithPayload(address token, uint256 amount, uint16 recipientChain, bytes32 recipient, uint32 nonce, bytes memory payload) external payable returns (uint64 sequence);
function updateWrapped(bytes memory encodedVm) external returns (address token);
function createWrapped(bytes memory encodedVm) external returns (address token);
function completeTransferWithPayload(bytes memory encodedVm) external returns (bytes memory);
function completeTransferAndUnwrapETHWithPayload(bytes memory encodedVm) external returns (bytes memory);
function completeTransfer(bytes memory encodedVm) external;
function completeTransferAndUnwrapETH(bytes memory encodedVm) external;
function encodeAssetMeta(AssetMeta memory meta) external pure returns (bytes memory encoded);
function encodeTransfer(Transfer memory transfer) external pure returns (bytes memory encoded);
function encodeTransferWithPayload(TransferWithPayload memory transfer) external pure returns (bytes memory encoded);
function parsePayloadID(bytes memory encoded) external pure returns (uint8 payloadID);
function parseAssetMeta(bytes memory encoded) external pure returns (AssetMeta memory meta);
function parseTransfer(bytes memory encoded) external pure returns (Transfer memory transfer);
function parseTransferWithPayload(bytes memory encoded) external pure returns (TransferWithPayload memory transfer);
function governanceActionIsConsumed(bytes32 hash) external view returns (bool);
function isInitialized(address impl) external view returns (bool);
function isTransferCompleted(bytes32 hash) external view returns (bool);
function wormhole() external view returns (IWormhole);
function chainId() external view returns (uint16);
function evmChainId() external view returns (uint256);
function isFork() external view returns (bool);
function governanceChainId() external view returns (uint16);
function governanceContract() external view returns (bytes32);
function wrappedAsset(uint16 tokenChainId, bytes32 tokenAddress) external view returns (address);
function bridgeContracts(uint16 chainId_) external view returns (bytes32);
function tokenImplementation() external view returns (address);
function WETH() external view returns (IWETH);
function outstandingBridged(address token) external view returns (uint256);
function isWrappedAsset(address token) external view returns (bool);
function finality() external view returns (uint8);
function implementation() external view returns (address);
function initialize() external;
function registerChain(bytes memory encodedVM) external;
function upgrade(bytes memory encodedVM) external;
function submitRecoverChainId(bytes memory encodedVM) external;
function parseRegisterChain(bytes memory encoded) external pure returns (RegisterChain memory chain);
function parseUpgrade(bytes memory encoded) external pure returns (UpgradeContract memory chain);
function parseRecoverChainId(bytes memory encodedRecoverChainId) external pure returns (RecoverChainId memory rci);
}// SPDX-License-Identifier: Apache 2
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IWETH is IERC20 {
function deposit() external payable;
function withdraw(uint amount) external;
}// SPDX-License-Identifier: Apache 2
pragma solidity ^0.8.0;
interface IWormhole {
struct GuardianSet {
address[] keys;
uint32 expirationTime;
}
struct Signature {
bytes32 r;
bytes32 s;
uint8 v;
uint8 guardianIndex;
}
struct VM {
uint8 version;
uint32 timestamp;
uint32 nonce;
uint16 emitterChainId;
bytes32 emitterAddress;
uint64 sequence;
uint8 consistencyLevel;
bytes payload;
uint32 guardianSetIndex;
Signature[] signatures;
bytes32 hash;
}
struct ContractUpgrade {
bytes32 module;
uint8 action;
uint16 chain;
address newContract;
}
struct GuardianSetUpgrade {
bytes32 module;
uint8 action;
uint16 chain;
GuardianSet newGuardianSet;
uint32 newGuardianSetIndex;
}
struct SetMessageFee {
bytes32 module;
uint8 action;
uint16 chain;
uint256 messageFee;
}
struct TransferFees {
bytes32 module;
uint8 action;
uint16 chain;
uint256 amount;
bytes32 recipient;
}
struct RecoverChainId {
bytes32 module;
uint8 action;
uint256 evmChainId;
uint16 newChainId;
}
event LogMessagePublished(address indexed sender, uint64 sequence, uint32 nonce, bytes payload, uint8 consistencyLevel);
event ContractUpgraded(address indexed oldContract, address indexed newContract);
event GuardianSetAdded(uint32 indexed index);
function publishMessage(
uint32 nonce,
bytes memory payload,
uint8 consistencyLevel
) external payable returns (uint64 sequence);
function initialize() external;
function parseAndVerifyVM(bytes calldata encodedVM) external view returns (VM memory vm, bool valid, string memory reason);
function verifyVM(VM memory vm) external view returns (bool valid, string memory reason);
function verifySignatures(bytes32 hash, Signature[] memory signatures, GuardianSet memory guardianSet) external pure returns (bool valid, string memory reason);
function parseVM(bytes memory encodedVM) external pure returns (VM memory vm);
function quorum(uint numGuardians) external pure returns (uint numSignaturesRequiredForQuorum);
function getGuardianSet(uint32 index) external view returns (GuardianSet memory);
function getCurrentGuardianSetIndex() external view returns (uint32);
function getGuardianSetExpiry() external view returns (uint32);
function governanceActionIsConsumed(bytes32 hash) external view returns (bool);
function isInitialized(address impl) external view returns (bool);
function chainId() external view returns (uint16);
function isFork() external view returns (bool);
function governanceChainId() external view returns (uint16);
function governanceContract() external view returns (bytes32);
function messageFee() external view returns (uint256);
function evmChainId() external view returns (uint256);
function nextSequence(address emitter) external view returns (uint64);
function parseContractUpgrade(bytes memory encodedUpgrade) external pure returns (ContractUpgrade memory cu);
function parseGuardianSetUpgrade(bytes memory encodedUpgrade) external pure returns (GuardianSetUpgrade memory gsu);
function parseSetMessageFee(bytes memory encodedSetMessageFee) external pure returns (SetMessageFee memory smf);
function parseTransferFees(bytes memory encodedTransferFees) external pure returns (TransferFees memory tf);
function parseRecoverChainId(bytes memory encodedRecoverChainId) external pure returns (RecoverChainId memory rci);
function submitContractUpgrade(bytes memory _vm) external;
function submitSetMessageFee(bytes memory _vm) external;
function submitNewGuardianSet(bytes memory _vm) external;
function submitTransferFees(bytes memory _vm) external;
function submitRecoverChainId(bytes memory _vm) external;
}// 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, uint256 _start, uint256 _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, uint256 _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, uint256 _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, uint256 _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, uint256 _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, uint256 _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, uint256 _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, uint256 _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, uint256 _start) internal pure returns (uint256) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint256 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toBytes32(bytes memory _bytes, uint256 _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
pragma solidity ^0.8.0;
contract MayanStructs {
struct Swap {
uint8 payloadId;
bytes32 tokenAddr;
uint16 tokenChainId;
bytes32 destAddr;
uint16 destChainId;
bytes32 sourceAddr;
uint16 sourceChainId;
uint64 sequence;
uint64 amountOutMin;
uint64 deadline;
uint64 swapFee;
uint64 redeemFee;
uint64 refundFee;
bytes32 auctionAddr;
bool unwrapRedeem;
bool unwrapRefund;
}
struct Redeem {
uint8 payloadId;
bytes32 recipient;
uint64 relayerFee;
bool unwrap;
uint64 gasDrop;
bytes customPayload;
}
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_tokenBridge","type":"address"},{"internalType":"address","name":"_weth","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"emitterChainId","type":"uint16"},{"indexed":true,"internalType":"bytes32","name":"emitterAddress","type":"bytes32"},{"indexed":true,"internalType":"uint64","name":"sequence","type":"uint64"}],"name":"Redeemed","type":"event"},{"inputs":[{"internalType":"address","name":"newGuardian","type":"address"}],"name":"changeGuardian","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimGuardian","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint8","name":"payloadId","type":"uint8"},{"internalType":"bytes32","name":"tokenAddr","type":"bytes32"},{"internalType":"uint16","name":"tokenChainId","type":"uint16"},{"internalType":"bytes32","name":"destAddr","type":"bytes32"},{"internalType":"uint16","name":"destChainId","type":"uint16"},{"internalType":"bytes32","name":"sourceAddr","type":"bytes32"},{"internalType":"uint16","name":"sourceChainId","type":"uint16"},{"internalType":"uint64","name":"sequence","type":"uint64"},{"internalType":"uint64","name":"amountOutMin","type":"uint64"},{"internalType":"uint64","name":"deadline","type":"uint64"},{"internalType":"uint64","name":"swapFee","type":"uint64"},{"internalType":"uint64","name":"redeemFee","type":"uint64"},{"internalType":"uint64","name":"refundFee","type":"uint64"},{"internalType":"bytes32","name":"auctionAddr","type":"bytes32"},{"internalType":"bool","name":"unwrapRedeem","type":"bool"},{"internalType":"bool","name":"unwrapRefund","type":"bool"}],"internalType":"struct MayanStructs.Swap","name":"s","type":"tuple"}],"name":"encodeSwap","outputs":[{"internalType":"bytes","name":"encoded","type":"bytes"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getWeth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"encoded","type":"bytes"}],"name":"parseRedeemPayload","outputs":[{"components":[{"internalType":"uint8","name":"payloadId","type":"uint8"},{"internalType":"bytes32","name":"recipient","type":"bytes32"},{"internalType":"uint64","name":"relayerFee","type":"uint64"},{"internalType":"bool","name":"unwrap","type":"bool"},{"internalType":"uint64","name":"gasDrop","type":"uint64"},{"internalType":"bytes","name":"customPayload","type":"bytes"}],"internalType":"struct MayanStructs.Redeem","name":"r","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes","name":"encodedVm","type":"bytes"}],"name":"redeem","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes","name":"encodedVm","type":"bytes"}],"name":"redeemAndUnwrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pause","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"swapFee","type":"uint64"},{"internalType":"uint64","name":"redeemFee","type":"uint64"},{"internalType":"uint64","name":"refundFee","type":"uint64"}],"internalType":"struct MayanSwap.RelayerFees","name":"relayerFees","type":"tuple"},{"components":[{"internalType":"bytes32","name":"mayanAddr","type":"bytes32"},{"internalType":"uint16","name":"mayanChainId","type":"uint16"},{"internalType":"bytes32","name":"auctionAddr","type":"bytes32"},{"internalType":"bytes32","name":"destAddr","type":"bytes32"},{"internalType":"uint16","name":"destChainId","type":"uint16"},{"internalType":"bytes32","name":"referrer","type":"bytes32"},{"internalType":"bytes32","name":"refundAddr","type":"bytes32"}],"internalType":"struct MayanSwap.Recepient","name":"recipient","type":"tuple"},{"internalType":"bytes32","name":"tokenOutAddr","type":"bytes32"},{"internalType":"uint16","name":"tokenOutChainId","type":"uint16"},{"components":[{"internalType":"uint256","name":"transferDeadline","type":"uint256"},{"internalType":"uint64","name":"swapDeadline","type":"uint64"},{"internalType":"uint64","name":"amountOutMin","type":"uint64"},{"internalType":"bool","name":"unwrap","type":"bool"},{"internalType":"uint64","name":"gasDrop","type":"uint64"},{"internalType":"bytes","name":"customPayload","type":"bytes"}],"internalType":"struct MayanSwap.Criteria","name":"criteria","type":"tuple"},{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"}],"name":"swap","outputs":[{"internalType":"uint64","name":"sequence","type":"uint64"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"}],"name":"sweepEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"sweepToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"swapFee","type":"uint64"},{"internalType":"uint64","name":"redeemFee","type":"uint64"},{"internalType":"uint64","name":"refundFee","type":"uint64"}],"internalType":"struct MayanSwap.RelayerFees","name":"relayerFees","type":"tuple"},{"components":[{"internalType":"bytes32","name":"mayanAddr","type":"bytes32"},{"internalType":"uint16","name":"mayanChainId","type":"uint16"},{"internalType":"bytes32","name":"auctionAddr","type":"bytes32"},{"internalType":"bytes32","name":"destAddr","type":"bytes32"},{"internalType":"uint16","name":"destChainId","type":"uint16"},{"internalType":"bytes32","name":"referrer","type":"bytes32"},{"internalType":"bytes32","name":"refundAddr","type":"bytes32"}],"internalType":"struct MayanSwap.Recepient","name":"recipient","type":"tuple"},{"internalType":"bytes32","name":"tokenOutAddr","type":"bytes32"},{"internalType":"uint16","name":"tokenOutChainId","type":"uint16"},{"components":[{"internalType":"uint256","name":"transferDeadline","type":"uint256"},{"internalType":"uint64","name":"swapDeadline","type":"uint64"},{"internalType":"uint64","name":"amountOutMin","type":"uint64"},{"internalType":"bool","name":"unwrap","type":"bool"},{"internalType":"uint64","name":"gasDrop","type":"uint64"},{"internalType":"bytes","name":"customPayload","type":"bytes"}],"internalType":"struct MayanSwap.Criteria","name":"criteria","type":"tuple"}],"name":"wrapAndSwapETH","outputs":[{"internalType":"uint64","name":"sequence","type":"uint64"}],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60806040523480156200001157600080fd5b50604051620037e5380380620037e5833981016040819052620000349162000131565b600080546001600160a01b0319166001600160a01b03841690811790915560408051634d4502c960e11b81529051639a8a059291600480820192602092909190829003018186803b1580156200008957600080fd5b505afa1580156200009e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000c4919062000168565b60038054600180546001600160a01b031990811633179091556001600160a01b039490941661ffff93909316600160a01b02939093166001600160b01b0319909316929092171790555062000193565b80516001600160a01b03811681146200012c57600080fd5b919050565b6000806040838503121562000144578182fd5b6200014f8362000114565b91506200015f6020840162000114565b90509250929050565b6000602082840312156200017a578081fd5b815161ffff811681146200018c578182fd5b9392505050565b61364280620001a36000396000f3fe6080604052600436106100c65760003560e01c80636111ad251161007f578063b187bd2611610059578063b187bd2614610201578063bedb86fb1461022b578063c0e6d1691461024b578063df2ab5bb1461026b57600080fd5b80636111ad25146101ae5780639945e3d3146101c1578063acbb478c146101d457600080fd5b8063107c279f146100d25780631eb1cff0146100ff5780632fcb4f041461012a578063459656ee1461014c5780634df808ce14610161578063580094b71461018e57600080fd5b366100cd57005b600080fd5b3480156100de57600080fd5b506003546040516001600160a01b0390911681526020015b60405180910390f35b61011261010d366004612c08565b61028b565b6040516001600160401b0390911681526020016100f6565b34801561013657600080fd5b5061014a610145366004612af3565b610a0c565b005b34801561015857600080fd5b5061014a610a58565b34801561016d57600080fd5b5061018161017c366004612ba4565b610acb565b6040516100f69190613267565b34801561019a57600080fd5b5061014a6101a9366004613036565b610cb5565b6101126101bc366004612c86565b610d70565b61014a6101cf366004612ba4565b6112e5565b3480156101e057600080fd5b506101f46101ef366004612d24565b6119ee565b6040516100f691906131fb565b34801561020d57600080fd5b50600254600160a01b900460ff1660405190151581526020016100f6565b34801561023757600080fd5b5061014a610246366004612b6c565b611a6f565b34801561025757600080fd5b5061014a610266366004612ba4565b611ab7565b34801561027757600080fd5b5061014a610286366004612b2b565b611f75565b600254600090600160a01b900460ff16156102e25760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064015b60405180910390fd5b81514211156103255760405162461bcd60e51b815260206004820152600f60248201526e191958591b1a5b99481c185cdcd959608a1b60448201526064016102d9565b8160600151156103815760808201516001600160401b0316156103815760405162461bcd60e51b815260206004820152601460248201527319d85cc8191c9bdc081b9bdd08185b1b1bddd95960621b60448201526064016102d9565b60008060009054906101000a90046001600160a01b03166001600160a01b03166384acd1bb6040518163ffffffff1660e01b815260040160206040518083038186803b1580156103d057600080fd5b505afa1580156103e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104089190612b0f565b6001600160a01b0316631a90a2196040518163ffffffff1660e01b815260040160206040518083038186803b15801561044057600080fd5b505afa158015610454573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610478919061301e565b9050600061049b61048a836002613501565b6104949034613520565b6012611fb3565b905080886040015189600001516104b291906133c8565b6001600160401b0316106104fd5760405162461bcd60e51b81526020600482015260126024820152711999595cc8195e18d9595908185b5bdd5b9d60721b60448201526064016102d9565b83604001516001600160401b031688602001516001600160401b0316106105665760405162461bcd60e51b815260206004820152601d60248201527f72656465656d206665652065786365656473206d696e206f757470757400000060448201526064016102d9565b6000610573826012611fed565b60008054919250906001600160a01b0316639981509f61059386856133b0565b60208c01518c5160405160e085901b6001600160e01b031916815261ffff9092166004830152602482015260006044820181905260648201526084016020604051808303818588803b1580156105e857600080fd5b505af11580156105fc573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906106219190613065565b9050600082610631866002613501565b61063b9034613520565b6106459190613520565b9050801561067c57604051339082156108fc029083906000818181858888f1935050505015801561067a573d6000803e3d6000fd5b505b600060405180610200016040528060008a60a00151511161069e5760016106a1565b60025b60ff1681526020018b81526020018a61ffff1681526020018c6060015181526020018c6080015161ffff1681526020018c60c001518152602001600360149054906101000a900461ffff1661ffff168152602001846001600160401b0316815260200189604001516001600160401b0316815260200189602001516001600160401b031681526020018d600001516001600160401b031681526020018d602001516001600160401b031681526020018d604001516001600160401b031681526020018c60400151815260200189606001511515815260200160011515815250905060006107ce826101c00151836101e001518e60a001518c608001516040516020016107b094939291906130da565b6040516020818303038152906040526107c8846119ee565b9061201b565b9050816000015160ff1660021415610871578b6020015161ffff16826080015161ffff161461083f5760405162461bcd60e51b815260206004820152601d60248201527f696e76616c696420636861696e2069642077697468207061796c6f616400000060448201526064016102d9565b61086e8960a00151604051602001610857919061310c565b60408051601f19818403018152919052829061201b565b90505b60008054906101000a90046001600160a01b03166001600160a01b03166384acd1bb6040518163ffffffff1660e01b815260040160206040518083038186803b1580156108bd57600080fd5b505afa1580156108d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f59190612b0f565b6001600160a01b031663b19a437e8860008460008054906101000a90046001600160a01b03166001600160a01b031663739fc8d16040518163ffffffff1660e01b815260040160206040518083038186803b15801561095357600080fd5b505afa158015610967573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098b9190613081565b6040518563ffffffff1660e01b81526004016109a99392919061320e565b6020604051808303818588803b1580156109c257600080fd5b505af11580156109d6573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109fb9190613065565b9d9c50505050505050505050505050565b6001546001600160a01b03163314610a365760405162461bcd60e51b81526004016102d990613240565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b03163314610aa75760405162461bcd60e51b815260206004820152601260248201527137b7363c903732bc3a1033bab0b93234b0b760711b60448201526064016102d9565b600254600180546001600160a01b0319166001600160a01b03909216919091179055565b6040805160c08101825260008082526020820181905291810182905260608082018390526080820183905260a082015290610b068382612098565b60ff168252610b166001826133b0565b9050816000015160ff1660011480610b355750816000015160ff166002145b610b815760405162461bcd60e51b815260206004820152601860248201527f7061796c6f6164206964206e6f7420737570706f72746564000000000000000060448201526064016102d9565b610b8b83826120f4565b602080840191909152610b9e90826133b0565b9050610baa8382612152565b6001600160401b03166040830152610bc36008826133b0565b8351909150600090849083908110610beb57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b03191614156060830152610c0c6001826133b0565b9050610c188382612152565b6001600160401b03166080830152610c316008826133b0565b9050816000015160ff1660021415610c6657610c5c81828551610c549190613520565b8591906121af565b60a0830152610caf565b82518114610caf5760405162461bcd60e51b81526020600482015260166024820152750d2dcecc2d8d2c840e0c2f2d8dec2c840d8cadccee8d60531b60448201526064016102d9565b50919050565b6001546001600160a01b03163314610cdf5760405162461bcd60e51b81526004016102d990613240565b6001600160a01b038116610d355760405162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f20616464726573730000000060448201526064016102d9565b6040516001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610d6b573d6000803e3d6000fd5b505050565b600254600090600160a01b900460ff1615610dc25760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016102d9565b8351421115610e055760405162461bcd60e51b815260206004820152600f60248201526e191958591b1a5b99481c185cdcd959608a1b60448201526064016102d9565b836060015115610e615760808401516001600160401b031615610e615760405162461bcd60e51b815260206004820152601460248201527319d85cc8191c9bdc081b9bdd08185b1b1bddd95960621b60448201526064016102d9565b6000610e6c846122bc565b90506000610e7a8483611fb3565b9050808a604001518b60000151610e9191906133c8565b6001600160401b031610610edc5760405162461bcd60e51b81526020600482015260126024820152711999595cc8195e18d9595908185b5bdd5b9d60721b60448201526064016102d9565b85604001516001600160401b03168a602001516001600160401b031610610f455760405162461bcd60e51b815260206004820152601d60248201527f72656465656d206665652065786365656473206d696e206f757470757400000060448201526064016102d9565b610f4f8183611fed565b9350610f666001600160a01b03861633308761235e565b600054610f80906001600160a01b038781169116866123cf565b600080546001600160a01b0316630f5287b0610f9d6002346133f3565b60208d01518d5160405160e085901b6001600160e01b03191681526001600160a01b038c166004820152602481018b905261ffff9092166044830152606482015260006084820181905260a482015260c4016020604051808303818588803b15801561100857600080fd5b505af115801561101c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110419190613065565b9050600060405180610200016040528060008a60a001515111611065576001611068565b60025b60ff1681526020018b81526020018a61ffff1681526020018c6060015181526020018c6080015161ffff1681526020018c60c001518152602001600360149054906101000a900461ffff1661ffff168152602001836001600160401b0316815260200189604001516001600160401b0316815260200189602001516001600160401b031681526020018d600001516001600160401b031681526020018d602001516001600160401b031681526020018d604001516001600160401b031681526020018c6040015181526020018960600151151581526020016000151581525090506000611177826101c00151836101e001518e60a001518c608001516040516020016107b094939291906130da565b9050816000015160ff1660021415611203578b6020015161ffff16826080015161ffff16146111e85760405162461bcd60e51b815260206004820152601d60248201527f696e76616c696420636861696e2069642077697468207061796c6f616400000060448201526064016102d9565b6112008960a00151604051602001610857919061310c565b90505b60008054906101000a90046001600160a01b03166001600160a01b03166384acd1bb6040518163ffffffff1660e01b815260040160206040518083038186803b15801561124f57600080fd5b505afa158015611263573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112879190612b0f565b6001600160a01b031663b19a437e6112a06002346133f3565b600080546040805163739fc8d160e01b8152905187926001600160a01b03169163739fc8d1916004808301926020929190829003018186803b15801561095357600080fd5b60008060009054906101000a90046001600160a01b03166001600160a01b03166384acd1bb6040518163ffffffff1660e01b815260040160206040518083038186803b15801561133457600080fd5b505afa158015611348573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136c9190612b0f565b6001600160a01b031663a9e11893836040518263ffffffff1660e01b815260040161139791906131fb565b60006040518083038186803b1580156113af57600080fd5b505afa1580156113c3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113eb9190810190612eff565b6000805460e083015160405163ea63738d60e01b815293945091926001600160a01b039091169163ea63738d9161142591906004016131fb565b60006040518083038186803b15801561143d57600080fd5b505afa158015611451573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114799190810190612e3b565b9050600061148a8260e00151610acb565b9050600061149b826020015161248b565b9050816000015160ff16600214156114f557336001600160a01b038216146114f55760405162461bcd60e51b815260206004820152600d60248201526c1b9bdd081c9958da5c1a595b9d609a1b60448201526064016102d9565b6000600360149054906101000a900461ffff1661ffff16846060015161ffff16141561152f57611528846040015161248b565b90506115c1565b60005460608501516040808701519051630ff8f14360e11b815261ffff909216600483015260248201526001600160a01b0390911690631ff1e2869060440160206040518083038186803b15801561158657600080fd5b505afa15801561159a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115be9190612b0f565b90505b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b15801561160357600080fd5b505afa158015611617573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163b919061301e565b60005460405163c3f511c160e01b81529192506001600160a01b03169063c3f511c19061166c908a906004016131fb565b600060405180830381600087803b15801561168657600080fd5b505af115801561169a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526116c29190810190612bd6565b506040516370a0823160e01b815230600482015281906001600160a01b038416906370a082319060240160206040518083038186803b15801561170457600080fd5b505afa158015611718573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173c919061301e565b6117469190613520565b9050600061176985604001516001600160401b0316611764856122bc565b611fed565b90508082116117b65760405162461bcd60e51b81526020600482015260196024820152781c995b185e595c8819995948195e1959591cc8185b5bdd5b9d603a1b60448201526064016102d9565b60808501516001600160401b0316156118755760808501516003546000916117f6916001600160401b0390911690611764906001600160a01b03166122bc565b905080341461183c5760405162461bcd60e51b81526020600482015260126024820152710696e636f7272656374206761732064726f760741b60448201526064016102d9565b6040516001600160a01b0386169082156108fc029083906000818181858888f19350505050158015611872573d6000803e3d6000fd5b50505b8460600151801561189357506003546001600160a01b038481169116145b1561196957600354604051632e1a7d4d60e01b8152600481018490526001600160a01b0390911690632e1a7d4d90602401600060405180830381600087803b1580156118de57600080fd5b505af11580156118f2573d6000803e3d6000fd5b505060405133925083156108fc02915083906000818181858888f19350505050158015611923573d6000803e3d6000fd5b506001600160a01b0384166108fc61193b8385613520565b6040518115909202916000818181858888f19350505050158015611963573d6000803e3d6000fd5b5061199c565b61197d6001600160a01b03841633836124df565b61199c8461198b8385613520565b6001600160a01b03861691906124df565b8660a001516001600160401b03168760800151886060015161ffff167ff02867db6908ee5f81fd178573ae9385837f0a0a72553f8c08306759a7e0f00e60405160405180910390a45050505050505050565b6060816000015182602001518360400151846060015185608001518660a001518760c001518860e001518961010001518a61012001518b61014001518c61016001518d61018001518e6101a00151604051602001611a599e9d9c9b9a99989796959493929190613128565b6040516020818303038152906040529050919050565b6001546001600160a01b03163314611a995760405162461bcd60e51b81526004016102d990613240565b60028054911515600160a01b0260ff60a01b19909216919091179055565b60008060009054906101000a90046001600160a01b03166001600160a01b03166384acd1bb6040518163ffffffff1660e01b815260040160206040518083038186803b158015611b0657600080fd5b505afa158015611b1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3e9190612b0f565b6001600160a01b031663a9e11893836040518263ffffffff1660e01b8152600401611b6991906131fb565b60006040518083038186803b158015611b8157600080fd5b505afa158015611b95573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611bbd9190810190612eff565b6000805460e083015160405163ea63738d60e01b815293945091926001600160a01b039091169163ea63738d91611bf791906004016131fb565b60006040518083038186803b158015611c0f57600080fd5b505afa158015611c23573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611c4b9190810190612e3b565b9050600360149054906101000a900461ffff1661ffff16816060015161ffff1614611ca95760405162461bcd60e51b815260206004820152600e60248201526d3737ba103437b6b29031b430b4b760911b60448201526064016102d9565b6000611cb8826040015161248b565b6003549091506001600160a01b03808316911614611d035760405162461bcd60e51b81526020600482015260086024820152670dcdee840eecae8d60c31b60448201526064016102d9565b6000611d128360e00151610acb565b90508060600151611d525760405162461bcd60e51b815260206004820152600a60248201526906e6f7420756e777261760b41b60448201526064016102d9565b6000611d61826020015161248b565b9050816000015160ff1660021415611dbb57336001600160a01b03821614611dbb5760405162461bcd60e51b815260206004820152600d60248201526c1b9bdd081c9958da5c1a595b9d609a1b60448201526064016102d9565b6000546040516307211d7960e21b815247916001600160a01b031690631c8475e490611deb908a906004016131fb565b600060405180830381600087803b158015611e0557600080fd5b505af1158015611e19573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e419190810190612bd6565b50611e4c8147613520565b90506000611e6884604001516001600160401b03166012611fed565b9050808211611eb55760405162461bcd60e51b81526020600482015260196024820152781c995b185e595c8819995948195e1959591cc8185b5bdd5b9d603a1b60448201526064016102d9565b604051339082156108fc029083906000818181858888f19350505050158015611ee2573d6000803e3d6000fd5b506001600160a01b0383166108fc611efa8385613520565b6040518115909202916000818181858888f19350505050158015611f22573d6000803e3d6000fd5b508660a001516001600160401b03168760800151886060015161ffff167ff02867db6908ee5f81fd178573ae9385837f0a0a72553f8c08306759a7e0f00e60405160405180910390a45050505050505050565b6001546001600160a01b03163314611f9f5760405162461bcd60e51b81526004016102d990613240565b610d6b6001600160a01b03841682846124df565b600060088260ff161115611fe457611fcc600883613537565b611fd790600a613456565b611fe190846133f3565b92505b50815b92915050565b600060088260ff161115611fe457612006600883613537565b61201190600a613456565b611fe19084613501565b6060806040519050835180825260208201818101602087015b8183101561204c578051835260209283019201612034565b50855184518101855292509050808201602086015b81831015612079578051835260209283019201612061565b508651929092011591909101601f01601f191660405250905092915050565b60006120a58260016133b0565b835110156120eb5760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b60448201526064016102d9565b50016001015190565b60006121018260206133b0565b835110156121495760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b60448201526064016102d9565b50016020015190565b600061215f8260086133b0565b835110156121a65760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b60448201526064016102d9565b50016008015190565b6060816121bd81601f6133b0565b10156121fc5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b60448201526064016102d9565b61220682846133b0565b8451101561224a5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b60448201526064016102d9565b60608215801561226957604051915060008252602082016040526122b3565b6040519150601f8416801560200281840101858101878315602002848b0101015b818310156122a257805183526020928301920161228a565b5050858452601f01601f1916604052505b50949350505050565b60408051600481526024810182526020810180516001600160e01b031663313ce56760e01b179052905160009182916001600160a01b038516916122ff9161310c565b600060405180830381855afa9150503d806000811461233a576040519150601f19603f3d011682016040523d82523d6000602084013e61233f565b606091505b50915050808060200190518101906123579190613081565b9392505050565b6040516001600160a01b03808516602483015283166044820152606481018290526123c99085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261250f565b50505050565b604051636eb1769f60e11b81523060048201526001600160a01b0383811660248301526000919085169063dd62ed3e9060440160206040518083038186803b15801561241a57600080fd5b505afa15801561242e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612452919061301e565b90506123c98463095ea7b360e01b8561246b86866133b0565b6040516001600160a01b0390921660248301526044820152606401612392565b60006001600160a01b03198216156124db5760405162461bcd60e51b8152602060048201526013602482015272696e76616c69642045564d206164647265737360681b60448201526064016102d9565b5090565b6040516001600160a01b038316602482015260448101829052610d6b90849063a9059cbb60e01b90606401612392565b6000612564826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125e49092919063ffffffff16565b90508051600014806125855750808060200190518101906125859190612b88565b610d6b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102d9565b60606125f384846000856125fb565b949350505050565b60608247101561265c5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102d9565b600080866001600160a01b03168587604051612678919061310c565b60006040518083038185875af1925050503d80600081146126b5576040519150601f19603f3d011682016040523d82523d6000602084013e6126ba565b606091505b50915091506126cb878383876126d6565b979650505050505050565b6060831561274257825161273b576001600160a01b0385163b61273b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102d9565b50816125f3565b6125f383838151156127575781518083602001fd5b8060405162461bcd60e51b81526004016102d991906131fb565b600082601f830112612781578081fd5b815160206001600160401b0382111561279c5761279c61359c565b6127aa818360051b01613359565b80838252828201915082860187848660071b89010111156127c9578586fd5b855b8581101561283057608080838b0312156127e3578788fd5b6127eb6132c8565b835181528684015187820152604080850151612806816135fd565b90820152606084810151612819816135fd565b9082015285529385019391909101906001016127cb565b5090979650505050505050565b8035612848816135ca565b919050565b600082601f83011261285d578081fd5b813561287061286b82613389565b613359565b818152846020838601011115612884578283fd5b816020850160208301379081016020019190915292915050565b600082601f8301126128ae578081fd5b81516128bc61286b82613389565b8181528460208386010111156128d0578283fd5b6125f382602083016020870161355a565b600060c082840312156128f2578081fd5b60405160c081016001600160401b0382821081831117156129155761291561359c565b816040528293508435835260208501359150612930826135e8565b81602084015261294260408601612ac7565b60408401526129536060860161283d565b606084015261296460808601612ac7565b608084015260a085013591508082111561297d57600080fd5b5061298a8582860161284d565b60a0830152505092915050565b600060e082840312156129a8578081fd5b60405160e081018181106001600160401b03821117156129ca576129ca61359c565b6040528235815290508060208301356129e2816135d8565b806020830152506040830135604082015260608301356060820152612a0960808401612a9d565b608082015260a083013560a082015260c083013560c08201525092915050565b600060608284031215612a3a578081fd5b604051606081018181106001600160401b0382111715612a5c57612a5c61359c565b6040529050808235612a6d816135e8565b81526020830135612a7d816135e8565b60208201526040830135612a90816135e8565b6040919091015292915050565b8035612848816135d8565b8051612848816135d8565b805163ffffffff8116811461284857600080fd5b8035612848816135e8565b8051612848816135e8565b8035612848816135fd565b8051612848816135fd565b600060208284031215612b04578081fd5b8135612357816135b2565b600060208284031215612b20578081fd5b8151612357816135b2565b600080600060608486031215612b3f578182fd5b8335612b4a816135b2565b9250602084013591506040840135612b61816135b2565b809150509250925092565b600060208284031215612b7d578081fd5b8135612357816135ca565b600060208284031215612b99578081fd5b8151612357816135ca565b600060208284031215612bb5578081fd5b81356001600160401b03811115612bca578182fd5b6125f38482850161284d565b600060208284031215612be7578081fd5b81516001600160401b03811115612bfc578182fd5b6125f38482850161289e565b60008060008060006101a08688031215612c20578283fd5b612c2a8787612a29565b9450612c398760608801612997565b93506101408601359250610160860135612c52816135d8565b91506101808601356001600160401b03811115612c6d578182fd5b612c79888289016128e1565b9150509295509295909350565b60008060008060008060006101e0888a031215612ca1578485fd5b612cab8989612a29565b9650612cba8960608a01612997565b95506101408801359450610160880135612cd3816135d8565b93506101808801356001600160401b03811115612cee578283fd5b612cfa8a828b016128e1565b9350506101a0880135612d0c816135b2565b809250506101c0880135905092959891949750929550565b60006102008284031215612d36578081fd5b612d3e6132f0565b612d4783612add565b815260208301356020820152612d5f60408401612a9d565b604082015260608301356060820152612d7a60808401612a9d565b608082015260a083013560a0820152612d9560c08401612a9d565b60c0820152612da660e08401612ac7565b60e0820152610100612db9818501612ac7565b90820152610120612dcb848201612ac7565b90820152610140612ddd848201612ac7565b90820152610160612def848201612ac7565b90820152610180612e01848201612ac7565b908201526101a083810135908201526101c0612e1e81850161283d565b908201526101e0612e3084820161283d565b908201529392505050565b600060208284031215612e4c578081fd5b81516001600160401b0380821115612e62578283fd5b908301906101008286031215612e76578283fd5b612e7e613313565b612e8783612ae8565b81526020830151602082015260408301516040820152612ea960608401612aa8565b606082015260808301516080820152612ec460a08401612aa8565b60a082015260c083015160c082015260e083015182811115612ee4578485fd5b612ef08782860161289e565b60e08301525095945050505050565b600060208284031215612f10578081fd5b81516001600160401b0380821115612f26578283fd5b908301906101608286031215612f3a578283fd5b612f42613336565b612f4b83612ae8565b8152612f5960208401612ab3565b6020820152612f6a60408401612ab3565b6040820152612f7b60608401612aa8565b606082015260808301516080820152612f9660a08401612ad2565b60a0820152612fa760c08401612ae8565b60c082015260e083015182811115612fbd578485fd5b612fc98782860161289e565b60e083015250610100612fdd818501612ab3565b908201526101208381015183811115612ff4578586fd5b61300088828701612771565b91830191909152506101409283015192810192909252509392505050565b60006020828403121561302f578081fd5b5051919050565b60008060408385031215613048578182fd5b82359150602083013561305a816135b2565b809150509250929050565b600060208284031215613076578081fd5b8151612357816135e8565b600060208284031215613092578081fd5b8151612357816135fd565b600081518084526130b581602086016020860161355a565b601f01601f19169290920160200192915050565b60c01b6001600160c01b0319169052565b93151560f890811b855292151590921b6001840152600283015260c01b6001600160c01b0319166022820152602a0190565b6000825161311e81846020870161355a565b9190910192915050565b60ff60f81b8f60f81b1681528d6001820152613153602182018e60f01b6001600160f01b0319169052565b8b6023820152613172604382018c60f01b6001600160f01b0319169052565b896045820152613191606582018a60f01b6001600160f01b0319169052565b61319e60678201896130c9565b6131ab606f8201886130c9565b6131b860778201876130c9565b6131c5607f8201866130c9565b6131d260878201856130c9565b6131df608f8201846130c9565b609781019190915260b7019d9c50505050505050505050505050565b602081526000612357602083018461309d565b63ffffffff8416815260606020820152600061322d606083018561309d565b905060ff83166040830152949350505050565b6020808252600d908201526c37b7363c9033bab0b93234b0b760991b604082015260600190565b6020815260ff825116602082015260208201516040820152600060408301516001600160401b0380821660608501526060850151151560808501528060808601511660a0850152505060a083015160c0808401526125f360e084018261309d565b604051608081016001600160401b03811182821017156132ea576132ea61359c565b60405290565b60405161020081016001600160401b03811182821017156132ea576132ea61359c565b60405161010081016001600160401b03811182821017156132ea576132ea61359c565b60405161016081016001600160401b03811182821017156132ea576132ea61359c565b604051601f8201601f191681016001600160401b03811182821017156133815761338161359c565b604052919050565b60006001600160401b038211156133a2576133a261359c565b50601f01601f191660200190565b600082198211156133c3576133c3613586565b500190565b60006001600160401b038083168185168083038211156133ea576133ea613586565b01949350505050565b60008261340e57634e487b7160e01b81526012600452602481fd5b500490565b600181815b8085111561344e57816000190482111561343457613434613586565b8085161561344157918102915b93841c9390800290613418565b509250929050565b600061235760ff84168360008261346f57506001611fe7565b8161347c57506000611fe7565b8160018114613492576002811461349c576134b8565b6001915050611fe7565b60ff8411156134ad576134ad613586565b50506001821b611fe7565b5060208310610133831016604e8410600b84101617156134db575081810a611fe7565b6134e58383613413565b80600019048211156134f9576134f9613586565b029392505050565b600081600019048311821515161561351b5761351b613586565b500290565b60008282101561353257613532613586565b500390565b600060ff821660ff84168082101561355157613551613586565b90039392505050565b60005b8381101561357557818101518382015260200161355d565b838111156123c95750506000910152565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146135c757600080fd5b50565b80151581146135c757600080fd5b61ffff811681146135c757600080fd5b6001600160401b03811681146135c757600080fd5b60ff811681146135c757600080fdfea2646970667358221220fb05da5e75a4f4cc4a23155a53e47fd8cbfb6f0d1c8b2d48cf7c8177a78b64e364736f6c634300080400330000000000000000000000000b2402144bb366a632d14b83f244d2e0e21bd39c00000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab1
Deployed Bytecode
0x6080604052600436106100c65760003560e01c80636111ad251161007f578063b187bd2611610059578063b187bd2614610201578063bedb86fb1461022b578063c0e6d1691461024b578063df2ab5bb1461026b57600080fd5b80636111ad25146101ae5780639945e3d3146101c1578063acbb478c146101d457600080fd5b8063107c279f146100d25780631eb1cff0146100ff5780632fcb4f041461012a578063459656ee1461014c5780634df808ce14610161578063580094b71461018e57600080fd5b366100cd57005b600080fd5b3480156100de57600080fd5b506003546040516001600160a01b0390911681526020015b60405180910390f35b61011261010d366004612c08565b61028b565b6040516001600160401b0390911681526020016100f6565b34801561013657600080fd5b5061014a610145366004612af3565b610a0c565b005b34801561015857600080fd5b5061014a610a58565b34801561016d57600080fd5b5061018161017c366004612ba4565b610acb565b6040516100f69190613267565b34801561019a57600080fd5b5061014a6101a9366004613036565b610cb5565b6101126101bc366004612c86565b610d70565b61014a6101cf366004612ba4565b6112e5565b3480156101e057600080fd5b506101f46101ef366004612d24565b6119ee565b6040516100f691906131fb565b34801561020d57600080fd5b50600254600160a01b900460ff1660405190151581526020016100f6565b34801561023757600080fd5b5061014a610246366004612b6c565b611a6f565b34801561025757600080fd5b5061014a610266366004612ba4565b611ab7565b34801561027757600080fd5b5061014a610286366004612b2b565b611f75565b600254600090600160a01b900460ff16156102e25760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064015b60405180910390fd5b81514211156103255760405162461bcd60e51b815260206004820152600f60248201526e191958591b1a5b99481c185cdcd959608a1b60448201526064016102d9565b8160600151156103815760808201516001600160401b0316156103815760405162461bcd60e51b815260206004820152601460248201527319d85cc8191c9bdc081b9bdd08185b1b1bddd95960621b60448201526064016102d9565b60008060009054906101000a90046001600160a01b03166001600160a01b03166384acd1bb6040518163ffffffff1660e01b815260040160206040518083038186803b1580156103d057600080fd5b505afa1580156103e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104089190612b0f565b6001600160a01b0316631a90a2196040518163ffffffff1660e01b815260040160206040518083038186803b15801561044057600080fd5b505afa158015610454573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610478919061301e565b9050600061049b61048a836002613501565b6104949034613520565b6012611fb3565b905080886040015189600001516104b291906133c8565b6001600160401b0316106104fd5760405162461bcd60e51b81526020600482015260126024820152711999595cc8195e18d9595908185b5bdd5b9d60721b60448201526064016102d9565b83604001516001600160401b031688602001516001600160401b0316106105665760405162461bcd60e51b815260206004820152601d60248201527f72656465656d206665652065786365656473206d696e206f757470757400000060448201526064016102d9565b6000610573826012611fed565b60008054919250906001600160a01b0316639981509f61059386856133b0565b60208c01518c5160405160e085901b6001600160e01b031916815261ffff9092166004830152602482015260006044820181905260648201526084016020604051808303818588803b1580156105e857600080fd5b505af11580156105fc573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906106219190613065565b9050600082610631866002613501565b61063b9034613520565b6106459190613520565b9050801561067c57604051339082156108fc029083906000818181858888f1935050505015801561067a573d6000803e3d6000fd5b505b600060405180610200016040528060008a60a00151511161069e5760016106a1565b60025b60ff1681526020018b81526020018a61ffff1681526020018c6060015181526020018c6080015161ffff1681526020018c60c001518152602001600360149054906101000a900461ffff1661ffff168152602001846001600160401b0316815260200189604001516001600160401b0316815260200189602001516001600160401b031681526020018d600001516001600160401b031681526020018d602001516001600160401b031681526020018d604001516001600160401b031681526020018c60400151815260200189606001511515815260200160011515815250905060006107ce826101c00151836101e001518e60a001518c608001516040516020016107b094939291906130da565b6040516020818303038152906040526107c8846119ee565b9061201b565b9050816000015160ff1660021415610871578b6020015161ffff16826080015161ffff161461083f5760405162461bcd60e51b815260206004820152601d60248201527f696e76616c696420636861696e2069642077697468207061796c6f616400000060448201526064016102d9565b61086e8960a00151604051602001610857919061310c565b60408051601f19818403018152919052829061201b565b90505b60008054906101000a90046001600160a01b03166001600160a01b03166384acd1bb6040518163ffffffff1660e01b815260040160206040518083038186803b1580156108bd57600080fd5b505afa1580156108d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f59190612b0f565b6001600160a01b031663b19a437e8860008460008054906101000a90046001600160a01b03166001600160a01b031663739fc8d16040518163ffffffff1660e01b815260040160206040518083038186803b15801561095357600080fd5b505afa158015610967573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098b9190613081565b6040518563ffffffff1660e01b81526004016109a99392919061320e565b6020604051808303818588803b1580156109c257600080fd5b505af11580156109d6573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109fb9190613065565b9d9c50505050505050505050505050565b6001546001600160a01b03163314610a365760405162461bcd60e51b81526004016102d990613240565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b03163314610aa75760405162461bcd60e51b815260206004820152601260248201527137b7363c903732bc3a1033bab0b93234b0b760711b60448201526064016102d9565b600254600180546001600160a01b0319166001600160a01b03909216919091179055565b6040805160c08101825260008082526020820181905291810182905260608082018390526080820183905260a082015290610b068382612098565b60ff168252610b166001826133b0565b9050816000015160ff1660011480610b355750816000015160ff166002145b610b815760405162461bcd60e51b815260206004820152601860248201527f7061796c6f6164206964206e6f7420737570706f72746564000000000000000060448201526064016102d9565b610b8b83826120f4565b602080840191909152610b9e90826133b0565b9050610baa8382612152565b6001600160401b03166040830152610bc36008826133b0565b8351909150600090849083908110610beb57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b03191614156060830152610c0c6001826133b0565b9050610c188382612152565b6001600160401b03166080830152610c316008826133b0565b9050816000015160ff1660021415610c6657610c5c81828551610c549190613520565b8591906121af565b60a0830152610caf565b82518114610caf5760405162461bcd60e51b81526020600482015260166024820152750d2dcecc2d8d2c840e0c2f2d8dec2c840d8cadccee8d60531b60448201526064016102d9565b50919050565b6001546001600160a01b03163314610cdf5760405162461bcd60e51b81526004016102d990613240565b6001600160a01b038116610d355760405162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f20616464726573730000000060448201526064016102d9565b6040516001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610d6b573d6000803e3d6000fd5b505050565b600254600090600160a01b900460ff1615610dc25760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016102d9565b8351421115610e055760405162461bcd60e51b815260206004820152600f60248201526e191958591b1a5b99481c185cdcd959608a1b60448201526064016102d9565b836060015115610e615760808401516001600160401b031615610e615760405162461bcd60e51b815260206004820152601460248201527319d85cc8191c9bdc081b9bdd08185b1b1bddd95960621b60448201526064016102d9565b6000610e6c846122bc565b90506000610e7a8483611fb3565b9050808a604001518b60000151610e9191906133c8565b6001600160401b031610610edc5760405162461bcd60e51b81526020600482015260126024820152711999595cc8195e18d9595908185b5bdd5b9d60721b60448201526064016102d9565b85604001516001600160401b03168a602001516001600160401b031610610f455760405162461bcd60e51b815260206004820152601d60248201527f72656465656d206665652065786365656473206d696e206f757470757400000060448201526064016102d9565b610f4f8183611fed565b9350610f666001600160a01b03861633308761235e565b600054610f80906001600160a01b038781169116866123cf565b600080546001600160a01b0316630f5287b0610f9d6002346133f3565b60208d01518d5160405160e085901b6001600160e01b03191681526001600160a01b038c166004820152602481018b905261ffff9092166044830152606482015260006084820181905260a482015260c4016020604051808303818588803b15801561100857600080fd5b505af115801561101c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110419190613065565b9050600060405180610200016040528060008a60a001515111611065576001611068565b60025b60ff1681526020018b81526020018a61ffff1681526020018c6060015181526020018c6080015161ffff1681526020018c60c001518152602001600360149054906101000a900461ffff1661ffff168152602001836001600160401b0316815260200189604001516001600160401b0316815260200189602001516001600160401b031681526020018d600001516001600160401b031681526020018d602001516001600160401b031681526020018d604001516001600160401b031681526020018c6040015181526020018960600151151581526020016000151581525090506000611177826101c00151836101e001518e60a001518c608001516040516020016107b094939291906130da565b9050816000015160ff1660021415611203578b6020015161ffff16826080015161ffff16146111e85760405162461bcd60e51b815260206004820152601d60248201527f696e76616c696420636861696e2069642077697468207061796c6f616400000060448201526064016102d9565b6112008960a00151604051602001610857919061310c565b90505b60008054906101000a90046001600160a01b03166001600160a01b03166384acd1bb6040518163ffffffff1660e01b815260040160206040518083038186803b15801561124f57600080fd5b505afa158015611263573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112879190612b0f565b6001600160a01b031663b19a437e6112a06002346133f3565b600080546040805163739fc8d160e01b8152905187926001600160a01b03169163739fc8d1916004808301926020929190829003018186803b15801561095357600080fd5b60008060009054906101000a90046001600160a01b03166001600160a01b03166384acd1bb6040518163ffffffff1660e01b815260040160206040518083038186803b15801561133457600080fd5b505afa158015611348573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136c9190612b0f565b6001600160a01b031663a9e11893836040518263ffffffff1660e01b815260040161139791906131fb565b60006040518083038186803b1580156113af57600080fd5b505afa1580156113c3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113eb9190810190612eff565b6000805460e083015160405163ea63738d60e01b815293945091926001600160a01b039091169163ea63738d9161142591906004016131fb565b60006040518083038186803b15801561143d57600080fd5b505afa158015611451573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114799190810190612e3b565b9050600061148a8260e00151610acb565b9050600061149b826020015161248b565b9050816000015160ff16600214156114f557336001600160a01b038216146114f55760405162461bcd60e51b815260206004820152600d60248201526c1b9bdd081c9958da5c1a595b9d609a1b60448201526064016102d9565b6000600360149054906101000a900461ffff1661ffff16846060015161ffff16141561152f57611528846040015161248b565b90506115c1565b60005460608501516040808701519051630ff8f14360e11b815261ffff909216600483015260248201526001600160a01b0390911690631ff1e2869060440160206040518083038186803b15801561158657600080fd5b505afa15801561159a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115be9190612b0f565b90505b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b15801561160357600080fd5b505afa158015611617573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163b919061301e565b60005460405163c3f511c160e01b81529192506001600160a01b03169063c3f511c19061166c908a906004016131fb565b600060405180830381600087803b15801561168657600080fd5b505af115801561169a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526116c29190810190612bd6565b506040516370a0823160e01b815230600482015281906001600160a01b038416906370a082319060240160206040518083038186803b15801561170457600080fd5b505afa158015611718573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173c919061301e565b6117469190613520565b9050600061176985604001516001600160401b0316611764856122bc565b611fed565b90508082116117b65760405162461bcd60e51b81526020600482015260196024820152781c995b185e595c8819995948195e1959591cc8185b5bdd5b9d603a1b60448201526064016102d9565b60808501516001600160401b0316156118755760808501516003546000916117f6916001600160401b0390911690611764906001600160a01b03166122bc565b905080341461183c5760405162461bcd60e51b81526020600482015260126024820152710696e636f7272656374206761732064726f760741b60448201526064016102d9565b6040516001600160a01b0386169082156108fc029083906000818181858888f19350505050158015611872573d6000803e3d6000fd5b50505b8460600151801561189357506003546001600160a01b038481169116145b1561196957600354604051632e1a7d4d60e01b8152600481018490526001600160a01b0390911690632e1a7d4d90602401600060405180830381600087803b1580156118de57600080fd5b505af11580156118f2573d6000803e3d6000fd5b505060405133925083156108fc02915083906000818181858888f19350505050158015611923573d6000803e3d6000fd5b506001600160a01b0384166108fc61193b8385613520565b6040518115909202916000818181858888f19350505050158015611963573d6000803e3d6000fd5b5061199c565b61197d6001600160a01b03841633836124df565b61199c8461198b8385613520565b6001600160a01b03861691906124df565b8660a001516001600160401b03168760800151886060015161ffff167ff02867db6908ee5f81fd178573ae9385837f0a0a72553f8c08306759a7e0f00e60405160405180910390a45050505050505050565b6060816000015182602001518360400151846060015185608001518660a001518760c001518860e001518961010001518a61012001518b61014001518c61016001518d61018001518e6101a00151604051602001611a599e9d9c9b9a99989796959493929190613128565b6040516020818303038152906040529050919050565b6001546001600160a01b03163314611a995760405162461bcd60e51b81526004016102d990613240565b60028054911515600160a01b0260ff60a01b19909216919091179055565b60008060009054906101000a90046001600160a01b03166001600160a01b03166384acd1bb6040518163ffffffff1660e01b815260040160206040518083038186803b158015611b0657600080fd5b505afa158015611b1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3e9190612b0f565b6001600160a01b031663a9e11893836040518263ffffffff1660e01b8152600401611b6991906131fb565b60006040518083038186803b158015611b8157600080fd5b505afa158015611b95573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611bbd9190810190612eff565b6000805460e083015160405163ea63738d60e01b815293945091926001600160a01b039091169163ea63738d91611bf791906004016131fb565b60006040518083038186803b158015611c0f57600080fd5b505afa158015611c23573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611c4b9190810190612e3b565b9050600360149054906101000a900461ffff1661ffff16816060015161ffff1614611ca95760405162461bcd60e51b815260206004820152600e60248201526d3737ba103437b6b29031b430b4b760911b60448201526064016102d9565b6000611cb8826040015161248b565b6003549091506001600160a01b03808316911614611d035760405162461bcd60e51b81526020600482015260086024820152670dcdee840eecae8d60c31b60448201526064016102d9565b6000611d128360e00151610acb565b90508060600151611d525760405162461bcd60e51b815260206004820152600a60248201526906e6f7420756e777261760b41b60448201526064016102d9565b6000611d61826020015161248b565b9050816000015160ff1660021415611dbb57336001600160a01b03821614611dbb5760405162461bcd60e51b815260206004820152600d60248201526c1b9bdd081c9958da5c1a595b9d609a1b60448201526064016102d9565b6000546040516307211d7960e21b815247916001600160a01b031690631c8475e490611deb908a906004016131fb565b600060405180830381600087803b158015611e0557600080fd5b505af1158015611e19573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e419190810190612bd6565b50611e4c8147613520565b90506000611e6884604001516001600160401b03166012611fed565b9050808211611eb55760405162461bcd60e51b81526020600482015260196024820152781c995b185e595c8819995948195e1959591cc8185b5bdd5b9d603a1b60448201526064016102d9565b604051339082156108fc029083906000818181858888f19350505050158015611ee2573d6000803e3d6000fd5b506001600160a01b0383166108fc611efa8385613520565b6040518115909202916000818181858888f19350505050158015611f22573d6000803e3d6000fd5b508660a001516001600160401b03168760800151886060015161ffff167ff02867db6908ee5f81fd178573ae9385837f0a0a72553f8c08306759a7e0f00e60405160405180910390a45050505050505050565b6001546001600160a01b03163314611f9f5760405162461bcd60e51b81526004016102d990613240565b610d6b6001600160a01b03841682846124df565b600060088260ff161115611fe457611fcc600883613537565b611fd790600a613456565b611fe190846133f3565b92505b50815b92915050565b600060088260ff161115611fe457612006600883613537565b61201190600a613456565b611fe19084613501565b6060806040519050835180825260208201818101602087015b8183101561204c578051835260209283019201612034565b50855184518101855292509050808201602086015b81831015612079578051835260209283019201612061565b508651929092011591909101601f01601f191660405250905092915050565b60006120a58260016133b0565b835110156120eb5760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b60448201526064016102d9565b50016001015190565b60006121018260206133b0565b835110156121495760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b60448201526064016102d9565b50016020015190565b600061215f8260086133b0565b835110156121a65760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b60448201526064016102d9565b50016008015190565b6060816121bd81601f6133b0565b10156121fc5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b60448201526064016102d9565b61220682846133b0565b8451101561224a5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b60448201526064016102d9565b60608215801561226957604051915060008252602082016040526122b3565b6040519150601f8416801560200281840101858101878315602002848b0101015b818310156122a257805183526020928301920161228a565b5050858452601f01601f1916604052505b50949350505050565b60408051600481526024810182526020810180516001600160e01b031663313ce56760e01b179052905160009182916001600160a01b038516916122ff9161310c565b600060405180830381855afa9150503d806000811461233a576040519150601f19603f3d011682016040523d82523d6000602084013e61233f565b606091505b50915050808060200190518101906123579190613081565b9392505050565b6040516001600160a01b03808516602483015283166044820152606481018290526123c99085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261250f565b50505050565b604051636eb1769f60e11b81523060048201526001600160a01b0383811660248301526000919085169063dd62ed3e9060440160206040518083038186803b15801561241a57600080fd5b505afa15801561242e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612452919061301e565b90506123c98463095ea7b360e01b8561246b86866133b0565b6040516001600160a01b0390921660248301526044820152606401612392565b60006001600160a01b03198216156124db5760405162461bcd60e51b8152602060048201526013602482015272696e76616c69642045564d206164647265737360681b60448201526064016102d9565b5090565b6040516001600160a01b038316602482015260448101829052610d6b90849063a9059cbb60e01b90606401612392565b6000612564826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125e49092919063ffffffff16565b90508051600014806125855750808060200190518101906125859190612b88565b610d6b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102d9565b60606125f384846000856125fb565b949350505050565b60608247101561265c5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102d9565b600080866001600160a01b03168587604051612678919061310c565b60006040518083038185875af1925050503d80600081146126b5576040519150601f19603f3d011682016040523d82523d6000602084013e6126ba565b606091505b50915091506126cb878383876126d6565b979650505050505050565b6060831561274257825161273b576001600160a01b0385163b61273b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102d9565b50816125f3565b6125f383838151156127575781518083602001fd5b8060405162461bcd60e51b81526004016102d991906131fb565b600082601f830112612781578081fd5b815160206001600160401b0382111561279c5761279c61359c565b6127aa818360051b01613359565b80838252828201915082860187848660071b89010111156127c9578586fd5b855b8581101561283057608080838b0312156127e3578788fd5b6127eb6132c8565b835181528684015187820152604080850151612806816135fd565b90820152606084810151612819816135fd565b9082015285529385019391909101906001016127cb565b5090979650505050505050565b8035612848816135ca565b919050565b600082601f83011261285d578081fd5b813561287061286b82613389565b613359565b818152846020838601011115612884578283fd5b816020850160208301379081016020019190915292915050565b600082601f8301126128ae578081fd5b81516128bc61286b82613389565b8181528460208386010111156128d0578283fd5b6125f382602083016020870161355a565b600060c082840312156128f2578081fd5b60405160c081016001600160401b0382821081831117156129155761291561359c565b816040528293508435835260208501359150612930826135e8565b81602084015261294260408601612ac7565b60408401526129536060860161283d565b606084015261296460808601612ac7565b608084015260a085013591508082111561297d57600080fd5b5061298a8582860161284d565b60a0830152505092915050565b600060e082840312156129a8578081fd5b60405160e081018181106001600160401b03821117156129ca576129ca61359c565b6040528235815290508060208301356129e2816135d8565b806020830152506040830135604082015260608301356060820152612a0960808401612a9d565b608082015260a083013560a082015260c083013560c08201525092915050565b600060608284031215612a3a578081fd5b604051606081018181106001600160401b0382111715612a5c57612a5c61359c565b6040529050808235612a6d816135e8565b81526020830135612a7d816135e8565b60208201526040830135612a90816135e8565b6040919091015292915050565b8035612848816135d8565b8051612848816135d8565b805163ffffffff8116811461284857600080fd5b8035612848816135e8565b8051612848816135e8565b8035612848816135fd565b8051612848816135fd565b600060208284031215612b04578081fd5b8135612357816135b2565b600060208284031215612b20578081fd5b8151612357816135b2565b600080600060608486031215612b3f578182fd5b8335612b4a816135b2565b9250602084013591506040840135612b61816135b2565b809150509250925092565b600060208284031215612b7d578081fd5b8135612357816135ca565b600060208284031215612b99578081fd5b8151612357816135ca565b600060208284031215612bb5578081fd5b81356001600160401b03811115612bca578182fd5b6125f38482850161284d565b600060208284031215612be7578081fd5b81516001600160401b03811115612bfc578182fd5b6125f38482850161289e565b60008060008060006101a08688031215612c20578283fd5b612c2a8787612a29565b9450612c398760608801612997565b93506101408601359250610160860135612c52816135d8565b91506101808601356001600160401b03811115612c6d578182fd5b612c79888289016128e1565b9150509295509295909350565b60008060008060008060006101e0888a031215612ca1578485fd5b612cab8989612a29565b9650612cba8960608a01612997565b95506101408801359450610160880135612cd3816135d8565b93506101808801356001600160401b03811115612cee578283fd5b612cfa8a828b016128e1565b9350506101a0880135612d0c816135b2565b809250506101c0880135905092959891949750929550565b60006102008284031215612d36578081fd5b612d3e6132f0565b612d4783612add565b815260208301356020820152612d5f60408401612a9d565b604082015260608301356060820152612d7a60808401612a9d565b608082015260a083013560a0820152612d9560c08401612a9d565b60c0820152612da660e08401612ac7565b60e0820152610100612db9818501612ac7565b90820152610120612dcb848201612ac7565b90820152610140612ddd848201612ac7565b90820152610160612def848201612ac7565b90820152610180612e01848201612ac7565b908201526101a083810135908201526101c0612e1e81850161283d565b908201526101e0612e3084820161283d565b908201529392505050565b600060208284031215612e4c578081fd5b81516001600160401b0380821115612e62578283fd5b908301906101008286031215612e76578283fd5b612e7e613313565b612e8783612ae8565b81526020830151602082015260408301516040820152612ea960608401612aa8565b606082015260808301516080820152612ec460a08401612aa8565b60a082015260c083015160c082015260e083015182811115612ee4578485fd5b612ef08782860161289e565b60e08301525095945050505050565b600060208284031215612f10578081fd5b81516001600160401b0380821115612f26578283fd5b908301906101608286031215612f3a578283fd5b612f42613336565b612f4b83612ae8565b8152612f5960208401612ab3565b6020820152612f6a60408401612ab3565b6040820152612f7b60608401612aa8565b606082015260808301516080820152612f9660a08401612ad2565b60a0820152612fa760c08401612ae8565b60c082015260e083015182811115612fbd578485fd5b612fc98782860161289e565b60e083015250610100612fdd818501612ab3565b908201526101208381015183811115612ff4578586fd5b61300088828701612771565b91830191909152506101409283015192810192909252509392505050565b60006020828403121561302f578081fd5b5051919050565b60008060408385031215613048578182fd5b82359150602083013561305a816135b2565b809150509250929050565b600060208284031215613076578081fd5b8151612357816135e8565b600060208284031215613092578081fd5b8151612357816135fd565b600081518084526130b581602086016020860161355a565b601f01601f19169290920160200192915050565b60c01b6001600160c01b0319169052565b93151560f890811b855292151590921b6001840152600283015260c01b6001600160c01b0319166022820152602a0190565b6000825161311e81846020870161355a565b9190910192915050565b60ff60f81b8f60f81b1681528d6001820152613153602182018e60f01b6001600160f01b0319169052565b8b6023820152613172604382018c60f01b6001600160f01b0319169052565b896045820152613191606582018a60f01b6001600160f01b0319169052565b61319e60678201896130c9565b6131ab606f8201886130c9565b6131b860778201876130c9565b6131c5607f8201866130c9565b6131d260878201856130c9565b6131df608f8201846130c9565b609781019190915260b7019d9c50505050505050505050505050565b602081526000612357602083018461309d565b63ffffffff8416815260606020820152600061322d606083018561309d565b905060ff83166040830152949350505050565b6020808252600d908201526c37b7363c9033bab0b93234b0b760991b604082015260600190565b6020815260ff825116602082015260208201516040820152600060408301516001600160401b0380821660608501526060850151151560808501528060808601511660a0850152505060a083015160c0808401526125f360e084018261309d565b604051608081016001600160401b03811182821017156132ea576132ea61359c565b60405290565b60405161020081016001600160401b03811182821017156132ea576132ea61359c565b60405161010081016001600160401b03811182821017156132ea576132ea61359c565b60405161016081016001600160401b03811182821017156132ea576132ea61359c565b604051601f8201601f191681016001600160401b03811182821017156133815761338161359c565b604052919050565b60006001600160401b038211156133a2576133a261359c565b50601f01601f191660200190565b600082198211156133c3576133c3613586565b500190565b60006001600160401b038083168185168083038211156133ea576133ea613586565b01949350505050565b60008261340e57634e487b7160e01b81526012600452602481fd5b500490565b600181815b8085111561344e57816000190482111561343457613434613586565b8085161561344157918102915b93841c9390800290613418565b509250929050565b600061235760ff84168360008261346f57506001611fe7565b8161347c57506000611fe7565b8160018114613492576002811461349c576134b8565b6001915050611fe7565b60ff8411156134ad576134ad613586565b50506001821b611fe7565b5060208310610133831016604e8410600b84101617156134db575081810a611fe7565b6134e58383613413565b80600019048211156134f9576134f9613586565b029392505050565b600081600019048311821515161561351b5761351b613586565b500290565b60008282101561353257613532613586565b500390565b600060ff821660ff84168082101561355157613551613586565b90039392505050565b60005b8381101561357557818101518382015260200161355d565b838111156123c95750506000910152565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146135c757600080fd5b50565b80151581146135c757600080fd5b61ffff811681146135c757600080fd5b6001600160401b03811681146135c757600080fd5b60ff811681146135c757600080fdfea2646970667358221220fb05da5e75a4f4cc4a23155a53e47fd8cbfb6f0d1c8b2d48cf7c8177a78b64e364736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000b2402144bb366a632d14b83f244d2e0e21bd39c00000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab1
-----Decoded View---------------
Arg [0] : _tokenBridge (address): 0x0b2402144Bb366A632D14B83F244D2e0e21bD39c
Arg [1] : _weth (address): 0x82aF49447D8a07e3bd95BD0d56f35241523fBab1
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000b2402144bb366a632d14b83f244d2e0e21bd39c
Arg [1] : 00000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab1
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$1.66
Net Worth in ETH
0.000728
Token Allocations
ETH
100.00%
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| BASE | 100.00% | $2,274.86 | 0.00072867 | $1.66 |
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.