ERC-20
Overview
Max Total Supply
1,000,000,000 SAMBO
Holders
344
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.457629463058369656 SAMBOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SAMBO
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; contract SAMBO is Context, ERC20, Ownable { using SafeERC20 for IERC20; using Address for address; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; _samboWallets public samboWallets; _buyTaxes public buyTaxes; _sellTaxes public sellTaxes; mapping(address => bool) public _isExcludedFromFees; mapping(address => bool) public pair; mapping(address => bool) public _isEarlyBuyer; mapping (address => uint256) private _balances; bool public starting; bool public swapping; bool private checkEarlyBuyer; uint256 private _supply; uint256 private swapTokensAtAmount; uint256 private earlyBuyerFee; uint256 private earlySellerFee; uint256 public maxWallet; uint256 public maxBuy; uint256 public maxSell; // @dev All wallets are multi-sig gnosis safe's struct _samboWallets { address payable alphaWallet; address payable devWallet; address payable leadWallet; address payable liquidityWallet; address payable investmentWallet; } struct _buyTaxes { uint256 alphaFee; uint256 devFee; uint256 leadFee; uint256 liquidityFee; uint256 investmentFee; uint256 totalBuyFees; } struct _sellTaxes { uint256 alphaFee; uint256 devFee; uint256 leadFee; uint256 liquidityFee; uint256 investmentFee; uint256 totalSellFees; } event MaxBuyUpdated( uint256 MaxBuy ); event MaxSellUpdated( uint256 MaxSell ); event MaxWalletUpdated( uint256 MaxWallet ); event TaxesSent( address taxWallet, uint256 ETHAmount ); event SwapAndLiquify( uint256 liquidityETH, uint256 half ); event FeesUpdated( uint256 AlphaFee, uint256 DevFee, uint256 LeadFee, uint256 LiquidityFee, uint256 InvestmentFee ); event WalletsUpdated( address AlphaWallet, address DevWallet, address LeadWallet, address LiquidityWallet, address InvestmentWallet ); constructor(address payable _alphaWallet, address payable _devWallet, address payable _leadWallet, address payable _liquidityWallet, address payable _investmentWallet) ERC20 ("Samurai Bot", "SAMBO") Ownable(msg.sender) payable { uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Router address for UniSwap setBuyFees(10,20,15,0,5); setSellFees(10,20,15,0,5); earlyBuyerFee = 500; earlySellerFee = 500; _supply = 1 * 10 ** 9 * 10 ** decimals(); starting = true; checkEarlyBuyer = true; samboWallets.alphaWallet = payable(_alphaWallet); samboWallets.devWallet = payable(_devWallet); samboWallets.leadWallet = payable(_leadWallet); samboWallets.liquidityWallet = payable(_liquidityWallet); samboWallets.investmentWallet = payable(_investmentWallet); swapTokensAtAmount = ((_supply * 25) / 10000); maxBuy = ((_supply * 150) / 10000); maxSell = ((_supply * 150) / 10000); maxWallet = ((_supply * 150) / 10000); _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[owner()] = true; _mint(owner(), _supply); } receive() external payable { } function setBuyFees( uint256 _alphaFee, uint256 _devFee, uint256 _leadFee, uint256 _liquidityFee, uint256 _investmentFee ) public onlyOwner { require((_alphaFee + _devFee) <= 50, "Taxes cannot exceed 5%"); buyTaxes.alphaFee = _alphaFee; buyTaxes.devFee = _devFee; buyTaxes.leadFee = _leadFee; buyTaxes.liquidityFee = _liquidityFee; buyTaxes.investmentFee = _investmentFee; buyTaxes.totalBuyFees = (_alphaFee + _devFee + _leadFee + _liquidityFee + _investmentFee); emit FeesUpdated(_alphaFee, _devFee, _leadFee, _liquidityFee, _investmentFee); } function setSellFees( uint256 _alphaFee, uint256 _devFee, uint256 _leadFee, uint256 _liquidityFee, uint256 _investmentFee ) public onlyOwner { require((_alphaFee + _devFee) <= 50, "Taxes cannot exceed 5%"); sellTaxes.alphaFee = _alphaFee; sellTaxes.devFee = _devFee; sellTaxes.leadFee = _leadFee; sellTaxes.liquidityFee = _liquidityFee; sellTaxes.investmentFee = _investmentFee; sellTaxes.totalSellFees = (_alphaFee + _devFee + _leadFee + _liquidityFee + _investmentFee); emit FeesUpdated(_alphaFee, _devFee, _leadFee, _liquidityFee, _investmentFee); } function setWalletAddresses( address payable _alphaWallet, address payable _devWallet, address payable _leadWallet, address payable _liquidityWallet, address payable _investmentWallet ) external onlyOwner { samboWallets.alphaWallet = _alphaWallet; samboWallets.devWallet = _devWallet; samboWallets.leadWallet = _leadWallet; samboWallets.liquidityWallet = _liquidityWallet; samboWallets.investmentWallet = _investmentWallet; emit WalletsUpdated(_alphaWallet, _devWallet, _leadWallet, _liquidityWallet, _investmentWallet); } function setMaxWallet(uint256 _maxWallet) external onlyOwner { require(_maxWallet >= ((_supply * 10) / 1000), "Max Wallet cannot be less than 1.5% of Total Supply"); maxWallet = _maxWallet; emit MaxWalletUpdated(_maxWallet); } function setMaxBuy(uint256 _maxBuy) external onlyOwner { require(_maxBuy >= ((_supply * 5) / 1000), "Max Buy cannot be less than 1.5% of Total Supply"); maxBuy = _maxBuy; emit MaxBuyUpdated(_maxBuy); } function setMaxSell(uint256 _maxSell) external onlyOwner { require(_maxSell >= ((_supply * 5) / 1000), "Max Buy cannot be less than 1.5% of Total Supply"); maxSell = _maxSell; emit MaxSellUpdated(_maxSell); } function burnRoughAmount(uint256 amount) public { _burn(msg.sender, amount * 10 ** decimals()); } function burnExactAmount(uint256 amount) public { _burn(msg.sender, amount); } function addPair(address _uniswap) external onlyOwner { require(starting, "Trading already enabled"); pair[_uniswap] = true; uniswapV2Pair = _uniswap; starting = false; } function disableEarlyBuyerCheck() external onlyOwner { require(checkEarlyBuyer, "This check is already disabled"); checkEarlyBuyer = false; } function updateSwapTokensAtAmount(uint256 swapPercentDivisibleBy10000) external onlyOwner { swapTokensAtAmount = ((totalSupply() * swapPercentDivisibleBy10000) / 10000); } function excludeAddressFromFees(address _excludedAddress) external onlyOwner { require(!_isExcludedFromFees[_excludedAddress], "This address is already excluded from fees"); _isExcludedFromFees[_excludedAddress] = true; } function _update( address from, address to, uint256 amount ) internal override { if(starting) { require(from == owner() || to == owner(), "Trading is not yet enabled"); } if(from != owner() && to != owner() && to != address(0) && to != uniswapV2Pair && !_isExcludedFromFees[to] && !_isExcludedFromFees[from]) { require(amount <= maxBuy, "Transfer amount exceeds the maxTxAmount."); uint256 contractBalanceRecepient = balanceOf(to); require(contractBalanceRecepient + amount <= maxWallet, "Exceeds maximum wallet token amount."); } if(from != owner() && to != owner() && to != address(0) && from != uniswapV2Pair && !_isExcludedFromFees[to] && !_isExcludedFromFees[from]) { require(amount <= maxSell, "Transfer amount exceeds the maxTxAmount."); } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if(canSwap && !swapping && pair[to] && from != address(uniswapV2Router) && from != owner() && to != owner() && !_isExcludedFromFees[to] && !_isExcludedFromFees[from]) { contractTokenBalance = swapTokensAtAmount; if(sellTaxes.liquidityFee > 0) { contractTokenBalance -= (((contractTokenBalance * sellTaxes.liquidityFee) / sellTaxes.totalSellFees) / 2); } swapping = true; if (sellTaxes.totalSellFees > 0) { swapTokensForEth((contractTokenBalance), uniswapV2Router); if (sellTaxes.liquidityFee > 0) { uint256 liquidityETH = ((address(this).balance * sellTaxes.liquidityFee) / sellTaxes.totalSellFees); // add liquidity to uniswap addLiquidity((((swapTokensAtAmount * sellTaxes.liquidityFee) / sellTaxes.totalSellFees) / 2), liquidityETH); emit SwapAndLiquify(liquidityETH, (((swapTokensAtAmount * sellTaxes.liquidityFee) / sellTaxes.totalSellFees) / 2)); } if (sellTaxes.alphaFee > 0) { uint256 alphaAmount = ((address(this).balance * sellTaxes.alphaFee) / sellTaxes.totalSellFees); (bool success, ) = address(samboWallets.alphaWallet).call{value: alphaAmount}(""); require(success, "Failed to send alpha fee"); emit TaxesSent(address(samboWallets.alphaWallet), alphaAmount); } if (sellTaxes.devFee > 0) { uint256 devAmount = ((address(this).balance * sellTaxes.devFee) / sellTaxes.totalSellFees); (bool success, ) = address(samboWallets.devWallet).call{value: devAmount}(""); require(success, "Failed to send dev fee"); emit TaxesSent(address(samboWallets.devWallet), devAmount); } if (sellTaxes.leadFee > 0) { uint256 leadAmount = ((address(this).balance * sellTaxes.leadFee) / sellTaxes.totalSellFees); (bool success, ) = address(samboWallets.leadWallet).call{value: leadAmount}(""); require(success, "Failed to send lead fee"); emit TaxesSent(address(samboWallets.leadWallet), leadAmount); } if (sellTaxes.investmentFee > 0) { uint256 investmentAmount = address(this).balance; (bool success, ) = address(samboWallets.investmentWallet).call{value: investmentAmount}(""); require(success, "Failed to send Investment fee"); emit TaxesSent(address(samboWallets.investmentWallet), investmentAmount); } } swapping = false; } bool takeFee = !swapping; uint256 BuyFees = ((amount * buyTaxes.totalBuyFees) / 1000); uint256 SellFees = ((amount * sellTaxes.totalSellFees) / 1000); uint256 EarlyBuyerFees = ((amount * earlyBuyerFee) / 1000); uint256 EarlySellerFees = ((amount * earlySellerFee) / 1000); // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; super._update(from, to, amount); } else if(!pair[to] && !pair[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { if(_isEarlyBuyer[to] || _isEarlyBuyer[from]) { amount -= EarlyBuyerFees; super._update(from, address(this), EarlyBuyerFees); super._update(from, to, amount); } else { takeFee = false; super._update(from, to, amount); } } if(takeFee) { // if early buyer if(pair[from] && _isEarlyBuyer[to]) { amount -= EarlyBuyerFees; super._update(from, address(this), EarlyBuyerFees); super._update(from, to, amount); } if(pair[to] && _isEarlyBuyer[from]) { amount -= EarlySellerFees; super._update(from, address(this), EarlySellerFees); super._update(from, to, amount); } // if sell else if(pair[to] && sellTaxes.totalSellFees > 0) { amount -= SellFees; super._update(from, address(this), SellFees); super._update(from, to, amount); } // if buy transfer else if(pair[from] && buyTaxes.totalBuyFees > 0) { if(checkEarlyBuyer) { _isEarlyBuyer[to] = true; amount -= EarlyBuyerFees; super._update(from, address(this), EarlyBuyerFees); super._update(from, to, amount); } else { amount -= BuyFees; super._update(from, address(this), BuyFees); super._update(from, to, amount); } } else { super._update(from, to, amount); } } } function swapTokensForEth(uint256 tokenAmount, IUniswapV2Router02 swapRouter) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = swapRouter.WETH(); _approve(address(this), address(swapRouter), tokenAmount); // make the swap swapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(samboWallets.liquidityWallet), block.timestamp ); } }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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 (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"_alphaWallet","type":"address"},{"internalType":"address payable","name":"_devWallet","type":"address"},{"internalType":"address payable","name":"_leadWallet","type":"address"},{"internalType":"address payable","name":"_liquidityWallet","type":"address"},{"internalType":"address payable","name":"_investmentWallet","type":"address"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"AlphaFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"DevFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"LeadFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"LiquidityFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"InvestmentFee","type":"uint256"}],"name":"FeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"MaxBuy","type":"uint256"}],"name":"MaxBuyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"MaxSell","type":"uint256"}],"name":"MaxSellUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"MaxWallet","type":"uint256"}],"name":"MaxWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"liquidityETH","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"half","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"taxWallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"ETHAmount","type":"uint256"}],"name":"TaxesSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"AlphaWallet","type":"address"},{"indexed":false,"internalType":"address","name":"DevWallet","type":"address"},{"indexed":false,"internalType":"address","name":"LeadWallet","type":"address"},{"indexed":false,"internalType":"address","name":"LiquidityWallet","type":"address"},{"indexed":false,"internalType":"address","name":"InvestmentWallet","type":"address"}],"name":"WalletsUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isEarlyBuyer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswap","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnExactAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnRoughAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"alphaFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"},{"internalType":"uint256","name":"leadFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"investmentFee","type":"uint256"},{"internalType":"uint256","name":"totalBuyFees","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableEarlyBuyerCheck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_excludedAddress","type":"address"}],"name":"excludeAddressFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"samboWallets","outputs":[{"internalType":"address payable","name":"alphaWallet","type":"address"},{"internalType":"address payable","name":"devWallet","type":"address"},{"internalType":"address payable","name":"leadWallet","type":"address"},{"internalType":"address payable","name":"liquidityWallet","type":"address"},{"internalType":"address payable","name":"investmentWallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"alphaFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"},{"internalType":"uint256","name":"leadFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"investmentFee","type":"uint256"},{"internalType":"uint256","name":"totalSellFees","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_alphaFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_leadFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_investmentFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuy","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSell","type":"uint256"}],"name":"setMaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_alphaFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_leadFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_investmentFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_alphaWallet","type":"address"},{"internalType":"address payable","name":"_devWallet","type":"address"},{"internalType":"address payable","name":"_leadWallet","type":"address"},{"internalType":"address payable","name":"_liquidityWallet","type":"address"},{"internalType":"address payable","name":"_investmentWallet","type":"address"}],"name":"setWalletAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"starting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapPercentDivisibleBy10000","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052604051620041ae380380620041ae8339810160408190526200002691620016ee565b336040518060400160405280600b81526020016a14d85b5d5c985a48109bdd60aa1b8152506040518060400160405280600581526020016453414d424f60d81b81525081600390816200007a919062001809565b50600462000089828262001809565b5050506001600160a01b038116620000bb57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000c681620002b5565b50600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d17905562000100600a6014600f5f600562000306565b62000113600a6014600f5f600562000402565b6101f460208190556021556200012c6012600a620019e0565b6200013c90633b9aca00620019f7565b601e819055601d805462ff00ff191662010001179055600880546001600160a01b03199081166001600160a01b0389811691909117909255600980548216888416179055600a80548216878416179055600b80548216868416179055600c805490911691841691909117905561271090620001b9906019620019f7565b620001c5919062001a11565b601f55601e5461271090620001dc906096620019f7565b620001e8919062001a11565b602355601e5461271090620001ff906096620019f7565b6200020b919062001a11565b602455601e546127109062000222906096620019f7565b6200022e919062001a11565b602255305f9081526019602081905260408220805460ff1916600190811790915591620002636005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055620002aa620002a16005546001600160a01b031690565b601e54620004f4565b505050505062001b2c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6200031062000530565b60326200031e858762001a31565b11156200036e5760405162461bcd60e51b815260206004820152601660248201527f54617865732063616e6e6f7420657863656564203525000000000000000000006044820152606401620000b2565b600d859055600e849055600f8390556010829055601181905580828462000396878962001a31565b620003a2919062001a31565b620003ae919062001a31565b620003ba919062001a31565b601255604080518681526020810186905290810184905260608101839052608081018290525f805160206200416e8339815191529060a0015b60405180910390a15050505050565b6200040c62000530565b60326200041a858762001a31565b11156200046a5760405162461bcd60e51b815260206004820152601660248201527f54617865732063616e6e6f7420657863656564203525000000000000000000006044820152606401620000b2565b6013859055601484905560158390556016829055601781905580828462000492878962001a31565b6200049e919062001a31565b620004aa919062001a31565b620004b6919062001a31565b601855604080518681526020810186905290810184905260608101839052608081018290525f805160206200416e8339815191529060a001620003f3565b6001600160a01b0382166200051f5760405163ec442f0560e01b81525f6004820152602401620000b2565b6200052c5f838362000561565b5050565b6005546001600160a01b031633146200055f5760405163118cdaa760e01b8152336004820152602401620000b2565b565b601d5460ff1615620005e5576005546001600160a01b03848116911614806200059757506005546001600160a01b038381169116145b620005e55760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f742079657420656e61626c65640000000000006044820152606401620000b2565b6005546001600160a01b038481169116148015906200061257506005546001600160a01b03838116911614155b80156200062757506001600160a01b03821615155b80156200064257506007546001600160a01b03838116911614155b80156200066757506001600160a01b0382165f9081526019602052604090205460ff16155b80156200068c57506001600160a01b0383165f9081526019602052604090205460ff16155b156200076a57602354811115620006e55760405162461bcd60e51b815260206004820152602860248201525f805160206200418e8339815191526044820152673c20b6b7bab73a1760c11b6064820152608401620000b2565b6001600160a01b0382165f908152602081905260409020546022546200070c838362001a31565b1115620007685760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401620000b2565b505b6005546001600160a01b038481169116148015906200079757506005546001600160a01b03838116911614155b8015620007ac57506001600160a01b03821615155b8015620007c757506007546001600160a01b03848116911614155b8015620007ec57506001600160a01b0382165f9081526019602052604090205460ff16155b80156200081157506001600160a01b0383165f9081526019602052604090205460ff16155b156200086a576024548111156200086a5760405162461bcd60e51b815260206004820152602860248201525f805160206200418e8339815191526044820152673c20b6b7bab73a1760c11b6064820152608401620000b2565b305f90815260208190526040902054601f5481108015908190620008965750601d54610100900460ff16155b8015620008ba57506001600160a01b0384165f908152601a602052604090205460ff165b8015620008d557506006546001600160a01b03868116911614155b8015620008f057506005546001600160a01b03868116911614155b80156200090b57506005546001600160a01b03858116911614155b80156200093057506001600160a01b0384165f9081526019602052604090205460ff16155b80156200095557506001600160a01b0385165f9081526019602052604090205460ff16155b1562000ec157601f5460165490925015620009a75760185460165460029190620009809085620019f7565b6200098c919062001a11565b62000998919062001a11565b620009a4908362001a47565b91505b601d805461ff0019166101001790556018541562000eb557600654620009d89083906001600160a01b0316620012a6565b6016541562000aaf576018546016545f9190620009f69047620019f7565b62000a02919062001a11565b601854601654601f5492935062000a41926002929162000a2291620019f7565b62000a2e919062001a11565b62000a3a919062001a11565b8262001404565b601854601654601f547f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148692849260029262000a7d9190620019f7565b62000a89919062001a11565b62000a95919062001a11565b6040805192835260208301919091520160405180910390a1505b6013541562000bb9576018546013545f919062000acd9047620019f7565b62000ad9919062001a11565b6008546040519192505f916001600160a01b039091169083908381818185875af1925050503d805f811462000b2a576040519150601f19603f3d011682016040523d82523d5f602084013e62000b2f565b606091505b505090508062000b825760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420616c7068612066656500000000000000006044820152606401620000b2565b600854604080516001600160a01b039092168252602082018490525f805160206200414e833981519152910160405180910390a150505b6014541562000cc3576018546014545f919062000bd79047620019f7565b62000be3919062001a11565b6009546040519192505f916001600160a01b039091169083908381818185875af1925050503d805f811462000c34576040519150601f19603f3d011682016040523d82523d5f602084013e62000c39565b606091505b505090508062000c8c5760405162461bcd60e51b815260206004820152601660248201527f4661696c656420746f2073656e642064657620666565000000000000000000006044820152606401620000b2565b600954604080516001600160a01b039092168252602082018490525f805160206200414e833981519152910160405180910390a150505b6015541562000dcd576018546015545f919062000ce19047620019f7565b62000ced919062001a11565b600a546040519192505f916001600160a01b039091169083908381818185875af1925050503d805f811462000d3e576040519150601f19603f3d011682016040523d82523d5f602084013e62000d43565b606091505b505090508062000d965760405162461bcd60e51b815260206004820152601760248201527f4661696c656420746f2073656e64206c656164206665650000000000000000006044820152606401620000b2565b600a54604080516001600160a01b039092168252602082018490525f805160206200414e833981519152910160405180910390a150505b6017541562000eb557600c5460405147915f916001600160a01b039091169083908381818185875af1925050503d805f811462000e26576040519150601f19603f3d011682016040523d82523d5f602084013e62000e2b565b606091505b505090508062000e7e5760405162461bcd60e51b815260206004820152601d60248201527f4661696c656420746f2073656e6420496e766573746d656e74206665650000006044820152606401620000b2565b600c54604080516001600160a01b039092168252602082018490525f805160206200414e833981519152910160405180910390a150505b601d805461ff00191690555b601d5460125461010090910460ff1615905f906103e89062000ee49087620019f7565b62000ef0919062001a11565b90505f6103e86013600501548762000f099190620019f7565b62000f15919062001a11565b90505f6103e86020548862000f2b9190620019f7565b62000f37919062001a11565b90505f6103e86021548962000f4d9190620019f7565b62000f59919062001a11565b6001600160a01b038b165f9081526019602052604090205490915060ff168062000f9a57506001600160a01b0389165f9081526019602052604090205460ff165b1562000fb6575f945062000fb08a8a8a620014ba565b620010c3565b6001600160a01b0389165f908152601a602052604090205460ff1615801562000ff757506001600160a01b038a165f908152601a602052604090205460ff16155b80156200101c57506001600160a01b038a165f9081526019602052604090205460ff16155b80156200104157506001600160a01b0389165f9081526019602052604090205460ff16155b15620010c3576001600160a01b0389165f908152601b602052604090205460ff16806200108557506001600160a01b038a165f908152601b602052604090205460ff165b15620010b35762001097828962001a47565b9750620010a68a3084620014ba565b62000fb08a8a8a620014ba565b5f9450620010c38a8a8a620014ba565b84156200129a576001600160a01b038a165f908152601a602052604090205460ff1680156200110957506001600160a01b0389165f908152601b602052604090205460ff165b1562001137576200111b828962001a47565b97506200112a8a3084620014ba565b620011378a8a8a620014ba565b6001600160a01b0389165f908152601a602052604090205460ff1680156200117657506001600160a01b038a165f908152601b602052604090205460ff165b15620011aa5762001188818962001a47565b9750620011978a3083620014ba565b620011a48a8a8a620014ba565b6200129a565b6001600160a01b0389165f908152601a602052604090205460ff168015620011d3575060185415155b15620011f457620011e5838962001a47565b9750620011978a3085620014ba565b6001600160a01b038a165f908152601a602052604090205460ff1680156200121d575060125415155b156200128d57601d5462010000900460ff161562001272576001600160a01b0389165f908152601b60205260409020805460ff1916600117905562001263828962001a47565b9750620011978a3084620014ba565b6200127e848962001a47565b9750620011978a3086620014ba565b6200129a8a8a8a620014ba565b50505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110620012dc57620012dc62001a5d565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001339573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200135f919062001a71565b8160018151811062001375576200137562001a5d565b6001600160a01b03909216602092830291909101909101526200139a308385620015e9565b60405163791ac94760e01b81526001600160a01b0383169063791ac94790620013d09086905f9086903090429060040162001a8f565b5f604051808303815f87803b158015620013e8575f80fd5b505af1158015620013fb573d5f803e3d5ffd5b50505050505050565b6006546200141e9030906001600160a01b031684620015e9565b600654600b5460405163f305d71960e01b8152306004820152602481018590525f6044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af11580156200148c573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190620014b3919062001b00565b5050505050565b6001600160a01b038316620014e8578060025f828254620014dc919062001a31565b909155506200155a9050565b6001600160a01b0383165f90815260208190526040902054818110156200153c5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000b2565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620015785760028054829003905562001596565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620015dc91815260200190565b60405180910390a3505050565b620015f88383836001620015fd565b505050565b6001600160a01b038416620016285760405163e602df0560e01b81525f6004820152602401620000b2565b6001600160a01b0383166200165357604051634a1406b160e11b81525f6004820152602401620000b2565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015620016d057826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051620016c791815260200190565b60405180910390a35b50505050565b6001600160a01b0381168114620016eb575f80fd5b50565b5f805f805f60a0868803121562001703575f80fd5b85516200171081620016d6565b60208701519095506200172381620016d6565b60408701519094506200173681620016d6565b60608701519093506200174981620016d6565b60808701519092506200175c81620016d6565b809150509295509295909350565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200179357607f821691505b602082108103620017b257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620015f8575f81815260208120601f850160051c81016020861015620017e05750805b601f850160051c820191505b818110156200180157828155600101620017ec565b505050505050565b81516001600160401b038111156200182557620018256200176a565b6200183d816200183684546200177e565b84620017b8565b602080601f83116001811462001873575f84156200185b5750858301515b5f19600386901b1c1916600185901b17855562001801565b5f85815260208120601f198616915b82811015620018a35788860151825594840194600190910190840162001882565b5085821015620018c157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200192557815f1904821115620019095762001909620018d1565b808516156200191757918102915b93841c9390800290620018ea565b509250929050565b5f826200193d57506001620019da565b816200194b57505f620019da565b81600181146200196457600281146200196f576200198f565b6001915050620019da565b60ff841115620019835762001983620018d1565b50506001821b620019da565b5060208310610133831016604e8410600b8410161715620019b4575081810a620019da565b620019c08383620018e5565b805f1904821115620019d657620019d6620018d1565b0290505b92915050565b5f620019f060ff8416836200192d565b9392505050565b8082028115828204841417620019da57620019da620018d1565b5f8262001a2c57634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620019da57620019da620018d1565b81810381811115620019da57620019da620018d1565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121562001a82575f80fd5b8151620019f081620016d6565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101562001adf5784516001600160a01b03168352938301939183019160010162001ab8565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f6060848603121562001b13575f80fd5b8351925060208401519150604084015190509250925092565b6126148062001b3a5f395ff3fe608060405260043610610215575f3560e01c8063864701a51161011e578063c1cf53c4116100a8578063ef998cf01161006d578063ef998cf0146106e4578063f2fde38b14610703578063f53bc83514610722578063f66895a314610741578063f8b45b051461076b575f80fd5b8063c1cf53c414610615578063c2b7bbb614610634578063d257b34f14610653578063dd62ed3e14610672578063e0bf7fd1146106b6575f80fd5b806395d89b41116100ee57806395d89b4114610595578063a30780a2146105a9578063a9059cbb146105c8578063b8eb3546146105e7578063be46e9ca146105fc575f80fd5b8063864701a5146104e357806386f7ba461461053a5780638da5cb5b146105595780639146ba0014610576575f80fd5b806347a28b791161019f57806370a082311161016f57806370a082311461043957806370db69d61461046d578063715018a6146104825780637fb992f7146104965780638251449d146104c4575f80fd5b806347a28b79146103ae57806349bd5a5e146103cd5780635d0044ca146103ec5780636541a72c1461040b575f80fd5b80631732cded116101e55780631732cded146102c657806318160ddd146102e457806323b872dd14610302578063313ce5671461032157806333e9f95a1461033c575f80fd5b806306fdde0314610220578063095ea7b31461024a57806314095191146102795780631694505e1461028f575f80fd5b3661021c57005b5f80fd5b34801561022b575f80fd5b50610234610780565b60405161024191906120ec565b60405180910390f35b348015610255575f80fd5b5061026961026436600461214b565b610810565b6040519015158152602001610241565b348015610284575f80fd5b5061028d610829565b005b34801561029a575f80fd5b506006546102ae906001600160a01b031681565b6040516001600160a01b039091168152602001610241565b3480156102d1575f80fd5b50601d5461026990610100900460ff1681565b3480156102ef575f80fd5b506002545b604051908152602001610241565b34801561030d575f80fd5b5061026961031c366004612175565b61089c565b34801561032c575f80fd5b5060405160128152602001610241565b348015610347575f80fd5b50600854600954600a54600b54600c54610374946001600160a01b03908116948116938116928116911685565b604080516001600160a01b03968716815294861660208601529285169284019290925283166060830152909116608082015260a001610241565b3480156103b9575f80fd5b5061028d6103c83660046121b3565b6108bf565b3480156103d8575f80fd5b506007546102ae906001600160a01b031681565b3480156103f7575f80fd5b5061028d6104063660046121ea565b6109b8565b348015610416575f80fd5b50610269610425366004612201565b601b6020525f908152604090205460ff1681565b348015610444575f80fd5b506102f4610453366004612201565b6001600160a01b03165f9081526020819052604090205490565b348015610478575f80fd5b506102f460235481565b34801561048d575f80fd5b5061028d610a83565b3480156104a1575f80fd5b506102696104b0366004612201565b601a6020525f908152604090205460ff1681565b3480156104cf575f80fd5b5061028d6104de366004612223565b610a96565b3480156104ee575f80fd5b50600d54600e54600f5460105460115460125461050d95949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610241565b348015610545575f80fd5b5061028d6105543660046121ea565b610b45565b348015610564575f80fd5b506005546001600160a01b03166102ae565b348015610581575f80fd5b5061028d6105903660046121ea565b610b67565b3480156105a0575f80fd5b50610234610b71565b3480156105b4575f80fd5b5061028d6105c3366004612201565b610b80565b3480156105d3575f80fd5b506102696105e236600461214b565b610c26565b3480156105f2575f80fd5b506102f460245481565b348015610607575f80fd5b50601d546102699060ff1681565b348015610620575f80fd5b5061028d61062f3660046121b3565b610c33565b34801561063f575f80fd5b5061028d61064e366004612201565b610d21565b34801561065e575f80fd5b5061028d61066d3660046121ea565b610dbe565b34801561067d575f80fd5b506102f461068c366004612290565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106c1575f80fd5b506102696106d0366004612201565b60196020525f908152604090205460ff1681565b3480156106ef575f80fd5b5061028d6106fe3660046121ea565b610ded565b34801561070e575f80fd5b5061028d61071d366004612201565b610e65565b34801561072d575f80fd5b5061028d61073c3660046121ea565b610e9f565b34801561074c575f80fd5b5060135460145460155460165460175460185461050d95949392919086565b348015610776575f80fd5b506102f460225481565b60606003805461078f906122c7565b80601f01602080910402602001604051908101604052809291908181526020018280546107bb906122c7565b80156108065780601f106107dd57610100808354040283529160200191610806565b820191905f5260205f20905b8154815290600101906020018083116107e957829003601f168201915b5050505050905090565b5f3361081d818585610f17565b60019150505b92915050565b610831610f29565b601d5462010000900460ff1661088e5760405162461bcd60e51b815260206004820152601e60248201527f5468697320636865636b20697320616c72656164792064697361626c6564000060448201526064015b60405180910390fd5b601d805462ff000019169055565b5f336108a9858285610f56565b6108b4858585610fd1565b506001949350505050565b6108c7610f29565b60326108d38587612313565b111561091a5760405162461bcd60e51b815260206004820152601660248201527554617865732063616e6e6f742065786365656420352560501b6044820152606401610885565b600d859055600e849055600f839055601082905560118190558082846109408789612313565b61094a9190612313565b6109549190612313565b61095e9190612313565b601255604080518681526020810186905290810184905260608101839052608081018290527f96b67df2c4648b38ada47da86f80d0a256df93150752a7b365ca487cab934e649060a0015b60405180910390a15050505050565b6109c0610f29565b6103e8601e54600a6109d29190612326565b6109dc919061233d565b811015610a475760405162461bcd60e51b815260206004820152603360248201527f4d61782057616c6c65742063616e6e6f74206265206c657373207468616e20316044820152722e3525206f6620546f74616c20537570706c7960681b6064820152608401610885565b60228190556040518181527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace906020015b60405180910390a150565b610a8b610f29565b610a945f61102e565b565b610a9e610f29565b600880546001600160a01b038781166001600160a01b03199283168117909355600980548883169084168117909155600a80548884169085168117909155600b80548885169086168117909155600c805494881694909516841790945560408051958652602086019290925290840152606083019190915260808201527f654d7b2aae17033735cc313e55b9ad4ae1e819e3faf9473267ae7cc18e8c79b89060a0016109a9565b610b6433610b556012600a61243c565b610b5f9084612326565b61107f565b50565b610b64338261107f565b60606004805461078f906122c7565b610b88610f29565b6001600160a01b0381165f9081526019602052604090205460ff1615610c035760405162461bcd60e51b815260206004820152602a60248201527f54686973206164647265737320697320616c7265616479206578636c756465646044820152692066726f6d206665657360b01b6064820152608401610885565b6001600160a01b03165f908152601960205260409020805460ff19166001179055565b5f3361081d818585610fd1565b610c3b610f29565b6032610c478587612313565b1115610c8e5760405162461bcd60e51b815260206004820152601660248201527554617865732063616e6e6f742065786365656420352560501b6044820152606401610885565b60138590556014849055601583905560168290556017819055808284610cb48789612313565b610cbe9190612313565b610cc89190612313565b610cd29190612313565b601855604080518681526020810186905290810184905260608101839052608081018290527f96b67df2c4648b38ada47da86f80d0a256df93150752a7b365ca487cab934e649060a0016109a9565b610d29610f29565b601d5460ff16610d7b5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c726561647920656e61626c65640000000000000000006044820152606401610885565b6001600160a01b03165f818152601a60205260409020805460ff19908116600117909155600780546001600160a01b031916909217909155601d80549091169055565b610dc6610f29565b61271081610dd360025490565b610ddd9190612326565b610de7919061233d565b601f5550565b610df5610f29565b6103e8601e546005610e079190612326565b610e11919061233d565b811015610e305760405162461bcd60e51b81526004016108859061244a565b60248190556040518181527f8cb932c00cca355157a67f473924919428fd2cbcecd95a75a359997e4824898290602001610a78565b610e6d610f29565b6001600160a01b038116610e9657604051631e4fbdf760e01b81525f6004820152602401610885565b610b648161102e565b610ea7610f29565b6103e8601e546005610eb99190612326565b610ec3919061233d565b811015610ee25760405162461bcd60e51b81526004016108859061244a565b60238190556040518181527ffb72e27d53f87822df1c737cbe3061c70cf0f271ec9c9b993d6f4cb3da276d4690602001610a78565b610f2483838360016110b7565b505050565b6005546001600160a01b03163314610a945760405163118cdaa760e01b8152336004820152602401610885565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610fcb5781811015610fbd57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610885565b610fcb84848484035f6110b7565b50505050565b6001600160a01b038316610ffa57604051634b637e8f60e11b81525f6004820152602401610885565b6001600160a01b0382166110235760405163ec442f0560e01b81525f6004820152602401610885565b610f24838383611189565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166110a857604051634b637e8f60e11b81525f6004820152602401610885565b6110b3825f83611189565b5050565b6001600160a01b0384166110e05760405163e602df0560e01b81525f6004820152602401610885565b6001600160a01b03831661110957604051634a1406b160e11b81525f6004820152602401610885565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610fcb57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161117b91815260200190565b60405180910390a350505050565b601d5460ff1615611209576005546001600160a01b03848116911614806111bd57506005546001600160a01b038381169116145b6112095760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f742079657420656e61626c65640000000000006044820152606401610885565b6005546001600160a01b0384811691161480159061123557506005546001600160a01b03838116911614155b801561124957506001600160a01b03821615155b801561126357506007546001600160a01b03838116911614155b801561128757506001600160a01b0382165f9081526019602052604090205460ff16155b80156112ab57506001600160a01b0383165f9081526019602052604090205460ff16155b15611353576023548111156112d25760405162461bcd60e51b81526004016108859061249a565b6001600160a01b0382165f908152602081905260409020546022546112f78383612313565b11156113515760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610885565b505b6005546001600160a01b0384811691161480159061137f57506005546001600160a01b03838116911614155b801561139357506001600160a01b03821615155b80156113ad57506007546001600160a01b03848116911614155b80156113d157506001600160a01b0382165f9081526019602052604090205460ff16155b80156113f557506001600160a01b0383165f9081526019602052604090205460ff16155b1561141c5760245481111561141c5760405162461bcd60e51b81526004016108859061249a565b305f90815260208190526040902054601f54811080159081906114475750601d54610100900460ff16155b801561146a57506001600160a01b0384165f908152601a602052604090205460ff165b801561148457506006546001600160a01b03868116911614155b801561149e57506005546001600160a01b03868116911614155b80156114b857506005546001600160a01b03858116911614155b80156114dc57506001600160a01b0384165f9081526019602052604090205460ff16155b801561150057506001600160a01b0385165f9081526019602052604090205460ff16155b15611a2157601f546016549092501561154857601854601654600291906115279085612326565b611531919061233d565b61153b919061233d565b61154590836124e2565b91505b601d805461ff00191661010017905560185415611a15576006546115769083906001600160a01b0316611dbe565b6016541561163a576018546016545f91906115919047612326565b61159b919061233d565b601854601654601f549293506115d292600292916115b891612326565b6115c2919061233d565b6115cc919061233d565b82611f15565b601854601654601f547f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148692849260029261160c9190612326565b611616919061233d565b611620919061233d565b6040805192835260208301919091520160405180910390a1505b6013541561173a576018546013545f91906116559047612326565b61165f919061233d565b6008546040519192505f916001600160a01b039091169083908381818185875af1925050503d805f81146116ae576040519150601f19603f3d011682016040523d82523d5f602084013e6116b3565b606091505b50509050806117045760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420616c7068612066656500000000000000006044820152606401610885565b600854604080516001600160a01b039092168252602082018490525f805160206125bf833981519152910160405180910390a150505b60145415611833576018546014545f91906117559047612326565b61175f919061233d565b6009546040519192505f916001600160a01b039091169083908381818185875af1925050503d805f81146117ae576040519150601f19603f3d011682016040523d82523d5f602084013e6117b3565b606091505b50509050806117fd5760405162461bcd60e51b81526020600482015260166024820152754661696c656420746f2073656e64206465762066656560501b6044820152606401610885565b600954604080516001600160a01b039092168252602082018490525f805160206125bf833981519152910160405180910390a150505b60155415611933576018546015545f919061184e9047612326565b611858919061233d565b600a546040519192505f916001600160a01b039091169083908381818185875af1925050503d805f81146118a7576040519150601f19603f3d011682016040523d82523d5f602084013e6118ac565b606091505b50509050806118fd5760405162461bcd60e51b815260206004820152601760248201527f4661696c656420746f2073656e64206c656164206665650000000000000000006044820152606401610885565b600a54604080516001600160a01b039092168252602082018490525f805160206125bf833981519152910160405180910390a150505b60175415611a1557600c5460405147915f916001600160a01b039091169083908381818185875af1925050503d805f8114611989576040519150601f19603f3d011682016040523d82523d5f602084013e61198e565b606091505b50509050806119df5760405162461bcd60e51b815260206004820152601d60248201527f4661696c656420746f2073656e6420496e766573746d656e74206665650000006044820152606401610885565b600c54604080516001600160a01b039092168252602082018490525f805160206125bf833981519152910160405180910390a150505b601d805461ff00191690555b601d5460125461010090910460ff1615905f906103e890611a429087612326565b611a4c919061233d565b90505f6103e860136005015487611a639190612326565b611a6d919061233d565b90505f6103e860205488611a819190612326565b611a8b919061233d565b90505f6103e860215489611a9f9190612326565b611aa9919061233d565b6001600160a01b038b165f9081526019602052604090205490915060ff1680611ae957506001600160a01b0389165f9081526019602052604090205460ff165b15611b01575f9450611afc8a8a8a611fc6565b611c00565b6001600160a01b0389165f908152601a602052604090205460ff16158015611b4157506001600160a01b038a165f908152601a602052604090205460ff16155b8015611b6557506001600160a01b038a165f9081526019602052604090205460ff16155b8015611b8957506001600160a01b0389165f9081526019602052604090205460ff16155b15611c00576001600160a01b0389165f908152601b602052604090205460ff1680611bcb57506001600160a01b038a165f908152601b602052604090205460ff165b15611bf257611bda82896124e2565b9750611be78a3084611fc6565b611afc8a8a8a611fc6565b5f9450611c008a8a8a611fc6565b8415611db2576001600160a01b038a165f908152601a602052604090205460ff168015611c4457506001600160a01b0389165f908152601b602052604090205460ff165b15611c6b57611c5382896124e2565b9750611c608a3084611fc6565b611c6b8a8a8a611fc6565b6001600160a01b0389165f908152601a602052604090205460ff168015611ca957506001600160a01b038a165f908152601b602052604090205460ff165b15611cd557611cb881896124e2565b9750611cc58a3083611fc6565b611cd08a8a8a611fc6565b611db2565b6001600160a01b0389165f908152601a602052604090205460ff168015611cfd575060185415155b15611d1957611d0c83896124e2565b9750611cc58a3085611fc6565b6001600160a01b038a165f908152601a602052604090205460ff168015611d41575060125415155b15611da757601d5462010000900460ff1615611d90576001600160a01b0389165f908152601b60205260409020805460ff19166001179055611d8382896124e2565b9750611cc58a3084611fc6565b611d9a84896124e2565b9750611cc58a3086611fc6565b611db28a8a8a611fc6565b50505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611df157611df16124f5565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e719190612509565b81600181518110611e8457611e846124f5565b60200260200101906001600160a01b031690816001600160a01b031681525050611eaf308385610f17565b60405163791ac94760e01b81526001600160a01b0383169063791ac94790611ee39086905f90869030904290600401612524565b5f604051808303815f87803b158015611efa575f80fd5b505af1158015611f0c573d5f803e3d5ffd5b50505050505050565b600654611f2d9030906001600160a01b031684610f17565b600654600b5460405163f305d71960e01b8152306004820152602481018590525f6044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af1158015611f9a573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611fbf9190612593565b5050505050565b6001600160a01b038316611ff0578060025f828254611fe59190612313565b909155506120609050565b6001600160a01b0383165f90815260208190526040902054818110156120425760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610885565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661207c5760028054829003905561209a565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516120df91815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015612117578581018301518582016040015282016120fb565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b64575f80fd5b5f806040838503121561215c575f80fd5b823561216781612137565b946020939093013593505050565b5f805f60608486031215612187575f80fd5b833561219281612137565b925060208401356121a281612137565b929592945050506040919091013590565b5f805f805f60a086880312156121c7575f80fd5b505083359560208501359550604085013594606081013594506080013592509050565b5f602082840312156121fa575f80fd5b5035919050565b5f60208284031215612211575f80fd5b813561221c81612137565b9392505050565b5f805f805f60a08688031215612237575f80fd5b853561224281612137565b9450602086013561225281612137565b9350604086013561226281612137565b9250606086013561227281612137565b9150608086013561228281612137565b809150509295509295909350565b5f80604083850312156122a1575f80fd5b82356122ac81612137565b915060208301356122bc81612137565b809150509250929050565b600181811c908216806122db57607f821691505b6020821081036122f957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610823576108236122ff565b8082028115828204841417610823576108236122ff565b5f8261235757634e487b7160e01b5f52601260045260245ffd5b500490565b600181815b8085111561239657815f190482111561237c5761237c6122ff565b8085161561238957918102915b93841c9390800290612361565b509250929050565b5f826123ac57506001610823565b816123b857505f610823565b81600181146123ce57600281146123d8576123f4565b6001915050610823565b60ff8411156123e9576123e96122ff565b50506001821b610823565b5060208310610133831016604e8410600b8410161715612417575081810a610823565b612421838361235c565b805f1904821115612434576124346122ff565b029392505050565b5f61221c60ff84168361239e565b60208082526030908201527f4d6178204275792063616e6e6f74206265206c657373207468616e20312e352560408201526f206f6620546f74616c20537570706c7960801b606082015260800190565b60208082526028908201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546040820152673c20b6b7bab73a1760c11b606082015260800190565b81810381811115610823576108236122ff565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612519575f80fd5b815161221c81612137565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156125725784516001600160a01b03168352938301939183019160010161254d565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f606084860312156125a5575f80fd5b835192506020840151915060408401519050925092509256fef72b186c56dd49d50d68088bc3e82e03989c98f3ff7ed48033c45e36cb9fa333a26469706673582212203bcfd1711ef3ca0456eeaa5cc66422e5c6c31617df5bebaf4ed3a12796de26fc64736f6c63430008140033f72b186c56dd49d50d68088bc3e82e03989c98f3ff7ed48033c45e36cb9fa33396b67df2c4648b38ada47da86f80d0a256df93150752a7b365ca487cab934e645472616e7366657220616d6f756e74206578636565647320746865206d61785400000000000000000000000054fc96b9da9fbdc4eaa4c62226041fb0037b937800000000000000000000000076e8ced6a92d4aabd51edfa4114eaad9c1d19c130000000000000000000000002b9ab6ed51775f774c0a033fe1c447f4d4ef31a4000000000000000000000000023886bdeb2a654320d20067117781f7c352fca90000000000000000000000002fc297f638021aa912714b7afbe39923e55b030b
Deployed Bytecode
0x608060405260043610610215575f3560e01c8063864701a51161011e578063c1cf53c4116100a8578063ef998cf01161006d578063ef998cf0146106e4578063f2fde38b14610703578063f53bc83514610722578063f66895a314610741578063f8b45b051461076b575f80fd5b8063c1cf53c414610615578063c2b7bbb614610634578063d257b34f14610653578063dd62ed3e14610672578063e0bf7fd1146106b6575f80fd5b806395d89b41116100ee57806395d89b4114610595578063a30780a2146105a9578063a9059cbb146105c8578063b8eb3546146105e7578063be46e9ca146105fc575f80fd5b8063864701a5146104e357806386f7ba461461053a5780638da5cb5b146105595780639146ba0014610576575f80fd5b806347a28b791161019f57806370a082311161016f57806370a082311461043957806370db69d61461046d578063715018a6146104825780637fb992f7146104965780638251449d146104c4575f80fd5b806347a28b79146103ae57806349bd5a5e146103cd5780635d0044ca146103ec5780636541a72c1461040b575f80fd5b80631732cded116101e55780631732cded146102c657806318160ddd146102e457806323b872dd14610302578063313ce5671461032157806333e9f95a1461033c575f80fd5b806306fdde0314610220578063095ea7b31461024a57806314095191146102795780631694505e1461028f575f80fd5b3661021c57005b5f80fd5b34801561022b575f80fd5b50610234610780565b60405161024191906120ec565b60405180910390f35b348015610255575f80fd5b5061026961026436600461214b565b610810565b6040519015158152602001610241565b348015610284575f80fd5b5061028d610829565b005b34801561029a575f80fd5b506006546102ae906001600160a01b031681565b6040516001600160a01b039091168152602001610241565b3480156102d1575f80fd5b50601d5461026990610100900460ff1681565b3480156102ef575f80fd5b506002545b604051908152602001610241565b34801561030d575f80fd5b5061026961031c366004612175565b61089c565b34801561032c575f80fd5b5060405160128152602001610241565b348015610347575f80fd5b50600854600954600a54600b54600c54610374946001600160a01b03908116948116938116928116911685565b604080516001600160a01b03968716815294861660208601529285169284019290925283166060830152909116608082015260a001610241565b3480156103b9575f80fd5b5061028d6103c83660046121b3565b6108bf565b3480156103d8575f80fd5b506007546102ae906001600160a01b031681565b3480156103f7575f80fd5b5061028d6104063660046121ea565b6109b8565b348015610416575f80fd5b50610269610425366004612201565b601b6020525f908152604090205460ff1681565b348015610444575f80fd5b506102f4610453366004612201565b6001600160a01b03165f9081526020819052604090205490565b348015610478575f80fd5b506102f460235481565b34801561048d575f80fd5b5061028d610a83565b3480156104a1575f80fd5b506102696104b0366004612201565b601a6020525f908152604090205460ff1681565b3480156104cf575f80fd5b5061028d6104de366004612223565b610a96565b3480156104ee575f80fd5b50600d54600e54600f5460105460115460125461050d95949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c001610241565b348015610545575f80fd5b5061028d6105543660046121ea565b610b45565b348015610564575f80fd5b506005546001600160a01b03166102ae565b348015610581575f80fd5b5061028d6105903660046121ea565b610b67565b3480156105a0575f80fd5b50610234610b71565b3480156105b4575f80fd5b5061028d6105c3366004612201565b610b80565b3480156105d3575f80fd5b506102696105e236600461214b565b610c26565b3480156105f2575f80fd5b506102f460245481565b348015610607575f80fd5b50601d546102699060ff1681565b348015610620575f80fd5b5061028d61062f3660046121b3565b610c33565b34801561063f575f80fd5b5061028d61064e366004612201565b610d21565b34801561065e575f80fd5b5061028d61066d3660046121ea565b610dbe565b34801561067d575f80fd5b506102f461068c366004612290565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156106c1575f80fd5b506102696106d0366004612201565b60196020525f908152604090205460ff1681565b3480156106ef575f80fd5b5061028d6106fe3660046121ea565b610ded565b34801561070e575f80fd5b5061028d61071d366004612201565b610e65565b34801561072d575f80fd5b5061028d61073c3660046121ea565b610e9f565b34801561074c575f80fd5b5060135460145460155460165460175460185461050d95949392919086565b348015610776575f80fd5b506102f460225481565b60606003805461078f906122c7565b80601f01602080910402602001604051908101604052809291908181526020018280546107bb906122c7565b80156108065780601f106107dd57610100808354040283529160200191610806565b820191905f5260205f20905b8154815290600101906020018083116107e957829003601f168201915b5050505050905090565b5f3361081d818585610f17565b60019150505b92915050565b610831610f29565b601d5462010000900460ff1661088e5760405162461bcd60e51b815260206004820152601e60248201527f5468697320636865636b20697320616c72656164792064697361626c6564000060448201526064015b60405180910390fd5b601d805462ff000019169055565b5f336108a9858285610f56565b6108b4858585610fd1565b506001949350505050565b6108c7610f29565b60326108d38587612313565b111561091a5760405162461bcd60e51b815260206004820152601660248201527554617865732063616e6e6f742065786365656420352560501b6044820152606401610885565b600d859055600e849055600f839055601082905560118190558082846109408789612313565b61094a9190612313565b6109549190612313565b61095e9190612313565b601255604080518681526020810186905290810184905260608101839052608081018290527f96b67df2c4648b38ada47da86f80d0a256df93150752a7b365ca487cab934e649060a0015b60405180910390a15050505050565b6109c0610f29565b6103e8601e54600a6109d29190612326565b6109dc919061233d565b811015610a475760405162461bcd60e51b815260206004820152603360248201527f4d61782057616c6c65742063616e6e6f74206265206c657373207468616e20316044820152722e3525206f6620546f74616c20537570706c7960681b6064820152608401610885565b60228190556040518181527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace906020015b60405180910390a150565b610a8b610f29565b610a945f61102e565b565b610a9e610f29565b600880546001600160a01b038781166001600160a01b03199283168117909355600980548883169084168117909155600a80548884169085168117909155600b80548885169086168117909155600c805494881694909516841790945560408051958652602086019290925290840152606083019190915260808201527f654d7b2aae17033735cc313e55b9ad4ae1e819e3faf9473267ae7cc18e8c79b89060a0016109a9565b610b6433610b556012600a61243c565b610b5f9084612326565b61107f565b50565b610b64338261107f565b60606004805461078f906122c7565b610b88610f29565b6001600160a01b0381165f9081526019602052604090205460ff1615610c035760405162461bcd60e51b815260206004820152602a60248201527f54686973206164647265737320697320616c7265616479206578636c756465646044820152692066726f6d206665657360b01b6064820152608401610885565b6001600160a01b03165f908152601960205260409020805460ff19166001179055565b5f3361081d818585610fd1565b610c3b610f29565b6032610c478587612313565b1115610c8e5760405162461bcd60e51b815260206004820152601660248201527554617865732063616e6e6f742065786365656420352560501b6044820152606401610885565b60138590556014849055601583905560168290556017819055808284610cb48789612313565b610cbe9190612313565b610cc89190612313565b610cd29190612313565b601855604080518681526020810186905290810184905260608101839052608081018290527f96b67df2c4648b38ada47da86f80d0a256df93150752a7b365ca487cab934e649060a0016109a9565b610d29610f29565b601d5460ff16610d7b5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c726561647920656e61626c65640000000000000000006044820152606401610885565b6001600160a01b03165f818152601a60205260409020805460ff19908116600117909155600780546001600160a01b031916909217909155601d80549091169055565b610dc6610f29565b61271081610dd360025490565b610ddd9190612326565b610de7919061233d565b601f5550565b610df5610f29565b6103e8601e546005610e079190612326565b610e11919061233d565b811015610e305760405162461bcd60e51b81526004016108859061244a565b60248190556040518181527f8cb932c00cca355157a67f473924919428fd2cbcecd95a75a359997e4824898290602001610a78565b610e6d610f29565b6001600160a01b038116610e9657604051631e4fbdf760e01b81525f6004820152602401610885565b610b648161102e565b610ea7610f29565b6103e8601e546005610eb99190612326565b610ec3919061233d565b811015610ee25760405162461bcd60e51b81526004016108859061244a565b60238190556040518181527ffb72e27d53f87822df1c737cbe3061c70cf0f271ec9c9b993d6f4cb3da276d4690602001610a78565b610f2483838360016110b7565b505050565b6005546001600160a01b03163314610a945760405163118cdaa760e01b8152336004820152602401610885565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610fcb5781811015610fbd57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610885565b610fcb84848484035f6110b7565b50505050565b6001600160a01b038316610ffa57604051634b637e8f60e11b81525f6004820152602401610885565b6001600160a01b0382166110235760405163ec442f0560e01b81525f6004820152602401610885565b610f24838383611189565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166110a857604051634b637e8f60e11b81525f6004820152602401610885565b6110b3825f83611189565b5050565b6001600160a01b0384166110e05760405163e602df0560e01b81525f6004820152602401610885565b6001600160a01b03831661110957604051634a1406b160e11b81525f6004820152602401610885565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610fcb57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161117b91815260200190565b60405180910390a350505050565b601d5460ff1615611209576005546001600160a01b03848116911614806111bd57506005546001600160a01b038381169116145b6112095760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f742079657420656e61626c65640000000000006044820152606401610885565b6005546001600160a01b0384811691161480159061123557506005546001600160a01b03838116911614155b801561124957506001600160a01b03821615155b801561126357506007546001600160a01b03838116911614155b801561128757506001600160a01b0382165f9081526019602052604090205460ff16155b80156112ab57506001600160a01b0383165f9081526019602052604090205460ff16155b15611353576023548111156112d25760405162461bcd60e51b81526004016108859061249a565b6001600160a01b0382165f908152602081905260409020546022546112f78383612313565b11156113515760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610885565b505b6005546001600160a01b0384811691161480159061137f57506005546001600160a01b03838116911614155b801561139357506001600160a01b03821615155b80156113ad57506007546001600160a01b03848116911614155b80156113d157506001600160a01b0382165f9081526019602052604090205460ff16155b80156113f557506001600160a01b0383165f9081526019602052604090205460ff16155b1561141c5760245481111561141c5760405162461bcd60e51b81526004016108859061249a565b305f90815260208190526040902054601f54811080159081906114475750601d54610100900460ff16155b801561146a57506001600160a01b0384165f908152601a602052604090205460ff165b801561148457506006546001600160a01b03868116911614155b801561149e57506005546001600160a01b03868116911614155b80156114b857506005546001600160a01b03858116911614155b80156114dc57506001600160a01b0384165f9081526019602052604090205460ff16155b801561150057506001600160a01b0385165f9081526019602052604090205460ff16155b15611a2157601f546016549092501561154857601854601654600291906115279085612326565b611531919061233d565b61153b919061233d565b61154590836124e2565b91505b601d805461ff00191661010017905560185415611a15576006546115769083906001600160a01b0316611dbe565b6016541561163a576018546016545f91906115919047612326565b61159b919061233d565b601854601654601f549293506115d292600292916115b891612326565b6115c2919061233d565b6115cc919061233d565b82611f15565b601854601654601f547f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148692849260029261160c9190612326565b611616919061233d565b611620919061233d565b6040805192835260208301919091520160405180910390a1505b6013541561173a576018546013545f91906116559047612326565b61165f919061233d565b6008546040519192505f916001600160a01b039091169083908381818185875af1925050503d805f81146116ae576040519150601f19603f3d011682016040523d82523d5f602084013e6116b3565b606091505b50509050806117045760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420616c7068612066656500000000000000006044820152606401610885565b600854604080516001600160a01b039092168252602082018490525f805160206125bf833981519152910160405180910390a150505b60145415611833576018546014545f91906117559047612326565b61175f919061233d565b6009546040519192505f916001600160a01b039091169083908381818185875af1925050503d805f81146117ae576040519150601f19603f3d011682016040523d82523d5f602084013e6117b3565b606091505b50509050806117fd5760405162461bcd60e51b81526020600482015260166024820152754661696c656420746f2073656e64206465762066656560501b6044820152606401610885565b600954604080516001600160a01b039092168252602082018490525f805160206125bf833981519152910160405180910390a150505b60155415611933576018546015545f919061184e9047612326565b611858919061233d565b600a546040519192505f916001600160a01b039091169083908381818185875af1925050503d805f81146118a7576040519150601f19603f3d011682016040523d82523d5f602084013e6118ac565b606091505b50509050806118fd5760405162461bcd60e51b815260206004820152601760248201527f4661696c656420746f2073656e64206c656164206665650000000000000000006044820152606401610885565b600a54604080516001600160a01b039092168252602082018490525f805160206125bf833981519152910160405180910390a150505b60175415611a1557600c5460405147915f916001600160a01b039091169083908381818185875af1925050503d805f8114611989576040519150601f19603f3d011682016040523d82523d5f602084013e61198e565b606091505b50509050806119df5760405162461bcd60e51b815260206004820152601d60248201527f4661696c656420746f2073656e6420496e766573746d656e74206665650000006044820152606401610885565b600c54604080516001600160a01b039092168252602082018490525f805160206125bf833981519152910160405180910390a150505b601d805461ff00191690555b601d5460125461010090910460ff1615905f906103e890611a429087612326565b611a4c919061233d565b90505f6103e860136005015487611a639190612326565b611a6d919061233d565b90505f6103e860205488611a819190612326565b611a8b919061233d565b90505f6103e860215489611a9f9190612326565b611aa9919061233d565b6001600160a01b038b165f9081526019602052604090205490915060ff1680611ae957506001600160a01b0389165f9081526019602052604090205460ff165b15611b01575f9450611afc8a8a8a611fc6565b611c00565b6001600160a01b0389165f908152601a602052604090205460ff16158015611b4157506001600160a01b038a165f908152601a602052604090205460ff16155b8015611b6557506001600160a01b038a165f9081526019602052604090205460ff16155b8015611b8957506001600160a01b0389165f9081526019602052604090205460ff16155b15611c00576001600160a01b0389165f908152601b602052604090205460ff1680611bcb57506001600160a01b038a165f908152601b602052604090205460ff165b15611bf257611bda82896124e2565b9750611be78a3084611fc6565b611afc8a8a8a611fc6565b5f9450611c008a8a8a611fc6565b8415611db2576001600160a01b038a165f908152601a602052604090205460ff168015611c4457506001600160a01b0389165f908152601b602052604090205460ff165b15611c6b57611c5382896124e2565b9750611c608a3084611fc6565b611c6b8a8a8a611fc6565b6001600160a01b0389165f908152601a602052604090205460ff168015611ca957506001600160a01b038a165f908152601b602052604090205460ff165b15611cd557611cb881896124e2565b9750611cc58a3083611fc6565b611cd08a8a8a611fc6565b611db2565b6001600160a01b0389165f908152601a602052604090205460ff168015611cfd575060185415155b15611d1957611d0c83896124e2565b9750611cc58a3085611fc6565b6001600160a01b038a165f908152601a602052604090205460ff168015611d41575060125415155b15611da757601d5462010000900460ff1615611d90576001600160a01b0389165f908152601b60205260409020805460ff19166001179055611d8382896124e2565b9750611cc58a3084611fc6565b611d9a84896124e2565b9750611cc58a3086611fc6565b611db28a8a8a611fc6565b50505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611df157611df16124f5565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e719190612509565b81600181518110611e8457611e846124f5565b60200260200101906001600160a01b031690816001600160a01b031681525050611eaf308385610f17565b60405163791ac94760e01b81526001600160a01b0383169063791ac94790611ee39086905f90869030904290600401612524565b5f604051808303815f87803b158015611efa575f80fd5b505af1158015611f0c573d5f803e3d5ffd5b50505050505050565b600654611f2d9030906001600160a01b031684610f17565b600654600b5460405163f305d71960e01b8152306004820152602481018590525f6044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af1158015611f9a573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611fbf9190612593565b5050505050565b6001600160a01b038316611ff0578060025f828254611fe59190612313565b909155506120609050565b6001600160a01b0383165f90815260208190526040902054818110156120425760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610885565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661207c5760028054829003905561209a565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516120df91815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015612117578581018301518582016040015282016120fb565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b64575f80fd5b5f806040838503121561215c575f80fd5b823561216781612137565b946020939093013593505050565b5f805f60608486031215612187575f80fd5b833561219281612137565b925060208401356121a281612137565b929592945050506040919091013590565b5f805f805f60a086880312156121c7575f80fd5b505083359560208501359550604085013594606081013594506080013592509050565b5f602082840312156121fa575f80fd5b5035919050565b5f60208284031215612211575f80fd5b813561221c81612137565b9392505050565b5f805f805f60a08688031215612237575f80fd5b853561224281612137565b9450602086013561225281612137565b9350604086013561226281612137565b9250606086013561227281612137565b9150608086013561228281612137565b809150509295509295909350565b5f80604083850312156122a1575f80fd5b82356122ac81612137565b915060208301356122bc81612137565b809150509250929050565b600181811c908216806122db57607f821691505b6020821081036122f957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610823576108236122ff565b8082028115828204841417610823576108236122ff565b5f8261235757634e487b7160e01b5f52601260045260245ffd5b500490565b600181815b8085111561239657815f190482111561237c5761237c6122ff565b8085161561238957918102915b93841c9390800290612361565b509250929050565b5f826123ac57506001610823565b816123b857505f610823565b81600181146123ce57600281146123d8576123f4565b6001915050610823565b60ff8411156123e9576123e96122ff565b50506001821b610823565b5060208310610133831016604e8410600b8410161715612417575081810a610823565b612421838361235c565b805f1904821115612434576124346122ff565b029392505050565b5f61221c60ff84168361239e565b60208082526030908201527f4d6178204275792063616e6e6f74206265206c657373207468616e20312e352560408201526f206f6620546f74616c20537570706c7960801b606082015260800190565b60208082526028908201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546040820152673c20b6b7bab73a1760c11b606082015260800190565b81810381811115610823576108236122ff565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612519575f80fd5b815161221c81612137565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156125725784516001600160a01b03168352938301939183019160010161254d565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f606084860312156125a5575f80fd5b835192506020840151915060408401519050925092509256fef72b186c56dd49d50d68088bc3e82e03989c98f3ff7ed48033c45e36cb9fa333a26469706673582212203bcfd1711ef3ca0456eeaa5cc66422e5c6c31617df5bebaf4ed3a12796de26fc64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000054fc96b9da9fbdc4eaa4c62226041fb0037b937800000000000000000000000076e8ced6a92d4aabd51edfa4114eaad9c1d19c130000000000000000000000002b9ab6ed51775f774c0a033fe1c447f4d4ef31a4000000000000000000000000023886bdeb2a654320d20067117781f7c352fca90000000000000000000000002fc297f638021aa912714b7afbe39923e55b030b
-----Decoded View---------------
Arg [0] : _alphaWallet (address): 0x54fC96B9DA9fbDC4eAa4C62226041fB0037B9378
Arg [1] : _devWallet (address): 0x76e8cED6A92d4aAbD51EdFA4114eaAD9c1D19C13
Arg [2] : _leadWallet (address): 0x2B9aB6ed51775F774C0A033fe1c447F4d4ef31a4
Arg [3] : _liquidityWallet (address): 0x023886bDEb2A654320d20067117781f7C352FCa9
Arg [4] : _investmentWallet (address): 0x2FC297f638021aA912714B7aFbe39923E55B030b
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 00000000000000000000000054fc96b9da9fbdc4eaa4c62226041fb0037b9378
Arg [1] : 00000000000000000000000076e8ced6a92d4aabd51edfa4114eaad9c1d19c13
Arg [2] : 0000000000000000000000002b9ab6ed51775f774c0a033fe1c447f4d4ef31a4
Arg [3] : 000000000000000000000000023886bdeb2a654320d20067117781f7c352fca9
Arg [4] : 0000000000000000000000002fc297f638021aa912714b7afbe39923e55b030b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.