BscScan - Sponsored slots available. Book your slot here!
Overview
BNB Balance
0 BNB
BNB Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 76 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Light | 22367287 | 786 days ago | IN | 0 BNB | 0.00052353 | ||||
Light | 22367253 | 786 days ago | IN | 0 BNB | 0.00052359 | ||||
Light | 22353237 | 787 days ago | IN | 0 BNB | 0.00051055 | ||||
Light | 22353236 | 787 days ago | IN | 0 BNB | 0.00051049 | ||||
Light | 22353227 | 787 days ago | IN | 0 BNB | 0.00051049 | ||||
Light | 22353194 | 787 days ago | IN | 0 BNB | 0.00052359 | ||||
Light | 22353194 | 787 days ago | IN | 0 BNB | 0.00052341 | ||||
Light | 22353192 | 787 days ago | IN | 0 BNB | 0.00052335 | ||||
Light | 22329378 | 788 days ago | IN | 0 BNB | 0.00058549 | ||||
Light | 22325196 | 788 days ago | IN | 0 BNB | 0.00059853 | ||||
Light | 22290060 | 789 days ago | IN | 0 BNB | 0.00012526 | ||||
Light | 22233962 | 791 days ago | IN | 0 BNB | 0.00051043 | ||||
Light | 22233962 | 791 days ago | IN | 0 BNB | 0.00058549 | ||||
Light | 22170257 | 793 days ago | IN | 0 BNB | 0.00020439 | ||||
Light | 22170227 | 793 days ago | IN | 0 BNB | 0.00052353 | ||||
Light | 22162586 | 794 days ago | IN | 0 BNB | 0.00059853 | ||||
Light | 22143235 | 794 days ago | IN | 0 BNB | 0.00020695 | ||||
Light | 22143233 | 794 days ago | IN | 0 BNB | 0.00012526 | ||||
Light | 22143214 | 794 days ago | IN | 0 BNB | 0.00051055 | ||||
Light | 22143067 | 794 days ago | IN | 0 BNB | 0.00012526 | ||||
Light | 22143065 | 794 days ago | IN | 0 BNB | 0.00012526 | ||||
Light | 22143063 | 794 days ago | IN | 0 BNB | 0.00012514 | ||||
Light | 22143060 | 794 days ago | IN | 0 BNB | 0.0001252 | ||||
Light | 22143049 | 794 days ago | IN | 0 BNB | 0.00051055 | ||||
Light | 22143044 | 794 days ago | IN | 0 BNB | 0.00015939 |
Loading...
Loading
Contract Name:
Swap
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
Yes with 999999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* solhint-disable var-name-mixedcase */ pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "./interfaces/ISwap.sol"; /** * @title AirSwap: Atomic Token Swap * @notice https://www.airswap.io/ */ contract Swap is ISwap, Ownable { using SafeERC20 for IERC20; bytes32 public constant DOMAIN_TYPEHASH = keccak256( abi.encodePacked( "EIP712Domain(", "string name,", "string version,", "uint256 chainId,", "address verifyingContract", ")" ) ); bytes32 public constant ORDER_TYPEHASH = keccak256( abi.encodePacked( "Order(", "uint256 nonce,", "uint256 expiry,", "address signerWallet,", "address signerToken,", "uint256 signerAmount,", "uint256 protocolFee,", "address senderWallet,", "address senderToken,", "uint256 senderAmount", ")" ) ); bytes32 public constant DOMAIN_NAME = keccak256("SWAP"); bytes32 public constant DOMAIN_VERSION = keccak256("3"); uint256 public immutable DOMAIN_CHAIN_ID; bytes32 public immutable DOMAIN_SEPARATOR; uint256 internal constant MAX_PERCENTAGE = 100; uint256 internal constant MAX_SCALE = 77; uint256 internal constant MAX_ERROR_COUNT = 6; uint256 public constant FEE_DIVISOR = 10000; /** * @notice Double mapping of signers to nonce groups to nonce states * @dev The nonce group is computed as nonce / 256, so each group of 256 sequential nonces uses the same key * @dev The nonce states are encoded as 256 bits, for each nonce in the group 0 means available and 1 means used */ mapping(address => mapping(uint256 => uint256)) internal _nonceGroups; mapping(address => address) public override authorized; uint256 public protocolFee; uint256 public protocolFeeLight; address public protocolFeeWallet; uint256 public rebateScale; uint256 public rebateMax; address public staking; constructor( uint256 _protocolFee, uint256 _protocolFeeLight, address _protocolFeeWallet, uint256 _rebateScale, uint256 _rebateMax, address _staking ) { require(_protocolFee < FEE_DIVISOR, "INVALID_FEE"); require(_protocolFeeLight < FEE_DIVISOR, "INVALID_FEE"); require(_protocolFeeWallet != address(0), "INVALID_FEE_WALLET"); require(_rebateScale <= MAX_SCALE, "SCALE_TOO_HIGH"); require(_rebateMax <= MAX_PERCENTAGE, "MAX_TOO_HIGH"); require(_staking != address(0), "INVALID_STAKING"); uint256 currentChainId = getChainId(); DOMAIN_CHAIN_ID = currentChainId; DOMAIN_SEPARATOR = keccak256( abi.encode( DOMAIN_TYPEHASH, DOMAIN_NAME, DOMAIN_VERSION, currentChainId, this ) ); protocolFee = _protocolFee; protocolFeeLight = _protocolFeeLight; protocolFeeWallet = _protocolFeeWallet; rebateScale = _rebateScale; rebateMax = _rebateMax; staking = _staking; } /** * @notice Atomic ERC20 Swap * @param nonce uint256 Unique and should be sequential * @param expiry uint256 Expiry in seconds since 1 January 1970 * @param signerWallet address Wallet of the signer * @param signerToken address ERC20 token transferred from the signer * @param signerAmount uint256 Amount transferred from the signer * @param senderToken address ERC20 token transferred from the sender * @param senderAmount uint256 Amount transferred from the sender * @param v uint8 "v" value of the ECDSA signature * @param r bytes32 "r" value of the ECDSA signature * @param s bytes32 "s" value of the ECDSA signature */ function swap( address recipient, uint256 nonce, uint256 expiry, address signerWallet, address signerToken, uint256 signerAmount, address senderToken, uint256 senderAmount, uint8 v, bytes32 r, bytes32 s ) external override { // Ensure the order is valid _checkValidOrder( nonce, expiry, signerWallet, signerToken, signerAmount, senderToken, senderAmount, v, r, s ); // Transfer token from sender to signer IERC20(senderToken).safeTransferFrom( msg.sender, signerWallet, senderAmount ); // Transfer token from signer to recipient IERC20(signerToken).safeTransferFrom(signerWallet, recipient, signerAmount); // Calculate and transfer protocol fee and any rebate _transferProtocolFee(signerToken, signerWallet, signerAmount); // Emit a Swap event emit Swap( nonce, block.timestamp, signerWallet, signerToken, signerAmount, protocolFee, msg.sender, senderToken, senderAmount ); } /** * @notice Swap Atomic ERC20 Swap (Low Gas Usage) * @param nonce uint256 Unique and should be sequential * @param expiry uint256 Expiry in seconds since 1 January 1970 * @param signerWallet address Wallet of the signer * @param signerToken address ERC20 token transferred from the signer * @param signerAmount uint256 Amount transferred from the signer * @param senderToken address ERC20 token transferred from the sender * @param senderAmount uint256 Amount transferred from the sender * @param v uint8 "v" value of the ECDSA signature * @param r bytes32 "r" value of the ECDSA signature * @param s bytes32 "s" value of the ECDSA signature */ function light( uint256 nonce, uint256 expiry, address signerWallet, address signerToken, uint256 signerAmount, address senderToken, uint256 senderAmount, uint8 v, bytes32 r, bytes32 s ) external override { require(DOMAIN_CHAIN_ID == getChainId(), "CHAIN_ID_CHANGED"); // Ensure the expiry is not passed require(expiry > block.timestamp, "EXPIRY_PASSED"); // Recover the signatory from the hash and signature address signatory = ecrecover( keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR, keccak256( abi.encode( ORDER_TYPEHASH, nonce, expiry, signerWallet, signerToken, signerAmount, protocolFeeLight, msg.sender, senderToken, senderAmount ) ) ) ), v, r, s ); // Ensure the signatory is not null require(signatory != address(0), "SIGNATURE_INVALID"); // Ensure the nonce is not yet used and if not mark it used require(_markNonceAsUsed(signatory, nonce), "NONCE_ALREADY_USED"); // Ensure the signatory is authorized by the signer wallet if (signerWallet != signatory) { require(authorized[signerWallet] == signatory, "UNAUTHORIZED"); } // Transfer token from sender to signer IERC20(senderToken).safeTransferFrom( msg.sender, signerWallet, senderAmount ); // Transfer token from signer to recipient IERC20(signerToken).safeTransferFrom( signerWallet, msg.sender, signerAmount ); // Transfer fee from signer to feeWallet IERC20(signerToken).safeTransferFrom( signerWallet, protocolFeeWallet, (signerAmount * protocolFeeLight) / FEE_DIVISOR ); // Emit a Swap event emit Swap( nonce, block.timestamp, signerWallet, signerToken, signerAmount, protocolFeeLight, msg.sender, senderToken, senderAmount ); } /** * @notice Sender Buys an NFT (ERC721) * @param nonce uint256 Unique and should be sequential * @param expiry uint256 Expiry in seconds since 1 January 1970 * @param signerWallet address Wallet of the signer * @param signerToken address ERC721 token transferred from the signer * @param signerID uint256 Token ID transferred from the signer * @param senderToken address ERC20 token transferred from the sender * @param senderAmount uint256 Amount transferred from the sender * @param v uint8 "v" value of the ECDSA signature * @param r bytes32 "r" value of the ECDSA signature * @param s bytes32 "s" value of the ECDSA signature */ function buyNFT( uint256 nonce, uint256 expiry, address signerWallet, address signerToken, uint256 signerID, address senderToken, uint256 senderAmount, uint8 v, bytes32 r, bytes32 s ) public override { _checkValidOrder( nonce, expiry, signerWallet, signerToken, signerID, senderToken, senderAmount, v, r, s ); // Transfer token from sender to signer IERC20(senderToken).safeTransferFrom( msg.sender, signerWallet, senderAmount ); // Transfer token from signer to recipient IERC721(signerToken).transferFrom(signerWallet, msg.sender, signerID); // Calculate and transfer protocol fee and rebate _transferProtocolFee(senderToken, msg.sender, senderAmount); emit Swap( nonce, block.timestamp, signerWallet, signerToken, signerID, protocolFee, msg.sender, senderToken, senderAmount ); } /** * @notice Sender Sells an NFT (ERC721) * @param nonce uint256 Unique and should be sequential * @param expiry uint256 Expiry in seconds since 1 January 1970 * @param signerWallet address Wallet of the signer * @param signerToken address ERC20 token transferred from the signer * @param signerAmount uint256 Amount transferred from the signer * @param senderToken address ERC721 token transferred from the sender * @param senderID uint256 Token ID transferred from the sender * @param v uint8 "v" value of the ECDSA signature * @param r bytes32 "r" value of the ECDSA signature * @param s bytes32 "s" value of the ECDSA signature */ function sellNFT( uint256 nonce, uint256 expiry, address signerWallet, address signerToken, uint256 signerAmount, address senderToken, uint256 senderID, uint8 v, bytes32 r, bytes32 s ) public override { _checkValidOrder( nonce, expiry, signerWallet, signerToken, signerAmount, senderToken, senderID, v, r, s ); // Transfer token from sender to signer IERC721(senderToken).transferFrom(msg.sender, signerWallet, senderID); // Transfer token from signer to recipient IERC20(signerToken).safeTransferFrom( signerWallet, msg.sender, signerAmount ); // Calculate and transfer protocol fee and rebate _transferProtocolFee(signerToken, signerWallet, signerAmount); emit Swap( nonce, block.timestamp, signerWallet, signerToken, signerAmount, protocolFee, msg.sender, senderToken, senderID ); } /** * @notice Signer and sender swap NFTs (ERC721) * @param nonce uint256 Unique and should be sequential * @param expiry uint256 Expiry in seconds since 1 January 1970 * @param signerWallet address Wallet of the signer * @param signerToken address ERC721 token transferred from the signer * @param signerID uint256 Token ID transferred from the signer * @param senderToken address ERC721 token transferred from the sender * @param senderID uint256 Token ID transferred from the sender * @param v uint8 "v" value of the ECDSA signature * @param r bytes32 "r" value of the ECDSA signature * @param s bytes32 "s" value of the ECDSA signature */ function swapNFTs( uint256 nonce, uint256 expiry, address signerWallet, address signerToken, uint256 signerID, address senderToken, uint256 senderID, uint8 v, bytes32 r, bytes32 s ) public override { _checkValidOrder( nonce, expiry, signerWallet, signerToken, signerID, senderToken, senderID, v, r, s ); // Transfer token from sender to signer IERC721(senderToken).transferFrom(msg.sender, signerWallet, senderID); // Transfer token from signer to sender IERC721(signerToken).transferFrom(signerWallet, msg.sender, signerID); emit Swap( nonce, block.timestamp, signerWallet, signerToken, signerID, 0, msg.sender, senderToken, senderID ); } /** * @notice Set the fee * @param _protocolFee uint256 Value of the fee in basis points */ function setProtocolFee(uint256 _protocolFee) external onlyOwner { // Ensure the fee is less than divisor require(_protocolFee < FEE_DIVISOR, "INVALID_FEE"); protocolFee = _protocolFee; emit SetProtocolFee(_protocolFee); } /** * @notice Set the light fee * @param _protocolFeeLight uint256 Value of the fee in basis points */ function setProtocolFeeLight(uint256 _protocolFeeLight) external onlyOwner { // Ensure the fee is less than divisor require(_protocolFeeLight < FEE_DIVISOR, "INVALID_FEE_LIGHT"); protocolFeeLight = _protocolFeeLight; emit SetProtocolFeeLight(_protocolFeeLight); } /** * @notice Set the fee wallet * @param _protocolFeeWallet address Wallet to transfer fee to */ function setProtocolFeeWallet(address _protocolFeeWallet) external onlyOwner { // Ensure the new fee wallet is not null require(_protocolFeeWallet != address(0), "INVALID_FEE_WALLET"); protocolFeeWallet = _protocolFeeWallet; emit SetProtocolFeeWallet(_protocolFeeWallet); } /** * @notice Set scale * @dev Only owner * @param _rebateScale uint256 */ function setRebateScale(uint256 _rebateScale) external onlyOwner { require(_rebateScale <= MAX_SCALE, "SCALE_TOO_HIGH"); rebateScale = _rebateScale; emit SetRebateScale(_rebateScale); } /** * @notice Set max * @dev Only owner * @param _rebateMax uint256 */ function setRebateMax(uint256 _rebateMax) external onlyOwner { require(_rebateMax <= MAX_PERCENTAGE, "MAX_TOO_HIGH"); rebateMax = _rebateMax; emit SetRebateMax(_rebateMax); } /** * @notice Set the staking token * @param newstaking address Token to check balances on */ function setStaking(address newstaking) external onlyOwner { // Ensure the new staking token is not null require(newstaking != address(0), "INVALID_STAKING"); staking = newstaking; emit SetStaking(newstaking); } /** * @notice Authorize a signer * @param signer address Wallet of the signer to authorize * @dev Emits an Authorize event */ function authorize(address signer) external override { require(signer != address(0), "SIGNER_INVALID"); authorized[msg.sender] = signer; emit Authorize(signer, msg.sender); } /** * @notice Revoke the signer * @dev Emits a Revoke event */ function revoke() external override { address tmp = authorized[msg.sender]; delete authorized[msg.sender]; emit Revoke(tmp, msg.sender); } /** * @notice Cancel one or more nonces * @dev Cancelled nonces are marked as used * @dev Emits a Cancel event * @dev Out of gas may occur in arrays of length > 400 * @param nonces uint256[] List of nonces to cancel */ function cancel(uint256[] calldata nonces) external override { for (uint256 i = 0; i < nonces.length; i++) { uint256 nonce = nonces[i]; if (_markNonceAsUsed(msg.sender, nonce)) { emit Cancel(nonce, msg.sender); } } } /** * @notice Validates Swap Order for any potential errors * @param senderWallet address Wallet that would send the order * @param nonce uint256 Unique and should be sequential * @param expiry uint256 Expiry in seconds since 1 January 1970 * @param signerWallet address Wallet of the signer * @param signerToken address ERC20 token transferred from the signer * @param signerAmount uint256 Amount transferred from the signer * @param senderToken address ERC20 token transferred from the sender * @param senderAmount uint256 Amount transferred from the sender * @param v uint8 "v" value of the ECDSA signature * @param r bytes32 "r" value of the ECDSA signature * @param s bytes32 "s" value of the ECDSA signature * @return tuple of error count and bytes32[] memory array of error messages */ function check( address senderWallet, uint256 nonce, uint256 expiry, address signerWallet, address signerToken, uint256 signerAmount, address senderToken, uint256 senderAmount, uint8 v, bytes32 r, bytes32 s ) public view returns (uint256, bytes32[] memory) { bytes32[] memory errors = new bytes32[](MAX_ERROR_COUNT); Order memory order; uint256 errCount; order.nonce = nonce; order.expiry = expiry; order.signerWallet = signerWallet; order.signerToken = signerToken; order.signerAmount = signerAmount; order.senderToken = senderToken; order.senderAmount = senderAmount; order.v = v; order.r = r; order.s = s; order.senderWallet = senderWallet; bytes32 hashed = _getOrderHash( order.nonce, order.expiry, order.signerWallet, order.signerToken, order.signerAmount, order.senderWallet, order.senderToken, order.senderAmount ); address signatory = _getSignatory(hashed, order.v, order.r, order.s); if (signatory == address(0)) { errors[errCount] = "SIGNATURE_INVALID"; errCount++; } if (order.expiry < block.timestamp) { errors[errCount] = "EXPIRY_PASSED"; errCount++; } if ( order.signerWallet != signatory && authorized[order.signerWallet] != signatory ) { errors[errCount] = "UNAUTHORIZED"; errCount++; } else { if (nonceUsed(signatory, order.nonce)) { errors[errCount] = "NONCE_ALREADY_USED"; errCount++; } } uint256 signerBalance = IERC20(order.signerToken).balanceOf( order.signerWallet ); uint256 signerAllowance = IERC20(order.signerToken).allowance( order.signerWallet, address(this) ); uint256 feeAmount = (order.signerAmount * protocolFee) / FEE_DIVISOR; if (signerAllowance < order.signerAmount + feeAmount) { errors[errCount] = "SIGNER_ALLOWANCE_LOW"; errCount++; } if (signerBalance < order.signerAmount + feeAmount) { errors[errCount] = "SIGNER_BALANCE_LOW"; errCount++; } return (errCount, errors); } /** * @notice Calculate output amount for an input score * @param stakingBalance uint256 * @param feeAmount uint256 */ function calculateDiscount(uint256 stakingBalance, uint256 feeAmount) public view returns (uint256) { uint256 divisor = (uint256(10)**rebateScale) + stakingBalance; return (rebateMax * stakingBalance * feeAmount) / divisor / 100; } /** * @notice Calculates and refers fee amount * @param wallet address * @param amount uint256 */ function calculateProtocolFee(address wallet, uint256 amount) public view override returns (uint256) { // Transfer fee from signer to feeWallet uint256 feeAmount = (amount * protocolFee) / FEE_DIVISOR; if (feeAmount > 0) { uint256 discountAmount = calculateDiscount( IERC20(staking).balanceOf(wallet), feeAmount ); return feeAmount - discountAmount; } return feeAmount; } /** * @notice Returns true if the nonce has been used * @param signer address Address of the signer * @param nonce uint256 Nonce being checked */ function nonceUsed(address signer, uint256 nonce) public view override returns (bool) { uint256 groupKey = nonce / 256; uint256 indexInGroup = nonce % 256; return (_nonceGroups[signer][groupKey] >> indexInGroup) & 1 == 1; } /** * @notice Returns the current chainId using the chainid opcode * @return id uint256 The chain id */ function getChainId() public view returns (uint256 id) { // no-inline-assembly assembly { id := chainid() } } /** * @notice Marks a nonce as used for the given signer * @param signer address Address of the signer for which to mark the nonce as used * @param nonce uint256 Nonce to be marked as used * @return bool True if the nonce was not marked as used already */ function _markNonceAsUsed(address signer, uint256 nonce) internal returns (bool) { uint256 groupKey = nonce / 256; uint256 indexInGroup = nonce % 256; uint256 group = _nonceGroups[signer][groupKey]; // If it is already used, return false if ((group >> indexInGroup) & 1 == 1) { return false; } _nonceGroups[signer][groupKey] = group | (uint256(1) << indexInGroup); return true; } /** * @notice Checks Order Expiry, Nonce, Signature * @param nonce uint256 Unique and should be sequential * @param expiry uint256 Expiry in seconds since 1 January 1970 * @param signerWallet address Wallet of the signer * @param signerToken address ERC20 token transferred from the signer * @param signerAmount uint256 Amount transferred from the signer * @param senderToken address ERC20 token transferred from the sender * @param senderAmount uint256 Amount transferred from the sender * @param v uint8 "v" value of the ECDSA signature * @param r bytes32 "r" value of the ECDSA signature * @param s bytes32 "s" value of the ECDSA signature */ function _checkValidOrder( uint256 nonce, uint256 expiry, address signerWallet, address signerToken, uint256 signerAmount, address senderToken, uint256 senderAmount, uint8 v, bytes32 r, bytes32 s ) internal { require(DOMAIN_CHAIN_ID == getChainId(), "CHAIN_ID_CHANGED"); // Ensure the expiry is not passed require(expiry > block.timestamp, "EXPIRY_PASSED"); bytes32 hashed = _getOrderHash( nonce, expiry, signerWallet, signerToken, signerAmount, msg.sender, senderToken, senderAmount ); // Recover the signatory from the hash and signature address signatory = _getSignatory(hashed, v, r, s); // Ensure the signatory is not null require(signatory != address(0), "SIGNATURE_INVALID"); // Ensure the nonce is not yet used and if not mark it used require(_markNonceAsUsed(signatory, nonce), "NONCE_ALREADY_USED"); // Ensure the signatory is authorized by the signer wallet if (signerWallet != signatory) { require(authorized[signerWallet] == signatory, "UNAUTHORIZED"); } } /** * @notice Hash order parameters * @param nonce uint256 * @param expiry uint256 * @param signerWallet address * @param signerToken address * @param signerAmount uint256 * @param senderToken address * @param senderAmount uint256 * @return bytes32 */ function _getOrderHash( uint256 nonce, uint256 expiry, address signerWallet, address signerToken, uint256 signerAmount, address senderWallet, address senderToken, uint256 senderAmount ) internal view returns (bytes32) { return keccak256( abi.encode( ORDER_TYPEHASH, nonce, expiry, signerWallet, signerToken, signerAmount, protocolFee, senderWallet, senderToken, senderAmount ) ); } /** * @notice Recover the signatory from a signature * @param hash bytes32 * @param v uint8 * @param r bytes32 * @param s bytes32 */ function _getSignatory( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal view returns (address) { return ecrecover( keccak256(abi.encodePacked("\x19\x01", DOMAIN_SEPARATOR, hash)), v, r, s ); } /** * @notice Calculates and transfers protocol fee and rebate * @param sourceToken address * @param sourceWallet address * @param amount uint256 */ function _transferProtocolFee( address sourceToken, address sourceWallet, uint256 amount ) internal { // Transfer fee from signer to feeWallet uint256 feeAmount = (amount * protocolFee) / FEE_DIVISOR; if (feeAmount > 0) { uint256 discountAmount = calculateDiscount( IERC20(staking).balanceOf(msg.sender), feeAmount ); if (discountAmount > 0) { // Transfer fee from signer to sender IERC20(sourceToken).safeTransferFrom( sourceWallet, msg.sender, discountAmount ); // Transfer fee from signer to feeWallet IERC20(sourceToken).safeTransferFrom( sourceWallet, protocolFeeWallet, feeAmount - discountAmount ); } else { IERC20(sourceToken).safeTransferFrom( sourceWallet, protocolFeeWallet, feeAmount ); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface ISwap { struct Order { uint256 nonce; uint256 expiry; address signerWallet; address signerToken; uint256 signerAmount; address senderWallet; address senderToken; uint256 senderAmount; uint8 v; bytes32 r; bytes32 s; } event Swap( uint256 indexed nonce, uint256 timestamp, address indexed signerWallet, address signerToken, uint256 signerAmount, uint256 protocolFee, address indexed senderWallet, address senderToken, uint256 senderAmount ); event Cancel(uint256 indexed nonce, address indexed signerWallet); event Authorize(address indexed signer, address indexed signerWallet); event Revoke(address indexed signer, address indexed signerWallet); event SetProtocolFee(uint256 protocolFee); event SetProtocolFeeLight(uint256 protocolFeeLight); event SetProtocolFeeWallet(address indexed feeWallet); event SetRebateScale(uint256 rebateScale); event SetRebateMax(uint256 rebateMax); event SetStaking(address indexed staking); function swap( address recipient, uint256 nonce, uint256 expiry, address signerWallet, address signerToken, uint256 signerAmount, address senderToken, uint256 senderAmount, uint8 v, bytes32 r, bytes32 s ) external; function light( uint256 nonce, uint256 expiry, address signerWallet, address signerToken, uint256 signerAmount, address senderToken, uint256 senderAmount, uint8 v, bytes32 r, bytes32 s ) external; function buyNFT( uint256 nonce, uint256 expiry, address signerWallet, address signerToken, uint256 signerAmount, address senderToken, uint256 senderAmount, uint8 v, bytes32 r, bytes32 s ) external; function sellNFT( uint256 nonce, uint256 expiry, address signerWallet, address signerToken, uint256 signerAmount, address senderToken, uint256 senderAmount, uint8 v, bytes32 r, bytes32 s ) external; function swapNFTs( uint256 nonce, uint256 expiry, address signerWallet, address signerToken, uint256 signerAmount, address senderToken, uint256 senderAmount, uint8 v, bytes32 r, bytes32 s ) external; function authorize(address sender) external; function revoke() external; function cancel(uint256[] calldata nonces) external; function nonceUsed(address, uint256) external view returns (bool); function authorized(address) external view returns (address); function calculateProtocolFee(address, uint256) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 999999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_protocolFee","type":"uint256"},{"internalType":"uint256","name":"_protocolFeeLight","type":"uint256"},{"internalType":"address","name":"_protocolFeeWallet","type":"address"},{"internalType":"uint256","name":"_rebateScale","type":"uint256"},{"internalType":"uint256","name":"_rebateMax","type":"uint256"},{"internalType":"address","name":"_staking","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"signer","type":"address"},{"indexed":true,"internalType":"address","name":"signerWallet","type":"address"}],"name":"Authorize","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":true,"internalType":"address","name":"signerWallet","type":"address"}],"name":"Cancel","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"signer","type":"address"},{"indexed":true,"internalType":"address","name":"signerWallet","type":"address"}],"name":"Revoke","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"protocolFee","type":"uint256"}],"name":"SetProtocolFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"protocolFeeLight","type":"uint256"}],"name":"SetProtocolFeeLight","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"feeWallet","type":"address"}],"name":"SetProtocolFeeWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rebateMax","type":"uint256"}],"name":"SetRebateMax","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rebateScale","type":"uint256"}],"name":"SetRebateScale","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"staking","type":"address"}],"name":"SetStaking","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":true,"internalType":"address","name":"signerWallet","type":"address"},{"indexed":false,"internalType":"address","name":"signerToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"signerAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"protocolFee","type":"uint256"},{"indexed":true,"internalType":"address","name":"senderWallet","type":"address"},{"indexed":false,"internalType":"address","name":"senderToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"senderAmount","type":"uint256"}],"name":"Swap","type":"event"},{"inputs":[],"name":"DOMAIN_CHAIN_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_NAME","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_VERSION","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ORDER_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"authorize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"authorized","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"address","name":"signerWallet","type":"address"},{"internalType":"address","name":"signerToken","type":"address"},{"internalType":"uint256","name":"signerID","type":"uint256"},{"internalType":"address","name":"senderToken","type":"address"},{"internalType":"uint256","name":"senderAmount","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"buyNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"stakingBalance","type":"uint256"},{"internalType":"uint256","name":"feeAmount","type":"uint256"}],"name":"calculateDiscount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"calculateProtocolFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"nonces","type":"uint256[]"}],"name":"cancel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"senderWallet","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"address","name":"signerWallet","type":"address"},{"internalType":"address","name":"signerToken","type":"address"},{"internalType":"uint256","name":"signerAmount","type":"uint256"},{"internalType":"address","name":"senderToken","type":"address"},{"internalType":"uint256","name":"senderAmount","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"check","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes32[]","name":"","type":"bytes32[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"address","name":"signerWallet","type":"address"},{"internalType":"address","name":"signerToken","type":"address"},{"internalType":"uint256","name":"signerAmount","type":"uint256"},{"internalType":"address","name":"senderToken","type":"address"},{"internalType":"uint256","name":"senderAmount","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"light","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"nonceUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolFeeLight","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolFeeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rebateMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rebateScale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"address","name":"signerWallet","type":"address"},{"internalType":"address","name":"signerToken","type":"address"},{"internalType":"uint256","name":"signerAmount","type":"uint256"},{"internalType":"address","name":"senderToken","type":"address"},{"internalType":"uint256","name":"senderID","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"sellNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_protocolFee","type":"uint256"}],"name":"setProtocolFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_protocolFeeLight","type":"uint256"}],"name":"setProtocolFeeLight","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_protocolFeeWallet","type":"address"}],"name":"setProtocolFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rebateMax","type":"uint256"}],"name":"setRebateMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rebateScale","type":"uint256"}],"name":"setRebateScale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newstaking","type":"address"}],"name":"setStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"staking","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"address","name":"signerWallet","type":"address"},{"internalType":"address","name":"signerToken","type":"address"},{"internalType":"uint256","name":"signerAmount","type":"uint256"},{"internalType":"address","name":"senderToken","type":"address"},{"internalType":"uint256","name":"senderAmount","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"address","name":"signerWallet","type":"address"},{"internalType":"address","name":"signerToken","type":"address"},{"internalType":"uint256","name":"signerID","type":"uint256"},{"internalType":"address","name":"senderToken","type":"address"},{"internalType":"uint256","name":"senderID","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"swapNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b5060405162003f6238038062003f628339810160408190526200003491620003c9565b6200003f336200035c565b6127108610620000845760405162461bcd60e51b815260206004820152600b60248201526a494e56414c49445f46454560a81b60448201526064015b60405180910390fd5b6127108510620000c55760405162461bcd60e51b815260206004820152600b60248201526a494e56414c49445f46454560a81b60448201526064016200007b565b6001600160a01b038416620001125760405162461bcd60e51b81526020600482015260126024820152711253959053125117d1915157d5d05313115560721b60448201526064016200007b565b604d831115620001565760405162461bcd60e51b815260206004820152600e60248201526d0a68682988abea89e9ebe90928e960931b60448201526064016200007b565b6064821115620001985760405162461bcd60e51b815260206004820152600c60248201526b09a82b0bea89e9ebe90928e960a31b60448201526064016200007b565b6001600160a01b038116620001e25760405162461bcd60e51b815260206004820152600f60248201526e494e56414c49445f5354414b494e4760881b60448201526064016200007b565b60004660808190526040516c08a92a06e626488dedac2d2dc5609b1b60208201526b1cdd1c9a5b99c81b985b594b60a21b602d8201526e1cdd1c9a5b99c81d995c9cda5bdb8b608a1b60398201526f1d5a5b9d0c8d4d8818da185a5b92590b60821b60488201527f6164647265737320766572696679696e67436f6e7472616374000000000000006058820152602960f81b607182015290915060720160408051601f198184030181528282528051602091820120908301527f497a7733c30c446bed91d579fce5ede8c3e0fbcdbe90a491d0a07e91d5b88b71908201527f2a80e1ef1d7842f27f2e6be0972bb708b9a135c38860dbe73c27c3486c34f4de6060820152608081018290523060a082015260c00160408051601f19818403018152919052805160209091012060a05250600395909555600493909355600580546001600160a01b039384166001600160a01b0319918216179091556006919091556007929092556008805491909316911617905562000426565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b0381168114620003c457600080fd5b919050565b60008060008060008060c08789031215620003e357600080fd5b8651955060208701519450620003fc60408801620003ac565b935060608701519250608087015191506200041a60a08801620003ac565b90509295509295509295565b60805160a051613afa62000468600039600081816102d20152818161068f01526131860152600081816102f9015281816105950152612aba0152613afa6000f3fe608060405234801561001057600080fd5b506004361061025c5760003560e01c80638da5cb5b11610145578063b9cb01b0116100bd578063db985cd91161008c578063f2fde38b11610071578063f2fde38b1461056e578063f4ebc69914610581578063f973a2091461058a57600080fd5b8063db985cd914610552578063e95b771c1461055b57600080fd5b8063b9cb01b0146104eb578063bfd4e5571461050c578063cbf7c6c31461051f578063d31eaa831461053f57600080fd5b8063acb8cc4911610114578063b6549f75116100f9578063b6549f751461049a578063b6a5d7de146104a2578063b9181611146104b557600080fd5b8063acb8cc491461046a578063b0e21e8a1461049157600080fd5b80638da5cb5b1461041d5780638ff390991461043b578063989560691461044e5780639e93ad8e1461046157600080fd5b80634cf088d9116101d8578063715018a6116101a7578063787dce3d1161018c578063787dce3d146103d0578063796f077b146103e35780637ce785251461040a57600080fd5b8063715018a6146103bf578063770fde12146103c757600080fd5b80634cf088d9146103415780634d2af2b21461038657806352c5f1f5146103995780635dfde3e1146103ac57600080fd5b80633408e4701161022f578063416f281d11610214578063416f281d146102f4578063431f76381461031b578063443998a61461032e57600080fd5b80633408e470146102c75780633644e515146102cd57600080fd5b8063011bc718146102615780631647795e1461027657806320606b701461029e5780632e340823146102b4575b600080fd5b61027461026f3660046136cc565b610592565b005b610289610284366004613515565b610ccf565b60405190151581526020015b60405180910390f35b6102a6610d31565b604051908152602001610295565b6102746102c23660046135e1565b610e35565b466102a6565b6102a67f000000000000000000000000000000000000000000000000000000000000000081565b6102a67f000000000000000000000000000000000000000000000000000000000000000081565b6102746103293660046136cc565b610eb2565b61027461033c3660046136cc565b611006565b6008546103619073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610295565b6102a66103943660046136aa565b6111a6565b6102a66103a7366004613515565b6111fd565b6102746103ba3660046136cc565b6112ef565b6102746113bc565b6102a660075481565b6102746103de366004613678565b611449565b6102a67f497a7733c30c446bed91d579fce5ede8c3e0fbcdbe90a491d0a07e91d5b88b7181565b6102746104183660046134fa565b611571565b60005473ffffffffffffffffffffffffffffffffffffffff16610361565b6102746104493660046134fa565b6116de565b61027461045c36600461353f565b61184b565b6102a661271081565b6102a67f2a80e1ef1d7842f27f2e6be0972bb708b9a135c38860dbe73c27c3486c34f4de81565b6102a660035481565b610274611922565b6102746104b03660046134fa565b61199f565b6103616104c33660046134fa565b60026020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6104fe6104f936600461353f565b611a97565b6040516102959291906137c9565b61027461051a366004613678565b612331565b6005546103619073ffffffffffffffffffffffffffffffffffffffff1681565b61027461054d366004613678565b612452565b6102a660065481565b610274610569366004613678565b612573565b61027461057c3660046134fa565b612694565b6102a660045481565b6102a66127c4565b467f000000000000000000000000000000000000000000000000000000000000000014610620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f434841494e5f49445f4348414e4745440000000000000000000000000000000060448201526064015b60405180910390fd5b428911610689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4558504952595f504153534544000000000000000000000000000000000000006044820152606401610617565b600060017f000000000000000000000000000000000000000000000000000000000000000060405160200161085d907f4f7264657228000000000000000000000000000000000000000000000000000081527f75696e74323536206e6f6e63652c00000000000000000000000000000000000060068201527f75696e74323536206578706972792c000000000000000000000000000000000060148201527f61646472657373207369676e657257616c6c65742c000000000000000000000060238201527f61646472657373207369676e6572546f6b656e2c00000000000000000000000060388201527f75696e74323536207369676e6572416d6f756e742c0000000000000000000000604c8201527f75696e743235362070726f746f636f6c4665652c00000000000000000000000060618201527f616464726573732073656e64657257616c6c65742c000000000000000000000060758201527f616464726573732073656e646572546f6b656e2c000000000000000000000000608a8201527f75696e743235362073656e646572416d6f756e74000000000000000000000000609e8201527f290000000000000000000000000000000000000000000000000000000000000060b282015260b30190565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600454918401529082018f9052606082018e905273ffffffffffffffffffffffffffffffffffffffff808e166080840152808d1660a084015260c083018c905260e08301919091523361010083015289166101208201526101408101889052610160016040516020818303038152906040528051906020012060405160200161094e9291907f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa1580156109ca573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116610a72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f5349474e41545552455f494e56414c49440000000000000000000000000000006044820152606401610617565b610a7c818c612971565b610ae2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e4f4e43455f414c52454144595f5553454400000000000000000000000000006044820152606401610617565b8073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614610ba85773ffffffffffffffffffffffffffffffffffffffff898116600090815260026020526040902054811690821614610ba8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610617565b610bca73ffffffffffffffffffffffffffffffffffffffff8716338b88612a1c565b610bec73ffffffffffffffffffffffffffffffffffffffff89168a338a612a1c565b600554600454610c48918b9173ffffffffffffffffffffffffffffffffffffffff9091169061271090610c1f908c61396a565b610c29919061382f565b73ffffffffffffffffffffffffffffffffffffffff8c16929190612a1c565b6004546040805142815273ffffffffffffffffffffffffffffffffffffffff8b811660208301529181018a90526060810192909252878116608083015260a082018790523391908b16908d907f06dfeb25e76d44e08965b639a9d9307df8e1c3dbe2a6364194895e9c3992f0339060c0015b60405180910390a45050505050505050505050565b600080610cde6101008461382f565b90506000610cee61010085613a23565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260016020818152604080842096845295905293902054901c82169091149150505b92915050565b6040517f454950373132446f6d61696e280000000000000000000000000000000000000060208201527f737472696e67206e616d652c0000000000000000000000000000000000000000602d8201527f737472696e672076657273696f6e2c000000000000000000000000000000000060398201527f75696e7432353620636861696e49642c0000000000000000000000000000000060488201527f6164647265737320766572696679696e67436f6e74726163740000000000000060588201527f290000000000000000000000000000000000000000000000000000000000000060718201526072015b6040516020818303038152906040528051906020012081565b60005b81811015610ead576000838383818110610e5457610e54613a95565b905060200201359050610e673382612971565b15610e9a57604051339082907f8dd3c361eb2366ff27c2db0eb07b9261f1d052570742ab8c9a0c326f37aa576d90600090a35b5080610ea5816139ea565b915050610e38565b505050565b610ec48a8a8a8a8a8a8a8a8a8a612ab7565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff8981166024830152604482018690528616906323b872dd90606401600060405180830381600087803b158015610f3a57600080fd5b505af1158015610f4e573d6000803e3d6000fd5b50610f759250505073ffffffffffffffffffffffffffffffffffffffff8816893389612a1c565b610f80878988612fbd565b6003546040805142815273ffffffffffffffffffffffffffffffffffffffff8a811660208301529181018990526060810192909252868116608083015260a082018690523391908a16908c907f06dfeb25e76d44e08965b639a9d9307df8e1c3dbe2a6364194895e9c3992f0339060c0015b60405180910390a450505050505050505050565b6110188a8a8a8a8a8a8a8a8a8a612ab7565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff8981166024830152604482018690528616906323b872dd90606401600060405180830381600087803b15801561108e57600080fd5b505af11580156110a2573d6000803e3d6000fd5b50506040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8b81166004830152336024830152604482018a90528a1692506323b872dd9150606401600060405180830381600087803b15801561111c57600080fd5b505af1158015611130573d6000803e3d6000fd5b50506040805142815273ffffffffffffffffffffffffffffffffffffffff8b811660208301529181018a905260006060820152888216608082015260a08101889052339350908b1691508c907f06dfeb25e76d44e08965b639a9d9307df8e1c3dbe2a6364194895e9c3992f0339060c001610ff2565b60008083600654600a6111b991906138a4565b6111c39190613817565b905060648184866007546111d7919061396a565b6111e1919061396a565b6111eb919061382f565b6111f5919061382f565b949350505050565b60008061271060035484611211919061396a565b61121b919061382f565b905080156112e8576008546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff86811660048301526000926112d3929116906370a08231906024015b60206040518083038186803b15801561129557600080fd5b505afa1580156112a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112cd9190613691565b836111a6565b90506112df81836139a7565b92505050610d2b565b9392505050565b6113018a8a8a8a8a8a8a8a8a8a612ab7565b61132373ffffffffffffffffffffffffffffffffffffffff8616338a87612a1c565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8981166004830152336024830152604482018890528816906323b872dd90606401600060405180830381600087803b15801561139957600080fd5b505af11580156113ad573d6000803e3d6000fd5b50505050610f80853386612fbd565b60005473ffffffffffffffffffffffffffffffffffffffff16331461143d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610617565b61144760006130e6565b565b60005473ffffffffffffffffffffffffffffffffffffffff1633146114ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610617565b6127108110611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f494e56414c49445f4645450000000000000000000000000000000000000000006044820152606401610617565b60038190556040518181527fdc0410a296e1e33943a772020d333d5f99319d7fcad932a484c53889f7aaa2b1906020015b60405180910390a150565b60005473ffffffffffffffffffffffffffffffffffffffff1633146115f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610617565b73ffffffffffffffffffffffffffffffffffffffff811661166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f494e56414c49445f4645455f57414c4c455400000000000000000000000000006044820152606401610617565b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517f8b2a800ce9e2e7ccdf4741ae0e41b1f16983192291080ae3b78ac4296ddf598a90600090a250565b60005473ffffffffffffffffffffffffffffffffffffffff16331461175f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610617565b73ffffffffffffffffffffffffffffffffffffffff81166117dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f494e56414c49445f5354414b494e4700000000000000000000000000000000006044820152606401610617565b600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517f58fd5d9c33114e6edf8ea5d30956f8d1a4ab112b004f99928b4bcf1b87d6666290600090a250565b61185d8a8a8a8a8a8a8a8a8a8a612ab7565b61187f73ffffffffffffffffffffffffffffffffffffffff8616338a87612a1c565b6118a173ffffffffffffffffffffffffffffffffffffffff8816898d89612a1c565b6118ac878988612fbd565b6003546040805142815273ffffffffffffffffffffffffffffffffffffffff8a811660208301529181018990526060810192909252868116608083015260a082018690523391908a16908c907f06dfeb25e76d44e08965b639a9d9307df8e1c3dbe2a6364194895e9c3992f0339060c001610cba565b3360008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000008116909155905173ffffffffffffffffffffffffffffffffffffffff909116929183917fd7426110292f20fe59e73ccf52124e0f5440a756507c91c7b0a6c50e1eb1a23a9190a350565b73ffffffffffffffffffffffffffffffffffffffff8116611a1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f5349474e45525f494e56414c49440000000000000000000000000000000000006044820152606401610617565b3360008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8616908117909155905190917f30468de898bda644e26bab66e5a2241a3aa6aaf527257f5ca54e0f65204ba14a91a350565b60408051600680825260e0820190925260009160609183916020820160c080368337019050506040805161016081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810182905261014081019190915290915060008e8260000181815250508d8260200181815250508c826040019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508b826060019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508a826080018181525050898260c0019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050888260e00181815250508782610100019060ff16908160ff1681525050868261012001818152505085826101400181815250508f8260a0019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000611ec3836000015184602001518560400151866060015187608001518860a001518960c001518a60e00151604080517f4f726465722800000000000000000000000000000000000000000000000000006020808301919091527f75696e74323536206e6f6e63652c00000000000000000000000000000000000060268301527f75696e74323536206578706972792c000000000000000000000000000000000060348301527f61646472657373207369676e657257616c6c65742c000000000000000000000060438301527f61646472657373207369676e6572546f6b656e2c00000000000000000000000060588301527f75696e74323536207369676e6572416d6f756e742c0000000000000000000000606c8301527f75696e743235362070726f746f636f6c4665652c00000000000000000000000060818301527f616464726573732073656e64657257616c6c65742c000000000000000000000060958301527f616464726573732073656e646572546f6b656e2c00000000000000000000000060aa8301527f75696e743235362073656e646572416d6f756e7400000000000000000000000060be8301527f290000000000000000000000000000000000000000000000000000000000000060d2830152825160b381840301815260d38301845280519082012060035460f384019190915261011383019b909b5261013382019990995273ffffffffffffffffffffffffffffffffffffffff9788166101538201529587166101738701526101938601949094526101b38501979097529084166101d38401529092166101f38201526102138082019490945281518082039094018452610233019052815191012090565b90506000611ee28285610100015186610120015187610140015161315b565b905073ffffffffffffffffffffffffffffffffffffffff8116611f4b577f5349474e41545552455f494e56414c4944000000000000000000000000000000858481518110611f3257611f32613a95565b602090810291909101015282611f47816139ea565b9350505b4284602001511015611fa3577f4558504952595f50415353454400000000000000000000000000000000000000858481518110611f8a57611f8a613a95565b602090810291909101015282611f9f816139ea565b9350505b8073ffffffffffffffffffffffffffffffffffffffff16846040015173ffffffffffffffffffffffffffffffffffffffff1614158015612013575060408085015173ffffffffffffffffffffffffffffffffffffffff908116600090815260026020529190912054811690821614155b15612068577f554e415554484f52495a4544000000000000000000000000000000000000000085848151811061204b5761204b613a95565b602090810291909101015282612060816139ea565b9350506120c7565b612076818560000151610ccf565b156120c7577f4e4f4e43455f414c52454144595f5553454400000000000000000000000000008584815181106120ae576120ae613a95565b6020908102919091010152826120c3816139ea565b9350505b606084015160408086015190517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff918216600482015260009291909116906370a082319060240160206040518083038186803b15801561213d57600080fd5b505afa158015612151573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121759190613691565b606086015160408088015190517fdd62ed3e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff918216600482015230602482015292935060009291169063dd62ed3e9060440160206040518083038186803b1580156121f257600080fd5b505afa158015612206573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061222a9190613691565b905060006127106003548860800151612243919061396a565b61224d919061382f565b905080876080015161225f9190613817565b8210156122b2577f5349474e45525f414c4c4f57414e43455f4c4f5700000000000000000000000088878151811061229957612299613a95565b6020908102919091010152856122ae816139ea565b9650505b8087608001516122c29190613817565b831015612315577f5349474e45525f42414c414e43455f4c4f5700000000000000000000000000008887815181106122fc576122fc613a95565b602090810291909101015285612311816139ea565b9650505b5093975094955050505050509b509b9950505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146123b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610617565b612710811061241d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f494e56414c49445f4645455f4c494748540000000000000000000000000000006044820152606401610617565b60048190556040518181527f312cc1a9b7287129a22395b9572a3c9ed09ce456f02b519efb34e12bb429eed090602001611566565b60005473ffffffffffffffffffffffffffffffffffffffff1633146124d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610617565b606481111561253e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f4d41585f544f4f5f4849474800000000000000000000000000000000000000006044820152606401610617565b60078190556040518181527f8f4773d92ea1b8ff6e9ea92363a816f089d2042092c31bb82607707d6699b0b390602001611566565b60005473ffffffffffffffffffffffffffffffffffffffff1633146125f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610617565b604d81111561265f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f5343414c455f544f4f5f484947480000000000000000000000000000000000006044820152606401610617565b60068190556040518181527f01d5d03fb73185766e93e2c8300b4fc67782909a607c987c6f76f35c84e2a32590602001611566565b60005473ffffffffffffffffffffffffffffffffffffffff163314612715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610617565b73ffffffffffffffffffffffffffffffffffffffff81166127b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610617565b6127c1816130e6565b50565b6040517f4f7264657228000000000000000000000000000000000000000000000000000060208201527f75696e74323536206e6f6e63652c00000000000000000000000000000000000060268201527f75696e74323536206578706972792c000000000000000000000000000000000060348201527f61646472657373207369676e657257616c6c65742c000000000000000000000060438201527f61646472657373207369676e6572546f6b656e2c00000000000000000000000060588201527f75696e74323536207369676e6572416d6f756e742c0000000000000000000000606c8201527f75696e743235362070726f746f636f6c4665652c00000000000000000000000060818201527f616464726573732073656e64657257616c6c65742c000000000000000000000060958201527f616464726573732073656e646572546f6b656e2c00000000000000000000000060aa8201527f75696e743235362073656e646572416d6f756e7400000000000000000000000060be8201527f290000000000000000000000000000000000000000000000000000000000000060d282015260d301610e1c565b6000806129806101008461382f565b9050600061299061010085613a23565b73ffffffffffffffffffffffffffffffffffffffff861660009081526001602081815260408084208785529091529091205491925081831c811614156129dc5760009350505050610d2b565b73ffffffffffffffffffffffffffffffffffffffff861660009081526001602081815260408084209684529590529390209183901b179055905092915050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052612ab1908590613268565b50505050565b467f000000000000000000000000000000000000000000000000000000000000000014612b40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f434841494e5f49445f4348414e474544000000000000000000000000000000006044820152606401610617565b428911612ba9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4558504952595f504153534544000000000000000000000000000000000000006044820152606401610617565b604080517f4f726465722800000000000000000000000000000000000000000000000000006020808301919091527f75696e74323536206e6f6e63652c00000000000000000000000000000000000060268301527f75696e74323536206578706972792c000000000000000000000000000000000060348301527f61646472657373207369676e657257616c6c65742c000000000000000000000060438301527f61646472657373207369676e6572546f6b656e2c00000000000000000000000060588301527f75696e74323536207369676e6572416d6f756e742c0000000000000000000000606c8301527f75696e743235362070726f746f636f6c4665652c00000000000000000000000060818301527f616464726573732073656e64657257616c6c65742c000000000000000000000060958301527f616464726573732073656e646572546f6b656e2c00000000000000000000000060aa8301527f75696e743235362073656e646572416d6f756e7400000000000000000000000060be8301527f290000000000000000000000000000000000000000000000000000000000000060d2830152825180830360b301815260d38301845280519082012060035460f384019190915261011383018e905261013383018d905273ffffffffffffffffffffffffffffffffffffffff808d16610153850152808c1661017385015261019384018b90526101b3840191909152336101d384015288166101f38301526102138083018890528351808403909101815261023390920190925280519101206000612dfa8286868661315b565b905073ffffffffffffffffffffffffffffffffffffffff8116612e79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f5349474e41545552455f494e56414c49440000000000000000000000000000006044820152606401610617565b612e83818d612971565b612ee9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e4f4e43455f414c52454144595f5553454400000000000000000000000000006044820152606401610617565b8073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff1614612faf5773ffffffffffffffffffffffffffffffffffffffff8a8116600090815260026020526040902054811690821614612faf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610617565b505050505050505050505050565b600061271060035483612fd0919061396a565b612fda919061382f565b90508015612ab1576008546040517f70a0823100000000000000000000000000000000000000000000000000000000815233600482015260009161303f9173ffffffffffffffffffffffffffffffffffffffff909116906370a082319060240161127d565b905080156130b65761306973ffffffffffffffffffffffffffffffffffffffff8616853384612a1c565b6005546130b190859073ffffffffffffffffffffffffffffffffffffffff1661309284866139a7565b73ffffffffffffffffffffffffffffffffffffffff8916929190612a1c565b6130df565b6005546130df9073ffffffffffffffffffffffffffffffffffffffff8781169187911685612a1c565b5050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040517f190100000000000000000000000000000000000000000000000000000000000060208201527f0000000000000000000000000000000000000000000000000000000000000000602282015260428101859052600090600190606201604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa158015613236573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe001519695505050505050565b60006132ca826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166133749092919063ffffffff16565b805190915015610ead57808060200190518101906132e89190613656565b610ead576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610617565b60606111f5848460008585843b6133e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610617565b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051613410919061375c565b60006040518083038185875af1925050503d806000811461344d576040519150601f19603f3d011682016040523d82523d6000602084013e613452565b606091505b509150915061346282828661346d565b979650505050505050565b6060831561347c5750816112e8565b82511561348c5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106179190613778565b803573ffffffffffffffffffffffffffffffffffffffff811681146134e457600080fd5b919050565b803560ff811681146134e457600080fd5b60006020828403121561350c57600080fd5b6112e8826134c0565b6000806040838503121561352857600080fd5b613531836134c0565b946020939093013593505050565b60008060008060008060008060008060006101608c8e03121561356157600080fd5b61356a8c6134c0565b9a5060208c0135995060408c0135985061358660608d016134c0565b975061359460808d016134c0565b965060a08c013595506135a960c08d016134c0565b945060e08c013593506135bf6101008d016134e9565b92506101208c013591506101408c013590509295989b509295989b9093969950565b600080602083850312156135f457600080fd5b823567ffffffffffffffff8082111561360c57600080fd5b818501915085601f83011261362057600080fd5b81358181111561362f57600080fd5b8660208260051b850101111561364457600080fd5b60209290920196919550909350505050565b60006020828403121561366857600080fd5b815180151581146112e857600080fd5b60006020828403121561368a57600080fd5b5035919050565b6000602082840312156136a357600080fd5b5051919050565b600080604083850312156136bd57600080fd5b50508035926020909101359150565b6000806000806000806000806000806101408b8d0312156136ec57600080fd5b8a35995060208b0135985061370360408c016134c0565b975061371160608c016134c0565b965060808b0135955061372660a08c016134c0565b945060c08b0135935061373b60e08c016134e9565b92506101008b013591506101208b013590509295989b9194979a5092959850565b6000825161376e8184602087016139be565b9190910192915050565b60208152600082518060208401526137978160408501602087016139be565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b6000604082018483526020604081850152818551808452606086019150828701935060005b8181101561380a578451835293830193918301916001016137ee565b5090979650505050505050565b6000821982111561382a5761382a613a37565b500190565b60008261383e5761383e613a66565b500490565b600181815b8085111561389c57817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0482111561388257613882613a37565b8085161561388f57918102915b93841c9390800290613848565b509250929050565b60006112e883836000826138ba57506001610d2b565b816138c757506000610d2b565b81600181146138dd57600281146138e757613903565b6001915050610d2b565b60ff8411156138f8576138f8613a37565b50506001821b610d2b565b5060208310610133831016604e8410600b8410161715613926575081810a610d2b565b6139308383613843565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0482111561396257613962613a37565b029392505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139a2576139a2613a37565b500290565b6000828210156139b9576139b9613a37565b500390565b60005b838110156139d95781810151838201526020016139c1565b83811115612ab15750506000910152565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a1c57613a1c613a37565b5060010190565b600082613a3257613a32613a66565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220c779e4f57562580ae3c42160bede6b59ae9f85b5ad95b2c948e442a03828fa8d64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000070000000000000000000000009c7005fa2f8476e2331f45f69e0930a4c9eff0c3000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000064000000000000000000000000d161ddcfcc0c2d823021aa26200824efa75218d1
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061025c5760003560e01c80638da5cb5b11610145578063b9cb01b0116100bd578063db985cd91161008c578063f2fde38b11610071578063f2fde38b1461056e578063f4ebc69914610581578063f973a2091461058a57600080fd5b8063db985cd914610552578063e95b771c1461055b57600080fd5b8063b9cb01b0146104eb578063bfd4e5571461050c578063cbf7c6c31461051f578063d31eaa831461053f57600080fd5b8063acb8cc4911610114578063b6549f75116100f9578063b6549f751461049a578063b6a5d7de146104a2578063b9181611146104b557600080fd5b8063acb8cc491461046a578063b0e21e8a1461049157600080fd5b80638da5cb5b1461041d5780638ff390991461043b578063989560691461044e5780639e93ad8e1461046157600080fd5b80634cf088d9116101d8578063715018a6116101a7578063787dce3d1161018c578063787dce3d146103d0578063796f077b146103e35780637ce785251461040a57600080fd5b8063715018a6146103bf578063770fde12146103c757600080fd5b80634cf088d9146103415780634d2af2b21461038657806352c5f1f5146103995780635dfde3e1146103ac57600080fd5b80633408e4701161022f578063416f281d11610214578063416f281d146102f4578063431f76381461031b578063443998a61461032e57600080fd5b80633408e470146102c75780633644e515146102cd57600080fd5b8063011bc718146102615780631647795e1461027657806320606b701461029e5780632e340823146102b4575b600080fd5b61027461026f3660046136cc565b610592565b005b610289610284366004613515565b610ccf565b60405190151581526020015b60405180910390f35b6102a6610d31565b604051908152602001610295565b6102746102c23660046135e1565b610e35565b466102a6565b6102a67fb491fa82c853cca5ffa10821fb2f139e2b5f6e26d18026829745edeee169675581565b6102a67f000000000000000000000000000000000000000000000000000000000000003881565b6102746103293660046136cc565b610eb2565b61027461033c3660046136cc565b611006565b6008546103619073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610295565b6102a66103943660046136aa565b6111a6565b6102a66103a7366004613515565b6111fd565b6102746103ba3660046136cc565b6112ef565b6102746113bc565b6102a660075481565b6102746103de366004613678565b611449565b6102a67f497a7733c30c446bed91d579fce5ede8c3e0fbcdbe90a491d0a07e91d5b88b7181565b6102746104183660046134fa565b611571565b60005473ffffffffffffffffffffffffffffffffffffffff16610361565b6102746104493660046134fa565b6116de565b61027461045c36600461353f565b61184b565b6102a661271081565b6102a67f2a80e1ef1d7842f27f2e6be0972bb708b9a135c38860dbe73c27c3486c34f4de81565b6102a660035481565b610274611922565b6102746104b03660046134fa565b61199f565b6103616104c33660046134fa565b60026020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6104fe6104f936600461353f565b611a97565b6040516102959291906137c9565b61027461051a366004613678565b612331565b6005546103619073ffffffffffffffffffffffffffffffffffffffff1681565b61027461054d366004613678565b612452565b6102a660065481565b610274610569366004613678565b612573565b61027461057c3660046134fa565b612694565b6102a660045481565b6102a66127c4565b467f000000000000000000000000000000000000000000000000000000000000003814610620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f434841494e5f49445f4348414e4745440000000000000000000000000000000060448201526064015b60405180910390fd5b428911610689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4558504952595f504153534544000000000000000000000000000000000000006044820152606401610617565b600060017fb491fa82c853cca5ffa10821fb2f139e2b5f6e26d18026829745edeee169675560405160200161085d907f4f7264657228000000000000000000000000000000000000000000000000000081527f75696e74323536206e6f6e63652c00000000000000000000000000000000000060068201527f75696e74323536206578706972792c000000000000000000000000000000000060148201527f61646472657373207369676e657257616c6c65742c000000000000000000000060238201527f61646472657373207369676e6572546f6b656e2c00000000000000000000000060388201527f75696e74323536207369676e6572416d6f756e742c0000000000000000000000604c8201527f75696e743235362070726f746f636f6c4665652c00000000000000000000000060618201527f616464726573732073656e64657257616c6c65742c000000000000000000000060758201527f616464726573732073656e646572546f6b656e2c000000000000000000000000608a8201527f75696e743235362073656e646572416d6f756e74000000000000000000000000609e8201527f290000000000000000000000000000000000000000000000000000000000000060b282015260b30190565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600454918401529082018f9052606082018e905273ffffffffffffffffffffffffffffffffffffffff808e166080840152808d1660a084015260c083018c905260e08301919091523361010083015289166101208201526101408101889052610160016040516020818303038152906040528051906020012060405160200161094e9291907f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa1580156109ca573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116610a72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f5349474e41545552455f494e56414c49440000000000000000000000000000006044820152606401610617565b610a7c818c612971565b610ae2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e4f4e43455f414c52454144595f5553454400000000000000000000000000006044820152606401610617565b8073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614610ba85773ffffffffffffffffffffffffffffffffffffffff898116600090815260026020526040902054811690821614610ba8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610617565b610bca73ffffffffffffffffffffffffffffffffffffffff8716338b88612a1c565b610bec73ffffffffffffffffffffffffffffffffffffffff89168a338a612a1c565b600554600454610c48918b9173ffffffffffffffffffffffffffffffffffffffff9091169061271090610c1f908c61396a565b610c29919061382f565b73ffffffffffffffffffffffffffffffffffffffff8c16929190612a1c565b6004546040805142815273ffffffffffffffffffffffffffffffffffffffff8b811660208301529181018a90526060810192909252878116608083015260a082018790523391908b16908d907f06dfeb25e76d44e08965b639a9d9307df8e1c3dbe2a6364194895e9c3992f0339060c0015b60405180910390a45050505050505050505050565b600080610cde6101008461382f565b90506000610cee61010085613a23565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260016020818152604080842096845295905293902054901c82169091149150505b92915050565b6040517f454950373132446f6d61696e280000000000000000000000000000000000000060208201527f737472696e67206e616d652c0000000000000000000000000000000000000000602d8201527f737472696e672076657273696f6e2c000000000000000000000000000000000060398201527f75696e7432353620636861696e49642c0000000000000000000000000000000060488201527f6164647265737320766572696679696e67436f6e74726163740000000000000060588201527f290000000000000000000000000000000000000000000000000000000000000060718201526072015b6040516020818303038152906040528051906020012081565b60005b81811015610ead576000838383818110610e5457610e54613a95565b905060200201359050610e673382612971565b15610e9a57604051339082907f8dd3c361eb2366ff27c2db0eb07b9261f1d052570742ab8c9a0c326f37aa576d90600090a35b5080610ea5816139ea565b915050610e38565b505050565b610ec48a8a8a8a8a8a8a8a8a8a612ab7565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff8981166024830152604482018690528616906323b872dd90606401600060405180830381600087803b158015610f3a57600080fd5b505af1158015610f4e573d6000803e3d6000fd5b50610f759250505073ffffffffffffffffffffffffffffffffffffffff8816893389612a1c565b610f80878988612fbd565b6003546040805142815273ffffffffffffffffffffffffffffffffffffffff8a811660208301529181018990526060810192909252868116608083015260a082018690523391908a16908c907f06dfeb25e76d44e08965b639a9d9307df8e1c3dbe2a6364194895e9c3992f0339060c0015b60405180910390a450505050505050505050565b6110188a8a8a8a8a8a8a8a8a8a612ab7565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff8981166024830152604482018690528616906323b872dd90606401600060405180830381600087803b15801561108e57600080fd5b505af11580156110a2573d6000803e3d6000fd5b50506040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8b81166004830152336024830152604482018a90528a1692506323b872dd9150606401600060405180830381600087803b15801561111c57600080fd5b505af1158015611130573d6000803e3d6000fd5b50506040805142815273ffffffffffffffffffffffffffffffffffffffff8b811660208301529181018a905260006060820152888216608082015260a08101889052339350908b1691508c907f06dfeb25e76d44e08965b639a9d9307df8e1c3dbe2a6364194895e9c3992f0339060c001610ff2565b60008083600654600a6111b991906138a4565b6111c39190613817565b905060648184866007546111d7919061396a565b6111e1919061396a565b6111eb919061382f565b6111f5919061382f565b949350505050565b60008061271060035484611211919061396a565b61121b919061382f565b905080156112e8576008546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff86811660048301526000926112d3929116906370a08231906024015b60206040518083038186803b15801561129557600080fd5b505afa1580156112a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112cd9190613691565b836111a6565b90506112df81836139a7565b92505050610d2b565b9392505050565b6113018a8a8a8a8a8a8a8a8a8a612ab7565b61132373ffffffffffffffffffffffffffffffffffffffff8616338a87612a1c565b6040517f23b872dd00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8981166004830152336024830152604482018890528816906323b872dd90606401600060405180830381600087803b15801561139957600080fd5b505af11580156113ad573d6000803e3d6000fd5b50505050610f80853386612fbd565b60005473ffffffffffffffffffffffffffffffffffffffff16331461143d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610617565b61144760006130e6565b565b60005473ffffffffffffffffffffffffffffffffffffffff1633146114ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610617565b6127108110611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f494e56414c49445f4645450000000000000000000000000000000000000000006044820152606401610617565b60038190556040518181527fdc0410a296e1e33943a772020d333d5f99319d7fcad932a484c53889f7aaa2b1906020015b60405180910390a150565b60005473ffffffffffffffffffffffffffffffffffffffff1633146115f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610617565b73ffffffffffffffffffffffffffffffffffffffff811661166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f494e56414c49445f4645455f57414c4c455400000000000000000000000000006044820152606401610617565b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517f8b2a800ce9e2e7ccdf4741ae0e41b1f16983192291080ae3b78ac4296ddf598a90600090a250565b60005473ffffffffffffffffffffffffffffffffffffffff16331461175f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610617565b73ffffffffffffffffffffffffffffffffffffffff81166117dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f494e56414c49445f5354414b494e4700000000000000000000000000000000006044820152606401610617565b600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517f58fd5d9c33114e6edf8ea5d30956f8d1a4ab112b004f99928b4bcf1b87d6666290600090a250565b61185d8a8a8a8a8a8a8a8a8a8a612ab7565b61187f73ffffffffffffffffffffffffffffffffffffffff8616338a87612a1c565b6118a173ffffffffffffffffffffffffffffffffffffffff8816898d89612a1c565b6118ac878988612fbd565b6003546040805142815273ffffffffffffffffffffffffffffffffffffffff8a811660208301529181018990526060810192909252868116608083015260a082018690523391908a16908c907f06dfeb25e76d44e08965b639a9d9307df8e1c3dbe2a6364194895e9c3992f0339060c001610cba565b3360008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000008116909155905173ffffffffffffffffffffffffffffffffffffffff909116929183917fd7426110292f20fe59e73ccf52124e0f5440a756507c91c7b0a6c50e1eb1a23a9190a350565b73ffffffffffffffffffffffffffffffffffffffff8116611a1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f5349474e45525f494e56414c49440000000000000000000000000000000000006044820152606401610617565b3360008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8616908117909155905190917f30468de898bda644e26bab66e5a2241a3aa6aaf527257f5ca54e0f65204ba14a91a350565b60408051600680825260e0820190925260009160609183916020820160c080368337019050506040805161016081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810182905261014081019190915290915060008e8260000181815250508d8260200181815250508c826040019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508b826060019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508a826080018181525050898260c0019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050888260e00181815250508782610100019060ff16908160ff1681525050868261012001818152505085826101400181815250508f8260a0019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000611ec3836000015184602001518560400151866060015187608001518860a001518960c001518a60e00151604080517f4f726465722800000000000000000000000000000000000000000000000000006020808301919091527f75696e74323536206e6f6e63652c00000000000000000000000000000000000060268301527f75696e74323536206578706972792c000000000000000000000000000000000060348301527f61646472657373207369676e657257616c6c65742c000000000000000000000060438301527f61646472657373207369676e6572546f6b656e2c00000000000000000000000060588301527f75696e74323536207369676e6572416d6f756e742c0000000000000000000000606c8301527f75696e743235362070726f746f636f6c4665652c00000000000000000000000060818301527f616464726573732073656e64657257616c6c65742c000000000000000000000060958301527f616464726573732073656e646572546f6b656e2c00000000000000000000000060aa8301527f75696e743235362073656e646572416d6f756e7400000000000000000000000060be8301527f290000000000000000000000000000000000000000000000000000000000000060d2830152825160b381840301815260d38301845280519082012060035460f384019190915261011383019b909b5261013382019990995273ffffffffffffffffffffffffffffffffffffffff9788166101538201529587166101738701526101938601949094526101b38501979097529084166101d38401529092166101f38201526102138082019490945281518082039094018452610233019052815191012090565b90506000611ee28285610100015186610120015187610140015161315b565b905073ffffffffffffffffffffffffffffffffffffffff8116611f4b577f5349474e41545552455f494e56414c4944000000000000000000000000000000858481518110611f3257611f32613a95565b602090810291909101015282611f47816139ea565b9350505b4284602001511015611fa3577f4558504952595f50415353454400000000000000000000000000000000000000858481518110611f8a57611f8a613a95565b602090810291909101015282611f9f816139ea565b9350505b8073ffffffffffffffffffffffffffffffffffffffff16846040015173ffffffffffffffffffffffffffffffffffffffff1614158015612013575060408085015173ffffffffffffffffffffffffffffffffffffffff908116600090815260026020529190912054811690821614155b15612068577f554e415554484f52495a4544000000000000000000000000000000000000000085848151811061204b5761204b613a95565b602090810291909101015282612060816139ea565b9350506120c7565b612076818560000151610ccf565b156120c7577f4e4f4e43455f414c52454144595f5553454400000000000000000000000000008584815181106120ae576120ae613a95565b6020908102919091010152826120c3816139ea565b9350505b606084015160408086015190517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff918216600482015260009291909116906370a082319060240160206040518083038186803b15801561213d57600080fd5b505afa158015612151573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121759190613691565b606086015160408088015190517fdd62ed3e00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff918216600482015230602482015292935060009291169063dd62ed3e9060440160206040518083038186803b1580156121f257600080fd5b505afa158015612206573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061222a9190613691565b905060006127106003548860800151612243919061396a565b61224d919061382f565b905080876080015161225f9190613817565b8210156122b2577f5349474e45525f414c4c4f57414e43455f4c4f5700000000000000000000000088878151811061229957612299613a95565b6020908102919091010152856122ae816139ea565b9650505b8087608001516122c29190613817565b831015612315577f5349474e45525f42414c414e43455f4c4f5700000000000000000000000000008887815181106122fc576122fc613a95565b602090810291909101015285612311816139ea565b9650505b5093975094955050505050509b509b9950505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146123b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610617565b612710811061241d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f494e56414c49445f4645455f4c494748540000000000000000000000000000006044820152606401610617565b60048190556040518181527f312cc1a9b7287129a22395b9572a3c9ed09ce456f02b519efb34e12bb429eed090602001611566565b60005473ffffffffffffffffffffffffffffffffffffffff1633146124d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610617565b606481111561253e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f4d41585f544f4f5f4849474800000000000000000000000000000000000000006044820152606401610617565b60078190556040518181527f8f4773d92ea1b8ff6e9ea92363a816f089d2042092c31bb82607707d6699b0b390602001611566565b60005473ffffffffffffffffffffffffffffffffffffffff1633146125f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610617565b604d81111561265f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f5343414c455f544f4f5f484947480000000000000000000000000000000000006044820152606401610617565b60068190556040518181527f01d5d03fb73185766e93e2c8300b4fc67782909a607c987c6f76f35c84e2a32590602001611566565b60005473ffffffffffffffffffffffffffffffffffffffff163314612715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610617565b73ffffffffffffffffffffffffffffffffffffffff81166127b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610617565b6127c1816130e6565b50565b6040517f4f7264657228000000000000000000000000000000000000000000000000000060208201527f75696e74323536206e6f6e63652c00000000000000000000000000000000000060268201527f75696e74323536206578706972792c000000000000000000000000000000000060348201527f61646472657373207369676e657257616c6c65742c000000000000000000000060438201527f61646472657373207369676e6572546f6b656e2c00000000000000000000000060588201527f75696e74323536207369676e6572416d6f756e742c0000000000000000000000606c8201527f75696e743235362070726f746f636f6c4665652c00000000000000000000000060818201527f616464726573732073656e64657257616c6c65742c000000000000000000000060958201527f616464726573732073656e646572546f6b656e2c00000000000000000000000060aa8201527f75696e743235362073656e646572416d6f756e7400000000000000000000000060be8201527f290000000000000000000000000000000000000000000000000000000000000060d282015260d301610e1c565b6000806129806101008461382f565b9050600061299061010085613a23565b73ffffffffffffffffffffffffffffffffffffffff861660009081526001602081815260408084208785529091529091205491925081831c811614156129dc5760009350505050610d2b565b73ffffffffffffffffffffffffffffffffffffffff861660009081526001602081815260408084209684529590529390209183901b179055905092915050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052612ab1908590613268565b50505050565b467f000000000000000000000000000000000000000000000000000000000000003814612b40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f434841494e5f49445f4348414e474544000000000000000000000000000000006044820152606401610617565b428911612ba9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4558504952595f504153534544000000000000000000000000000000000000006044820152606401610617565b604080517f4f726465722800000000000000000000000000000000000000000000000000006020808301919091527f75696e74323536206e6f6e63652c00000000000000000000000000000000000060268301527f75696e74323536206578706972792c000000000000000000000000000000000060348301527f61646472657373207369676e657257616c6c65742c000000000000000000000060438301527f61646472657373207369676e6572546f6b656e2c00000000000000000000000060588301527f75696e74323536207369676e6572416d6f756e742c0000000000000000000000606c8301527f75696e743235362070726f746f636f6c4665652c00000000000000000000000060818301527f616464726573732073656e64657257616c6c65742c000000000000000000000060958301527f616464726573732073656e646572546f6b656e2c00000000000000000000000060aa8301527f75696e743235362073656e646572416d6f756e7400000000000000000000000060be8301527f290000000000000000000000000000000000000000000000000000000000000060d2830152825180830360b301815260d38301845280519082012060035460f384019190915261011383018e905261013383018d905273ffffffffffffffffffffffffffffffffffffffff808d16610153850152808c1661017385015261019384018b90526101b3840191909152336101d384015288166101f38301526102138083018890528351808403909101815261023390920190925280519101206000612dfa8286868661315b565b905073ffffffffffffffffffffffffffffffffffffffff8116612e79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f5349474e41545552455f494e56414c49440000000000000000000000000000006044820152606401610617565b612e83818d612971565b612ee9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e4f4e43455f414c52454144595f5553454400000000000000000000000000006044820152606401610617565b8073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff1614612faf5773ffffffffffffffffffffffffffffffffffffffff8a8116600090815260026020526040902054811690821614612faf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f554e415554484f52495a454400000000000000000000000000000000000000006044820152606401610617565b505050505050505050505050565b600061271060035483612fd0919061396a565b612fda919061382f565b90508015612ab1576008546040517f70a0823100000000000000000000000000000000000000000000000000000000815233600482015260009161303f9173ffffffffffffffffffffffffffffffffffffffff909116906370a082319060240161127d565b905080156130b65761306973ffffffffffffffffffffffffffffffffffffffff8616853384612a1c565b6005546130b190859073ffffffffffffffffffffffffffffffffffffffff1661309284866139a7565b73ffffffffffffffffffffffffffffffffffffffff8916929190612a1c565b6130df565b6005546130df9073ffffffffffffffffffffffffffffffffffffffff8781169187911685612a1c565b5050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040517f190100000000000000000000000000000000000000000000000000000000000060208201527fb491fa82c853cca5ffa10821fb2f139e2b5f6e26d18026829745edeee1696755602282015260428101859052600090600190606201604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa158015613236573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe001519695505050505050565b60006132ca826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166133749092919063ffffffff16565b805190915015610ead57808060200190518101906132e89190613656565b610ead576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610617565b60606111f5848460008585843b6133e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610617565b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051613410919061375c565b60006040518083038185875af1925050503d806000811461344d576040519150601f19603f3d011682016040523d82523d6000602084013e613452565b606091505b509150915061346282828661346d565b979650505050505050565b6060831561347c5750816112e8565b82511561348c5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106179190613778565b803573ffffffffffffffffffffffffffffffffffffffff811681146134e457600080fd5b919050565b803560ff811681146134e457600080fd5b60006020828403121561350c57600080fd5b6112e8826134c0565b6000806040838503121561352857600080fd5b613531836134c0565b946020939093013593505050565b60008060008060008060008060008060006101608c8e03121561356157600080fd5b61356a8c6134c0565b9a5060208c0135995060408c0135985061358660608d016134c0565b975061359460808d016134c0565b965060a08c013595506135a960c08d016134c0565b945060e08c013593506135bf6101008d016134e9565b92506101208c013591506101408c013590509295989b509295989b9093969950565b600080602083850312156135f457600080fd5b823567ffffffffffffffff8082111561360c57600080fd5b818501915085601f83011261362057600080fd5b81358181111561362f57600080fd5b8660208260051b850101111561364457600080fd5b60209290920196919550909350505050565b60006020828403121561366857600080fd5b815180151581146112e857600080fd5b60006020828403121561368a57600080fd5b5035919050565b6000602082840312156136a357600080fd5b5051919050565b600080604083850312156136bd57600080fd5b50508035926020909101359150565b6000806000806000806000806000806101408b8d0312156136ec57600080fd5b8a35995060208b0135985061370360408c016134c0565b975061371160608c016134c0565b965060808b0135955061372660a08c016134c0565b945060c08b0135935061373b60e08c016134e9565b92506101008b013591506101208b013590509295989b9194979a5092959850565b6000825161376e8184602087016139be565b9190910192915050565b60208152600082518060208401526137978160408501602087016139be565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b6000604082018483526020604081850152818551808452606086019150828701935060005b8181101561380a578451835293830193918301916001016137ee565b5090979650505050505050565b6000821982111561382a5761382a613a37565b500190565b60008261383e5761383e613a66565b500490565b600181815b8085111561389c57817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0482111561388257613882613a37565b8085161561388f57918102915b93841c9390800290613848565b509250929050565b60006112e883836000826138ba57506001610d2b565b816138c757506000610d2b565b81600181146138dd57600281146138e757613903565b6001915050610d2b565b60ff8411156138f8576138f8613a37565b50506001821b610d2b565b5060208310610133831016604e8410600b8410161715613926575081810a610d2b565b6139308383613843565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0482111561396257613962613a37565b029392505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139a2576139a2613a37565b500290565b6000828210156139b9576139b9613a37565b500390565b60005b838110156139d95781810151838201526020016139c1565b83811115612ab15750506000910152565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a1c57613a1c613a37565b5060010190565b600082613a3257613a32613a66565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220c779e4f57562580ae3c42160bede6b59ae9f85b5ad95b2c948e442a03828fa8d64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000070000000000000000000000009c7005fa2f8476e2331f45f69e0930a4c9eff0c3000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000064000000000000000000000000d161ddcfcc0c2d823021aa26200824efa75218d1
-----Decoded View---------------
Arg [0] : _protocolFee (uint256): 7
Arg [1] : _protocolFeeLight (uint256): 7
Arg [2] : _protocolFeeWallet (address): 0x9C7005Fa2F8476E2331F45f69e0930A4c9eFf0c3
Arg [3] : _rebateScale (uint256): 10
Arg [4] : _rebateMax (uint256): 100
Arg [5] : _staking (address): 0xd161ddCFCC0C2D823021AA26200824Efa75218d1
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [2] : 0000000000000000000000009c7005fa2f8476e2331f45f69e0930a4c9eff0c3
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [5] : 000000000000000000000000d161ddcfcc0c2d823021aa26200824efa75218d1
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.