NejuNEJUTokenTracker|Etherscan (2024)

NejuNEJUTokenTracker|Etherscan (1)

Neju (NEJU)

Sponsored

NejuNEJUTokenTracker|Etherscan (2)MoonPay

Buy crypto with our non-custodial and fully decentralised platform. Buy Now!

15M+ users trust MoonPay. Checkout with your preferred payment method.

MetaMaskManage your web3 everything with MetaMask Portfolio. Try Now!Ready to onboard to Ethereum? With MetaMask Portfolio, you're in control.

NexoBuy crypto and start earning up to 16% interest automatically. Buy CryptoGet up to 0.5% cashback per purchase and receive daily interest.

Sponsored

MetaMaskMeet MetaMask Portfolio - your key to getting more out of web3. Try NowReady to simplify your web3 experience? Try the all-in-one web3 app trusted by millions worldwide.

NejuNEJUTokenTracker|Etherscan (6)CEX.IO

Claim YourMysteryBoxFor A Guaranteed Crypto Prize CLAIM NOW

Opt-in, make your first trade on Exchange Plus & receive random crypto rewards from 10,000 SHIB, to 0.01 BTC.

Sponsored

Сoins.game100 free spins for registration. Spin now!Everyday giveaways up to 100 ETH, Lucky Spins. Deposit BONUS 300% and Cashbacks!

Celsius Casino- $400 Freespins - Instant Withdraw - No KYC - 200% Bonus. Spin Now!9 years old Licensed Crypto Casino, Instant Withdraw 24/7, 6000+ Slots available, Paypal Deposit, Instant Live Support 24/7, 30% Rakeback.

Sponsored

Feature Tip: Add private address tag to any address under My Name Tag !

ERC-20

  • Validate Token Balance
  • Check previous token balance
  • Add Token to MetaMask (Web3)
  • Update Token Info
  • Update Name Tag or Label
  • Submit Burn Details
  • Report/Flag Address

Overview

Max Total Supply

1,000,000,000 NEJU

Holders

56

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

0x387525dFAf4b96941eCE110BbCf7C18a82524200

Filtered by Token Holder

0xdAC17F958D2ee523a2206206994597C13D831ec7

Tether: USDT Stablecoin

Balance

19,400,000 NEJU

Value

$0.00

  • Transfers
  • Info
  • Contract
  • Analytics
  • CardsNew

0xdac17f958d2ee523a2206206994597c13d831ec7

Loading...

Loading

Loading...

Loading

Loading...

Loading

Click here to update the token information / general information

#ExchangePairPrice24H Volume% Volume
  • Code
  • Read Contract
  • Write Contract

Contract Source Code Verified (Exact Match)

Contract Name:

Neju

Compiler Version

v0.8.17+commit.8df45f5f

Optimization Enabled:

Yes with 200 runs

Other Settings:

default evmVersion, Unlicense license

Contract Source Code (Solidity)

NejuNEJUTokenTracker|Etherscan (13)NejuNEJUTokenTracker|Etherscan (14)IDE

    - function _msgSender() interface IERC20 - function totalSupply() - function balanceOf(address account) - function transfer(address recipient, ... - function allowance(address owner, add ... - function approve(address spender, uin ... - function transferFrom( contract Ownable is Context - function owner() - function renounceOwnership() - function transferOwnership(address ne ... library SafeMath - function add(uint256 a, uint256 b) - function sub(uint256 a, uint256 b) - function sub( - function mul(uint256 a, uint256 b) - function div(uint256 a, uint256 b) - function div( interface IUniswapV2Factory - function createPair(address tokenA, a ... interface IUniswapV2Router02 - function swapExactTokensForETHSupport ... - function factory() - function WETH() - function addLiquidityETH( contract Neju is Context, IERC20, ... * - function name() - function symbol() - function decimals() - function totalSupply() - function balanceOf(address account) - function transfer(address recipient, ... - function allowance(address owner, add ... - function approve(address spender, uin ... - function transferFrom( - function tokenFromReflection(uint256 ... - function removeAllFee() - function restoreAllFee() - function _approve( - function _transfer( - function swapTokensForEth(uint256 tok ... - function sendETHToFee(uint256 amount) - function setTrading(bool _tradingOpen ... - function manualswap() - function manualsend() - function blockBots(address[] memory b ... - function unblockBot(address notbot) - function _tokenTransfer( - function _transferStandard( - function _takeTeam(uint256 tTeam) - function _reflectFee(uint256 rFee, ui ... - function _getValues(uint256 tAmount) - function _getTValues( - function _getRValues( - function _getRate() - function _getCurrentSupply() - function setMinSwapTokensThreshold(ui ... - function toggleSwap(bool _swapEnabled ... - function setMaxTxnAmount(uint256 maxT ... - function setMaxWalletSize(uint256 max ... - function excludeMultipleAccountsFromF ...
  • Similar
  • Sol2Uml
  • Submit Audit
  • Compare
/** *Submitted for verification at Etherscan.io on 2022-10-07*//** max wallet 2% tax 3%//SPDX-License-Identifier: Unlicensed */pragma solidity ^0.8.9;abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; }}interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval( address indexed owner, address indexed spender, uint256 value );}contract Ownable is Context { address private _owner; address private _previousOwner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; }}library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; }}interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair);}interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity );}contract Neju is Context, IERC20, Ownable { using SafeMath for uint256; string private constant _name = "Neju"; string private constant _symbol = "NEJU"; uint8 private constant _decimals = 9; mapping(address => uint256) private _rOwned; mapping(address => uint256) private _tOwned; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1000000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _redisFeeOnBuy = 0; uint256 private _taxFeeOnBuy = 3; uint256 private _redisFeeOnSell = 0; uint256 private _taxFeeOnSell = 3; //Original Fee uint256 private _redisFee = _redisFeeOnSell; uint256 private _taxFee = _taxFeeOnSell; uint256 private _previousredisFee = _redisFee; uint256 private _previoustaxFee = _taxFee; mapping(address => bool) public bots; mapping (address => uint256) public _buyMap; address payable private _developmentAddress = payable(0x3D600892d22A1a44F3278f83Fd54CcDE6b24b5Be); address payable private _marketingAddress = payable(0x3D600892d22A1a44F3278f83Fd54CcDE6b24b5Be); IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = true; uint256 public _maxTxAmount = 20000000 * 10**9; uint256 public _maxWalletSize = 20000000 * 10**9; uint256 public _swapTokensAtAmount = 10000 * 10**9; event MaxTxAmountUpdated(uint256 _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor() { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);// uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_developmentAddress] = true; _isExcludedFromFee[_marketingAddress] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function tokenFromReflection(uint256 rAmount) private view returns (uint256) { require( rAmount <= _rTotal, "Amount must be less than total reflections" ); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function removeAllFee() private { if (_redisFee == 0 && _taxFee == 0) return; _previousredisFee = _redisFee; _previoustaxFee = _taxFee; _redisFee = 0; _taxFee = 0; } function restoreAllFee() private { _redisFee = _previousredisFee; _taxFee = _previoustaxFee; } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if (from != owner() && to != owner()) { //Trade start check if (!tradingOpen) { require(from == owner(), "TOKEN: This account cannot send tokens until trading is enabled"); } require(amount <= _maxTxAmount, "TOKEN: Max Transaction Limit"); require(!bots[from] && !bots[to], "TOKEN: Your account is blacklisted!"); if(to != uniswapV2Pair) { require(balanceOf(to) + amount < _maxWalletSize, "TOKEN: Balance exceeds wallet size!"); } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= _swapTokensAtAmount; if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } if (canSwap && !inSwap && from != uniswapV2Pair && swapEnabled && !_isExcludedFromFee[from] && !_isExcludedFromFee[to]) { swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } bool takeFee = true; //Transfer Tokens if ((_isExcludedFromFee[from] || _isExcludedFromFee[to]) || (from != uniswapV2Pair && to != uniswapV2Pair)) { takeFee = false; } else { //Set Fee for Buys if(from == uniswapV2Pair && to != address(uniswapV2Router)) { _redisFee = _redisFeeOnBuy; _taxFee = _taxFeeOnBuy; } //Set Fee for Sells if (to == uniswapV2Pair && from != address(uniswapV2Router)) { _redisFee = _redisFeeOnSell; _taxFee = _taxFeeOnSell; } } _tokenTransfer(from, to, amount, takeFee); } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { _marketingAddress.transfer(amount); } function setTrading(bool _tradingOpen) public onlyOwner { tradingOpen = _tradingOpen; } function manualswap() external { require(_msgSender() == _developmentAddress || _msgSender() == _marketingAddress); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() external { require(_msgSender() == _developmentAddress || _msgSender() == _marketingAddress); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function blockBots(address[] memory bots_) public onlyOwner { for (uint256 i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function unblockBot(address notbot) public onlyOwner { bots[notbot] = false; } function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee ) private { if (!takeFee) removeAllFee(); _transferStandard(sender, recipient, amount); if (!takeFee) restoreAllFee(); } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeTeam(uint256 tTeam) private { uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } receive() external payable {} function _getValues(uint256 tAmount) private view returns ( uint256, uint256, uint256, uint256, uint256, uint256 ) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _redisFee, _taxFee); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tTeam, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam); } function _getTValues( uint256 tAmount, uint256 redisFee, uint256 taxFee ) private pure returns ( uint256, uint256, uint256 ) { uint256 tFee = tAmount.mul(redisFee).div(100); uint256 tTeam = tAmount.mul(taxFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam); return (tTransferAmount, tFee, tTeam); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate ) private pure returns ( uint256, uint256, uint256 ) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns (uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } //Set minimum tokens required to swap. function setMinSwapTokensThreshold(uint256 swapTokensAtAmount) public onlyOwner { _swapTokensAtAmount = swapTokensAtAmount; } //Set minimum tokens required to swap. function toggleSwap(bool _swapEnabled) public onlyOwner { swapEnabled = _swapEnabled; } //Set maximum transaction function setMaxTxnAmount(uint256 maxTxAmount) public onlyOwner { _maxTxAmount = maxTxAmount; } function setMaxWalletSize(uint256 maxWalletSize) public onlyOwner { _maxWalletSize = maxWalletSize; } function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner { for(uint256 i = 0; i < accounts.length; i++) { _isExcludedFromFee[accounts[i]] = excluded; } }}

Contract Security Audit

  • No Contract Security Audit Submitted- Submit Audit Here

Contract ABI

  • JSON Format
  • RAW/Text Format
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_buyMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"amount","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":"address[]","name":"bots_","type":"address[]"}],"name":"blockBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"setMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapTokensAtAmount","type":"uint256"}],"name":"setMinSwapTokensThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_tradingOpen","type":"bool"}],"name":"setTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapEnabled","type":"bool"}],"name":"toggleSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","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":[{"internalType":"address","name":"notbot","type":"address"}],"name":"unblockBot","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"},{"stateMutability":"payable","type":"receive"}]

Contract Creation Code

Decompile Bytecode Switch to Opcodes View

60806040526200001a670de0b6b3a764000060001962000362565b620000289060001962000385565b6006556000600881905560036009819055600a829055600b819055600c829055600d819055600e91909155600f55601280546001600160a01b0319908116733d600892d22a1a44f3278f83fd54ccde6b24b5be9081179092556013805490911690911790556015805461ffff60a81b1916600160b01b17905566470de4df82000060168190556017556509184e72a000601855348015620000c857600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506006543360009081526002602090815260409182902092909255601480546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155815163c45a015560e01b815291519092839263c45a015592600480830193928290030181865afa15801562000186573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ac9190620003ad565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001fa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002209190620003ad565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200026e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002949190620003ad565b601580546001600160a01b0319166001600160a01b03928316179055600080548216815260056020526040808220805460ff1990811660019081179092553084528284208054821683179055601254851684528284208054821683179055601354909416835291208054909216179055336001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef670de0b6b3a76400006040516200035391815260200190565b60405180910390a350620003df565b6000826200038057634e487b7160e01b600052601260045260246000fd5b500690565b81810381811115620003a757634e487b7160e01b600052601160045260246000fd5b92915050565b600060208284031215620003c057600080fd5b81516001600160a01b0381168114620003d857600080fd5b9392505050565b611d4780620003ef6000396000f3fe6080604052600436106101c55760003560e01c806374010ece116100f757806398a5c31511610095578063c492f04611610064578063c492f04614610524578063dd62ed3e14610544578063ea1644d51461058a578063f2fde38b146105aa57600080fd5b806398a5c3151461049f578063a9059cbb146104bf578063bfd79284146104df578063c3c8cd801461050f57600080fd5b80638da5cb5b116100d15780638da5cb5b1461041e5780638f70ccf71461043c5780638f9a55c01461045c57806395d89b411461047257600080fd5b806374010ece146103bb5780637d1db4a5146103db5780637f2feddc146103f157600080fd5b8063313ce567116101645780636d8aa8f81161013e5780636d8aa8f8146103515780636fc3eaec1461037157806370a0823114610386578063715018a6146103a657600080fd5b8063313ce567146102f557806349bd5a5e146103115780636b9990531461033157600080fd5b80631694505e116101a05780631694505e1461026257806318160ddd1461029a57806323b872dd146102bf5780632fd689e3146102df57600080fd5b8062b8cf2a146101d157806306fdde03146101f3578063095ea7b31461023257600080fd5b366101cc57005b600080fd5b3480156101dd57600080fd5b506101f16101ec3660046118e4565b6105ca565b005b3480156101ff57600080fd5b506040805180820190915260048152634e656a7560e01b60208201525b60405161022991906119a9565b60405180910390f35b34801561023e57600080fd5b5061025261024d3660046119f7565b610669565b6040519015158152602001610229565b34801561026e57600080fd5b50601454610282906001600160a01b031681565b6040516001600160a01b039091168152602001610229565b3480156102a657600080fd5b50670de0b6b3a76400005b604051908152602001610229565b3480156102cb57600080fd5b506102526102da366004611a23565b610680565b3480156102eb57600080fd5b506102b160185481565b34801561030157600080fd5b5060405160098152602001610229565b34801561031d57600080fd5b50601554610282906001600160a01b031681565b34801561033d57600080fd5b506101f161034c366004611a64565b6106e9565b34801561035d57600080fd5b506101f161036c366004611a91565b610734565b34801561037d57600080fd5b506101f161077c565b34801561039257600080fd5b506102b16103a1366004611a64565b6107c7565b3480156103b257600080fd5b506101f16107e9565b3480156103c757600080fd5b506101f16103d6366004611aac565b61085d565b3480156103e757600080fd5b506102b160165481565b3480156103fd57600080fd5b506102b161040c366004611a64565b60116020526000908152604090205481565b34801561042a57600080fd5b506000546001600160a01b0316610282565b34801561044857600080fd5b506101f1610457366004611a91565b61088c565b34801561046857600080fd5b506102b160175481565b34801561047e57600080fd5b506040805180820190915260048152634e454a5560e01b602082015261021c565b3480156104ab57600080fd5b506101f16104ba366004611aac565b6108d4565b3480156104cb57600080fd5b506102526104da3660046119f7565b610903565b3480156104eb57600080fd5b506102526104fa366004611a64565b60106020526000908152604090205460ff1681565b34801561051b57600080fd5b506101f1610910565b34801561053057600080fd5b506101f161053f366004611ac5565b610964565b34801561055057600080fd5b506102b161055f366004611b49565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561059657600080fd5b506101f16105a5366004611aac565b610a05565b3480156105b657600080fd5b506101f16105c5366004611a64565b610a34565b6000546001600160a01b031633146105fd5760405162461bcd60e51b81526004016105f490611b82565b60405180910390fd5b60005b81518110156106655760016010600084848151811061062157610621611bb7565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061065d81611be3565b915050610600565b5050565b6000610676338484610b1e565b5060015b92915050565b600061068d848484610c42565b6106df84336106da85604051806060016040528060288152602001611cea602891396001600160a01b038a166000908152600460209081526040808320338452909152902054919061117e565b610b1e565b5060019392505050565b6000546001600160a01b031633146107135760405162461bcd60e51b81526004016105f490611b82565b6001600160a01b03166000908152601060205260409020805460ff19169055565b6000546001600160a01b0316331461075e5760405162461bcd60e51b81526004016105f490611b82565b60158054911515600160b01b0260ff60b01b19909216919091179055565b6012546001600160a01b0316336001600160a01b031614806107b157506013546001600160a01b0316336001600160a01b0316145b6107ba57600080fd5b476107c4816111b8565b50565b6001600160a01b03811660009081526002602052604081205461067a906111f2565b6000546001600160a01b031633146108135760405162461bcd60e51b81526004016105f490611b82565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146108875760405162461bcd60e51b81526004016105f490611b82565b601655565b6000546001600160a01b031633146108b65760405162461bcd60e51b81526004016105f490611b82565b60158054911515600160a01b0260ff60a01b19909216919091179055565b6000546001600160a01b031633146108fe5760405162461bcd60e51b81526004016105f490611b82565b601855565b6000610676338484610c42565b6012546001600160a01b0316336001600160a01b0316148061094557506013546001600160a01b0316336001600160a01b0316145b61094e57600080fd5b6000610959306107c7565b90506107c481611276565b6000546001600160a01b0316331461098e5760405162461bcd60e51b81526004016105f490611b82565b60005b828110156109ff5781600560008686858181106109b0576109b0611bb7565b90506020020160208101906109c59190611a64565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806109f781611be3565b915050610991565b50505050565b6000546001600160a01b03163314610a2f5760405162461bcd60e51b81526004016105f490611b82565b601755565b6000546001600160a01b03163314610a5e5760405162461bcd60e51b81526004016105f490611b82565b6001600160a01b038116610ac35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f4565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610b805760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105f4565b6001600160a01b038216610be15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105f4565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ca65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105f4565b6001600160a01b038216610d085760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105f4565b60008111610d6a5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105f4565b6000546001600160a01b03848116911614801590610d9657506000546001600160a01b03838116911614155b1561107757601554600160a01b900460ff16610e2f576000546001600160a01b03848116911614610e2f5760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c65640060648201526084016105f4565b601654811115610e815760405162461bcd60e51b815260206004820152601c60248201527f544f4b454e3a204d6178205472616e73616374696f6e204c696d69740000000060448201526064016105f4565b6001600160a01b03831660009081526010602052604090205460ff16158015610ec357506001600160a01b03821660009081526010602052604090205460ff16155b610f1b5760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a20596f7572206163636f756e7420697320626c61636b6c69737460448201526265642160e81b60648201526084016105f4565b6015546001600160a01b03838116911614610fa05760175481610f3d846107c7565b610f479190611bfc565b10610fa05760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b60648201526084016105f4565b6000610fab306107c7565b601854601654919250821015908210610fc45760165491505b808015610fdb5750601554600160a81b900460ff16155b8015610ff557506015546001600160a01b03868116911614155b801561100a5750601554600160b01b900460ff165b801561102f57506001600160a01b03851660009081526005602052604090205460ff16155b801561105457506001600160a01b03841660009081526005602052604090205460ff16155b156110745761106282611276565b47801561107257611072476111b8565b505b50505b6001600160a01b03831660009081526005602052604090205460019060ff16806110b957506001600160a01b03831660009081526005602052604090205460ff165b806110eb57506015546001600160a01b038581169116148015906110eb57506015546001600160a01b03848116911614155b156110f857506000611172565b6015546001600160a01b03858116911614801561112357506014546001600160a01b03848116911614155b1561113557600854600c55600954600d555b6015546001600160a01b03848116911614801561116057506014546001600160a01b03858116911614155b1561117257600a54600c55600b54600d555b6109ff848484846113f0565b600081848411156111a25760405162461bcd60e51b81526004016105f491906119a9565b5060006111af8486611c0f565b95945050505050565b6013546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610665573d6000803e3d6000fd5b60006006548211156112595760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016105f4565b600061126361141e565b905061126f8382611441565b9392505050565b6015805460ff60a81b1916600160a81b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106112be576112be611bb7565b6001600160a01b03928316602091820292909201810191909152601454604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611317573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133b9190611c22565b8160018151811061134e5761134e611bb7565b6001600160a01b0392831660209182029290920101526014546113749130911684610b1e565b60145460405163791ac94760e01b81526001600160a01b039091169063791ac947906113ad908590600090869030904290600401611c3f565b600060405180830381600087803b1580156113c757600080fd5b505af11580156113db573d6000803e3d6000fd5b50506015805460ff60a81b1916905550505050565b806113fd576113fd611483565b6114088484846114b1565b806109ff576109ff600e54600c55600f54600d55565b600080600061142b6115a8565b909250905061143a8282611441565b9250505090565b600061126f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506115e8565b600c541580156114935750600d54155b1561149a57565b600c8054600e55600d8054600f5560009182905555565b6000806000806000806114c387611616565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506114f59087611673565b6001600160a01b03808b1660009081526002602052604080822093909355908a168152205461152490866116b5565b6001600160a01b03891660009081526002602052604090205561154681611714565b611550848361175e565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161159591815260200190565b60405180910390a3505050505050505050565b6006546000908190670de0b6b3a76400006115c38282611441565b8210156115df57505060065492670de0b6b3a764000092509050565b90939092509050565b600081836116095760405162461bcd60e51b81526004016105f491906119a9565b5060006111af8486611cb0565b60008060008060008060008060006116338a600c54600d54611782565b925092509250600061164361141e565b905060008060006116568e8787876117d7565b919e509c509a509598509396509194505050505091939550919395565b600061126f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061117e565b6000806116c28385611bfc565b90508381101561126f5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105f4565b600061171e61141e565b9050600061172c8383611827565b3060009081526002602052604090205490915061174990826116b5565b30600090815260026020526040902055505050565b60065461176b9083611673565b60065560075461177b90826116b5565b6007555050565b600080808061179c60646117968989611827565b90611441565b905060006117af60646117968a89611827565b905060006117c7826117c18b86611673565b90611673565b9992985090965090945050505050565b60008080806117e68886611827565b905060006117f48887611827565b905060006118028888611827565b90506000611814826117c18686611673565b939b939a50919850919650505050505050565b6000826000036118395750600061067a565b60006118458385611cd2565b9050826118528583611cb0565b1461126f5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016105f4565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146107c457600080fd5b80356118df816118bf565b919050565b600060208083850312156118f757600080fd5b823567ffffffffffffffff8082111561190f57600080fd5b818501915085601f83011261192357600080fd5b813581811115611935576119356118a9565b8060051b604051601f19603f8301168101818110858211171561195a5761195a6118a9565b60405291825284820192508381018501918883111561197857600080fd5b938501935b8285101561199d5761198e856118d4565b8452938501939285019261197d565b98975050505050505050565b600060208083528351808285015260005b818110156119d6578581018301518582016040015282016119ba565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215611a0a57600080fd5b8235611a15816118bf565b946020939093013593505050565b600080600060608486031215611a3857600080fd5b8335611a43816118bf565b92506020840135611a53816118bf565b929592945050506040919091013590565b600060208284031215611a7657600080fd5b813561126f816118bf565b803580151581146118df57600080fd5b600060208284031215611aa357600080fd5b61126f82611a81565b600060208284031215611abe57600080fd5b5035919050565b600080600060408486031215611ada57600080fd5b833567ffffffffffffffff80821115611af257600080fd5b818601915086601f830112611b0657600080fd5b813581811115611b1557600080fd5b8760208260051b8501011115611b2a57600080fd5b602092830195509350611b409186019050611a81565b90509250925092565b60008060408385031215611b5c57600080fd5b8235611b67816118bf565b91506020830135611b77816118bf565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611bf557611bf5611bcd565b5060010190565b8082018082111561067a5761067a611bcd565b8181038181111561067a5761067a611bcd565b600060208284031215611c3457600080fd5b815161126f816118bf565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611c8f5784516001600160a01b031683529383019391830191600101611c6a565b50506001600160a01b03969096166060850152505050608001529392505050565b600082611ccd57634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761067a5761067a611bcd56fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220ecdc40fef95f5ba87700080d79c05a23664180f2511330e68545cb81f4dba93264736f6c63430008110033


Deployed Bytecode

0x6080604052600436106101c55760003560e01c806374010ece116100f757806398a5c31511610095578063c492f04611610064578063c492f04614610524578063dd62ed3e14610544578063ea1644d51461058a578063f2fde38b146105aa57600080fd5b806398a5c3151461049f578063a9059cbb146104bf578063bfd79284146104df578063c3c8cd801461050f57600080fd5b80638da5cb5b116100d15780638da5cb5b1461041e5780638f70ccf71461043c5780638f9a55c01461045c57806395d89b411461047257600080fd5b806374010ece146103bb5780637d1db4a5146103db5780637f2feddc146103f157600080fd5b8063313ce567116101645780636d8aa8f81161013e5780636d8aa8f8146103515780636fc3eaec1461037157806370a0823114610386578063715018a6146103a657600080fd5b8063313ce567146102f557806349bd5a5e146103115780636b9990531461033157600080fd5b80631694505e116101a05780631694505e1461026257806318160ddd1461029a57806323b872dd146102bf5780632fd689e3146102df57600080fd5b8062b8cf2a146101d157806306fdde03146101f3578063095ea7b31461023257600080fd5b366101cc57005b600080fd5b3480156101dd57600080fd5b506101f16101ec3660046118e4565b6105ca565b005b3480156101ff57600080fd5b506040805180820190915260048152634e656a7560e01b60208201525b60405161022991906119a9565b60405180910390f35b34801561023e57600080fd5b5061025261024d3660046119f7565b610669565b6040519015158152602001610229565b34801561026e57600080fd5b50601454610282906001600160a01b031681565b6040516001600160a01b039091168152602001610229565b3480156102a657600080fd5b50670de0b6b3a76400005b604051908152602001610229565b3480156102cb57600080fd5b506102526102da366004611a23565b610680565b3480156102eb57600080fd5b506102b160185481565b34801561030157600080fd5b5060405160098152602001610229565b34801561031d57600080fd5b50601554610282906001600160a01b031681565b34801561033d57600080fd5b506101f161034c366004611a64565b6106e9565b34801561035d57600080fd5b506101f161036c366004611a91565b610734565b34801561037d57600080fd5b506101f161077c565b34801561039257600080fd5b506102b16103a1366004611a64565b6107c7565b3480156103b257600080fd5b506101f16107e9565b3480156103c757600080fd5b506101f16103d6366004611aac565b61085d565b3480156103e757600080fd5b506102b160165481565b3480156103fd57600080fd5b506102b161040c366004611a64565b60116020526000908152604090205481565b34801561042a57600080fd5b506000546001600160a01b0316610282565b34801561044857600080fd5b506101f1610457366004611a91565b61088c565b34801561046857600080fd5b506102b160175481565b34801561047e57600080fd5b506040805180820190915260048152634e454a5560e01b602082015261021c565b3480156104ab57600080fd5b506101f16104ba366004611aac565b6108d4565b3480156104cb57600080fd5b506102526104da3660046119f7565b610903565b3480156104eb57600080fd5b506102526104fa366004611a64565b60106020526000908152604090205460ff1681565b34801561051b57600080fd5b506101f1610910565b34801561053057600080fd5b506101f161053f366004611ac5565b610964565b34801561055057600080fd5b506102b161055f366004611b49565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561059657600080fd5b506101f16105a5366004611aac565b610a05565b3480156105b657600080fd5b506101f16105c5366004611a64565b610a34565b6000546001600160a01b031633146105fd5760405162461bcd60e51b81526004016105f490611b82565b60405180910390fd5b60005b81518110156106655760016010600084848151811061062157610621611bb7565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061065d81611be3565b915050610600565b5050565b6000610676338484610b1e565b5060015b92915050565b600061068d848484610c42565b6106df84336106da85604051806060016040528060288152602001611cea602891396001600160a01b038a166000908152600460209081526040808320338452909152902054919061117e565b610b1e565b5060019392505050565b6000546001600160a01b031633146107135760405162461bcd60e51b81526004016105f490611b82565b6001600160a01b03166000908152601060205260409020805460ff19169055565b6000546001600160a01b0316331461075e5760405162461bcd60e51b81526004016105f490611b82565b60158054911515600160b01b0260ff60b01b19909216919091179055565b6012546001600160a01b0316336001600160a01b031614806107b157506013546001600160a01b0316336001600160a01b0316145b6107ba57600080fd5b476107c4816111b8565b50565b6001600160a01b03811660009081526002602052604081205461067a906111f2565b6000546001600160a01b031633146108135760405162461bcd60e51b81526004016105f490611b82565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146108875760405162461bcd60e51b81526004016105f490611b82565b601655565b6000546001600160a01b031633146108b65760405162461bcd60e51b81526004016105f490611b82565b60158054911515600160a01b0260ff60a01b19909216919091179055565b6000546001600160a01b031633146108fe5760405162461bcd60e51b81526004016105f490611b82565b601855565b6000610676338484610c42565b6012546001600160a01b0316336001600160a01b0316148061094557506013546001600160a01b0316336001600160a01b0316145b61094e57600080fd5b6000610959306107c7565b90506107c481611276565b6000546001600160a01b0316331461098e5760405162461bcd60e51b81526004016105f490611b82565b60005b828110156109ff5781600560008686858181106109b0576109b0611bb7565b90506020020160208101906109c59190611a64565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806109f781611be3565b915050610991565b50505050565b6000546001600160a01b03163314610a2f5760405162461bcd60e51b81526004016105f490611b82565b601755565b6000546001600160a01b03163314610a5e5760405162461bcd60e51b81526004016105f490611b82565b6001600160a01b038116610ac35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f4565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610b805760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105f4565b6001600160a01b038216610be15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105f4565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ca65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105f4565b6001600160a01b038216610d085760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105f4565b60008111610d6a5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105f4565b6000546001600160a01b03848116911614801590610d9657506000546001600160a01b03838116911614155b1561107757601554600160a01b900460ff16610e2f576000546001600160a01b03848116911614610e2f5760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c65640060648201526084016105f4565b601654811115610e815760405162461bcd60e51b815260206004820152601c60248201527f544f4b454e3a204d6178205472616e73616374696f6e204c696d69740000000060448201526064016105f4565b6001600160a01b03831660009081526010602052604090205460ff16158015610ec357506001600160a01b03821660009081526010602052604090205460ff16155b610f1b5760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a20596f7572206163636f756e7420697320626c61636b6c69737460448201526265642160e81b60648201526084016105f4565b6015546001600160a01b03838116911614610fa05760175481610f3d846107c7565b610f479190611bfc565b10610fa05760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b60648201526084016105f4565b6000610fab306107c7565b601854601654919250821015908210610fc45760165491505b808015610fdb5750601554600160a81b900460ff16155b8015610ff557506015546001600160a01b03868116911614155b801561100a5750601554600160b01b900460ff165b801561102f57506001600160a01b03851660009081526005602052604090205460ff16155b801561105457506001600160a01b03841660009081526005602052604090205460ff16155b156110745761106282611276565b47801561107257611072476111b8565b505b50505b6001600160a01b03831660009081526005602052604090205460019060ff16806110b957506001600160a01b03831660009081526005602052604090205460ff165b806110eb57506015546001600160a01b038581169116148015906110eb57506015546001600160a01b03848116911614155b156110f857506000611172565b6015546001600160a01b03858116911614801561112357506014546001600160a01b03848116911614155b1561113557600854600c55600954600d555b6015546001600160a01b03848116911614801561116057506014546001600160a01b03858116911614155b1561117257600a54600c55600b54600d555b6109ff848484846113f0565b600081848411156111a25760405162461bcd60e51b81526004016105f491906119a9565b5060006111af8486611c0f565b95945050505050565b6013546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610665573d6000803e3d6000fd5b60006006548211156112595760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016105f4565b600061126361141e565b905061126f8382611441565b9392505050565b6015805460ff60a81b1916600160a81b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106112be576112be611bb7565b6001600160a01b03928316602091820292909201810191909152601454604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611317573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133b9190611c22565b8160018151811061134e5761134e611bb7565b6001600160a01b0392831660209182029290920101526014546113749130911684610b1e565b60145460405163791ac94760e01b81526001600160a01b039091169063791ac947906113ad908590600090869030904290600401611c3f565b600060405180830381600087803b1580156113c757600080fd5b505af11580156113db573d6000803e3d6000fd5b50506015805460ff60a81b1916905550505050565b806113fd576113fd611483565b6114088484846114b1565b806109ff576109ff600e54600c55600f54600d55565b600080600061142b6115a8565b909250905061143a8282611441565b9250505090565b600061126f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506115e8565b600c541580156114935750600d54155b1561149a57565b600c8054600e55600d8054600f5560009182905555565b6000806000806000806114c387611616565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506114f59087611673565b6001600160a01b03808b1660009081526002602052604080822093909355908a168152205461152490866116b5565b6001600160a01b03891660009081526002602052604090205561154681611714565b611550848361175e565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161159591815260200190565b60405180910390a3505050505050505050565b6006546000908190670de0b6b3a76400006115c38282611441565b8210156115df57505060065492670de0b6b3a764000092509050565b90939092509050565b600081836116095760405162461bcd60e51b81526004016105f491906119a9565b5060006111af8486611cb0565b60008060008060008060008060006116338a600c54600d54611782565b925092509250600061164361141e565b905060008060006116568e8787876117d7565b919e509c509a509598509396509194505050505091939550919395565b600061126f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061117e565b6000806116c28385611bfc565b90508381101561126f5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105f4565b600061171e61141e565b9050600061172c8383611827565b3060009081526002602052604090205490915061174990826116b5565b30600090815260026020526040902055505050565b60065461176b9083611673565b60065560075461177b90826116b5565b6007555050565b600080808061179c60646117968989611827565b90611441565b905060006117af60646117968a89611827565b905060006117c7826117c18b86611673565b90611673565b9992985090965090945050505050565b60008080806117e68886611827565b905060006117f48887611827565b905060006118028888611827565b90506000611814826117c18686611673565b939b939a50919850919650505050505050565b6000826000036118395750600061067a565b60006118458385611cd2565b9050826118528583611cb0565b1461126f5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016105f4565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146107c457600080fd5b80356118df816118bf565b919050565b600060208083850312156118f757600080fd5b823567ffffffffffffffff8082111561190f57600080fd5b818501915085601f83011261192357600080fd5b813581811115611935576119356118a9565b8060051b604051601f19603f8301168101818110858211171561195a5761195a6118a9565b60405291825284820192508381018501918883111561197857600080fd5b938501935b8285101561199d5761198e856118d4565b8452938501939285019261197d565b98975050505050505050565b600060208083528351808285015260005b818110156119d6578581018301518582016040015282016119ba565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215611a0a57600080fd5b8235611a15816118bf565b946020939093013593505050565b600080600060608486031215611a3857600080fd5b8335611a43816118bf565b92506020840135611a53816118bf565b929592945050506040919091013590565b600060208284031215611a7657600080fd5b813561126f816118bf565b803580151581146118df57600080fd5b600060208284031215611aa357600080fd5b61126f82611a81565b600060208284031215611abe57600080fd5b5035919050565b600080600060408486031215611ada57600080fd5b833567ffffffffffffffff80821115611af257600080fd5b818601915086601f830112611b0657600080fd5b813581811115611b1557600080fd5b8760208260051b8501011115611b2a57600080fd5b602092830195509350611b409186019050611a81565b90509250925092565b60008060408385031215611b5c57600080fd5b8235611b67816118bf565b91506020830135611b77816118bf565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611bf557611bf5611bcd565b5060010190565b8082018082111561067a5761067a611bcd565b8181038181111561067a5761067a611bcd565b600060208284031215611c3457600080fd5b815161126f816118bf565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611c8f5784516001600160a01b031683529383019391830191600101611c6a565b50506001600160a01b03969096166060850152505050608001529392505050565b600082611ccd57634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761067a5761067a611bcd56fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220ecdc40fef95f5ba87700080d79c05a23664180f2511330e68545cb81f4dba93264736f6c63430008110033

Deployed Bytecode Sourcemap

4110:13184:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12765:169;;;;;;;;;;-1:-1:-1;12765:169:0;;;;;:::i;:::-;;:::i;:::-;;6593:83;;;;;;;;;;-1:-1:-1;6663:5:0;;;;;;;;;;;;-1:-1:-1;;;6663:5:0;;;;6593:83;;;;;;;:::i;:::-;;;;;;;;7518:193;;;;;;;;;;-1:-1:-1;7518:193:0;;;;;:::i;:::-;;:::i;:::-;;;2585:14:1;;2578:22;2560:41;;2548:2;2533:18;7518:193:0;2420:187:1;5443:41:0;;;;;;;;;;-1:-1:-1;5443:41:0;;;;-1:-1:-1;;;;;5443:41:0;;;;;;-1:-1:-1;;;;;2802:32:1;;;2784:51;;2772:2;2757:18;5443:41:0;2612:229:1;6870:95:0;;;;;;;;;;-1:-1:-1;4649:18:0;6870:95;;;2992:25:1;;;2980:2;2965:18;6870:95:0;2846:177:1;7719:446:0;;;;;;;;;;-1:-1:-1;7719:446:0;;;;;:::i;:::-;;:::i;5741:50::-;;;;;;;;;;;;;;;;6779:83;;;;;;;;;;-1:-1:-1;6779:83:0;;4323:1;3631:36:1;;3619:2;3604:18;6779:83:0;3489:184:1;5491:28:0;;;;;;;;;;-1:-1:-1;5491:28:0;;;;-1:-1:-1;;;;;5491:28:0;;;12942:92;;;;;;;;;;-1:-1:-1;12942:92:0;;;;;:::i;:::-;;:::i;16676:101::-;;;;;;;;;;-1:-1:-1;16676:101:0;;;;;:::i;:::-;;:::i;12522:235::-;;;;;;;;;;;;;:::i;6973:138::-;;;;;;;;;;-1:-1:-1;6973:138:0;;;;;:::i;:::-;;:::i;1597:148::-;;;;;;;;;;;;;:::i;16816:108::-;;;;;;;;;;-1:-1:-1;16816:108:0;;;;;:::i;:::-;;:::i;5633:46::-;;;;;;;;;;;;;;;;5185:43;;;;;;;;;;-1:-1:-1;5185:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;1383:79;;;;;;;;;;-1:-1:-1;1421:7:0;1448:6;-1:-1:-1;;;;;1448:6:0;1383:79;;12169:101;;;;;;;;;;-1:-1:-1;12169:101:0;;;;;:::i;:::-;;:::i;5686:48::-;;;;;;;;;;;;;;;;6684:87;;;;;;;;;;-1:-1:-1;6756:7:0;;;;;;;;;;;;-1:-1:-1;;;6756:7:0;;;;6684:87;;16485:139;;;;;;;;;;-1:-1:-1;16485:139:0;;;;;:::i;:::-;;:::i;7119:199::-;;;;;;;;;;-1:-1:-1;7119:199:0;;;;;:::i;:::-;;:::i;5147:36::-;;;;;;;;;;-1:-1:-1;5147:36:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;12278:236;;;;;;;;;;;;;:::i;17055:234::-;;;;;;;;;;-1:-1:-1;17055:234:0;;;;;:::i;:::-;;:::i;7326:184::-;;;;;;;;;;-1:-1:-1;7326:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;7475:18:0;;;7443:7;7475:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7326:184;16932:115;;;;;;;;;;-1:-1:-1;16932:115:0;;;;;:::i;:::-;;:::i;1753:244::-;;;;;;;;;;-1:-1:-1;1753:244:0;;;;;:::i;:::-;;:::i;12765:169::-;1510:6;;-1:-1:-1;;;;;1510:6:0;222:10;1510:22;1502:67;;;;-1:-1:-1;;;1502:67:0;;;;;;;:::i;:::-;;;;;;;;;12841:9:::1;12836:91;12860:5;:12;12856:1;:16;12836:91;;;12911:4;12894;:14;12899:5;12905:1;12899:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;12894:14:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;12894:14:0;:21;;-1:-1:-1;;12894:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;12874:3;::::1;::::0;::::1;:::i;:::-;;;;12836:91;;;;12765:169:::0;:::o;7518:193::-;7620:4;7642:39;222:10;7665:7;7674:6;7642:8;:39::i;:::-;-1:-1:-1;7699:4:0;7518:193;;;;;:::o;7719:446::-;7851:4;7868:36;7878:6;7886:9;7897:6;7868:9;:36::i;:::-;7915:220;7938:6;222:10;7986:138;8042:6;7986:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7986:19:0;;;;;;:11;:19;;;;;;;;222:10;7986:33;;;;;;;;;;:37;:138::i;:::-;7915:8;:220::i;:::-;-1:-1:-1;8153:4:0;7719:446;;;;;:::o;12942:92::-;1510:6;;-1:-1:-1;;;;;1510:6:0;222:10;1510:22;1502:67;;;;-1:-1:-1;;;1502:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13006:12:0::1;13021:5;13006:12:::0;;;:4:::1;:12;::::0;;;;:20;;-1:-1:-1;;13006:20:0::1;::::0;;12942:92::o;16676:101::-;1510:6;;-1:-1:-1;;;;;1510:6:0;222:10;1510:22;1502:67;;;;-1:-1:-1;;;1502:67:0;;;;;;;:::i;:::-;16743:11:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;16743:26:0::1;-1:-1:-1::0;;;;16743:26:0;;::::1;::::0;;;::::1;::::0;;16676:101::o;12522:235::-;12588:19;;-1:-1:-1;;;;;12588:19:0;222:10;-1:-1:-1;;;;;12572:35:0;;:72;;;-1:-1:-1;12627:17:0;;-1:-1:-1;;;;;12627:17:0;222:10;-1:-1:-1;;;;;12611:33:0;;12572:72;12564:81;;;;;;12685:21;12717:32;12685:21;12717:12;:32::i;:::-;12553:204;12522:235::o;6973:138::-;-1:-1:-1;;;;;7086:16:0;;7039:7;7086:16;;;:7;:16;;;;;;7066:37;;:19;:37::i;1597:148::-;1510:6;;-1:-1:-1;;;;;1510:6:0;222:10;1510:22;1502:67;;;;-1:-1:-1;;;1502:67:0;;;;;;;:::i;:::-;1704:1:::1;1688:6:::0;;1667:40:::1;::::0;-1:-1:-1;;;;;1688:6:0;;::::1;::::0;1667:40:::1;::::0;1704:1;;1667:40:::1;1735:1;1718:19:::0;;-1:-1:-1;;;;;;1718:19:0::1;::::0;;1597:148::o;16816:108::-;1510:6;;-1:-1:-1;;;;;1510:6:0;222:10;1510:22;1502:67;;;;-1:-1:-1;;;1502:67:0;;;;;;;:::i;:::-;16890:12:::1;:26:::0;16816:108::o;12169:101::-;1510:6;;-1:-1:-1;;;;;1510:6:0;222:10;1510:22;1502:67;;;;-1:-1:-1;;;1502:67:0;;;;;;;:::i;:::-;12236:11:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;12236:26:0::1;-1:-1:-1::0;;;;12236:26:0;;::::1;::::0;;;::::1;::::0;;12169:101::o;16485:139::-;1510:6;;-1:-1:-1;;;;;1510:6:0;222:10;1510:22;1502:67;;;;-1:-1:-1;;;1502:67:0;;;;;;;:::i;:::-;16576:19:::1;:40:::0;16485:139::o;7119:199::-;7224:4;7246:42;222:10;7270:9;7281:6;7246:9;:42::i;12278:236::-;12344:19;;-1:-1:-1;;;;;12344:19:0;222:10;-1:-1:-1;;;;;12328:35:0;;:72;;;-1:-1:-1;12383:17:0;;-1:-1:-1;;;;;12383:17:0;222:10;-1:-1:-1;;;;;12367:33:0;;12328:72;12320:81;;;;;;12412:23;12438:24;12456:4;12438:9;:24::i;:::-;12412:50;;12473:33;12490:15;12473:16;:33::i;17055:234::-;1510:6;;-1:-1:-1;;;;;1510:6:0;222:10;1510:22;1502:67;;;;-1:-1:-1;;;1502:67:0;;;;;;;:::i;:::-;17172:9:::1;17168:114;17187:19:::0;;::::1;17168:114;;;17262:8;17228:18;:31;17247:8;;17256:1;17247:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;17228:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;17228:31:0;:42;;-1:-1:-1;;17228:42:0::1;::::0;::::1;;::::0;;;::::1;::::0;;17208:3;::::1;::::0;::::1;:::i;:::-;;;;17168:114;;;;17055:234:::0;;;:::o;16932:115::-;1510:6;;-1:-1:-1;;;;;1510:6:0;222:10;1510:22;1502:67;;;;-1:-1:-1;;;1502:67:0;;;;;;;:::i;:::-;17009:14:::1;:30:::0;16932:115::o;1753:244::-;1510:6;;-1:-1:-1;;;;;1510:6:0;222:10;1510:22;1502:67;;;;-1:-1:-1;;;1502:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1842:22:0;::::1;1834:73;;;::::0;-1:-1:-1;;;1834:73:0;;6727:2:1;1834:73:0::1;::::0;::::1;6709:21:1::0;6766:2;6746:18;;;6739:30;6805:34;6785:18;;;6778:62;-1:-1:-1;;;6856:18:1;;;6849:36;6902:19;;1834:73:0::1;6525:402:1::0;1834:73:0::1;1944:6;::::0;;1923:38:::1;::::0;-1:-1:-1;;;;;1923:38:0;;::::1;::::0;1944:6;::::1;::::0;1923:38:::1;::::0;::::1;1972:6;:17:::0;;-1:-1:-1;;;;;;1972:17:0::1;-1:-1:-1::0;;;;;1972:17:0;;;::::1;::::0;;;::::1;::::0;;1753:244::o;8856:369::-;-1:-1:-1;;;;;8983:19:0;;8975:68;;;;-1:-1:-1;;;8975:68:0;;7134:2:1;8975:68:0;;;7116:21:1;7173:2;7153:18;;;7146:30;7212:34;7192:18;;;7185:62;-1:-1:-1;;;7263:18:1;;;7256:34;7307:19;;8975:68:0;6932:400:1;8975:68:0;-1:-1:-1;;;;;9062:21:0;;9054:68;;;;-1:-1:-1;;;9054:68:0;;7539:2:1;9054:68:0;;;7521:21:1;7578:2;7558:18;;;7551:30;7617:34;7597:18;;;7590:62;-1:-1:-1;;;7668:18:1;;;7661:32;7710:19;;9054:68:0;7337:398:1;9054:68:0;-1:-1:-1;;;;;9133:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;9185:32;;2992:25:1;;;9185:32:0;;2965:18:1;9185:32:0;;;;;;;8856:369;;;:::o;9233:2330::-;-1:-1:-1;;;;;9355:18:0;;9347:68;;;;-1:-1:-1;;;9347:68:0;;7942:2:1;9347:68:0;;;7924:21:1;7981:2;7961:18;;;7954:30;8020:34;8000:18;;;7993:62;-1:-1:-1;;;8071:18:1;;;8064:35;8116:19;;9347:68:0;7740:401:1;9347:68:0;-1:-1:-1;;;;;9434:16:0;;9426:64;;;;-1:-1:-1;;;9426:64:0;;8348:2:1;9426:64:0;;;8330:21:1;8387:2;8367:18;;;8360:30;8426:34;8406:18;;;8399:62;-1:-1:-1;;;8477:18:1;;;8470:33;8520:19;;9426:64:0;8146:399:1;9426:64:0;9518:1;9509:6;:10;9501:64;;;;-1:-1:-1;;;9501:64:0;;8752:2:1;9501:64:0;;;8734:21:1;8791:2;8771:18;;;8764:30;8830:34;8810:18;;;8803:62;-1:-1:-1;;;8881:18:1;;;8874:39;8930:19;;9501:64:0;8550:405:1;9501:64:0;1421:7;1448:6;-1:-1:-1;;;;;9582:15:0;;;1448:6;;9582:15;;;;:32;;-1:-1:-1;1421:7:0;1448:6;-1:-1:-1;;;;;9601:13:0;;;1448:6;;9601:13;;9582:32;9578:1259;;;9671:11;;-1:-1:-1;;;9671:11:0;;;;9666:144;;1421:7;1448:6;-1:-1:-1;;;;;9711:15:0;;;1448:6;;9711:15;9703:91;;;;-1:-1:-1;;;9703:91:0;;9162:2:1;9703:91:0;;;9144:21:1;9201:2;9181:18;;;9174:30;9240:34;9220:18;;;9213:62;9311:33;9291:18;;;9284:61;9362:19;;9703:91:0;8960:427:1;9703:91:0;9844:12;;9834:6;:22;;9826:63;;;;-1:-1:-1;;;9826:63:0;;9594:2:1;9826:63:0;;;9576:21:1;9633:2;9613:18;;;9606:30;9672;9652:18;;;9645:58;9720:18;;9826:63:0;9392:352:1;9826:63:0;-1:-1:-1;;;;;9913:10:0;;;;;;:4;:10;;;;;;;;9912:11;:24;;;;-1:-1:-1;;;;;;9928:8:0;;;;;;:4;:8;;;;;;;;9927:9;9912:24;9904:72;;;;-1:-1:-1;;;9904:72:0;;9951:2:1;9904:72:0;;;9933:21:1;9990:2;9970:18;;;9963:30;10029:34;10009:18;;;10002:62;-1:-1:-1;;;10080:18:1;;;10073:33;10123:19;;9904:72:0;9749:399:1;9904:72:0;10002:13;;-1:-1:-1;;;;;9996:19:0;;;10002:13;;9996:19;9993:146;;10069:14;;10060:6;10044:13;10054:2;10044:9;:13::i;:::-;:22;;;;:::i;:::-;:39;10036:87;;;;-1:-1:-1;;;10036:87:0;;10485:2:1;10036:87:0;;;10467:21:1;10524:2;10504:18;;;10497:30;10563:34;10543:18;;;10536:62;-1:-1:-1;;;10614:18:1;;;10607:33;10657:19;;10036:87:0;10283:399:1;10036:87:0;10155:28;10186:24;10204:4;10186:9;:24::i;:::-;10264:19;;10327:12;;10155:55;;-1:-1:-1;10240:43:0;;;;10303:36;;10300:124;;10396:12;;10373:35;;10300:124;10444:7;:18;;;;-1:-1:-1;10456:6:0;;-1:-1:-1;;;10456:6:0;;;;10455:7;10444:18;:43;;;;-1:-1:-1;10474:13:0;;-1:-1:-1;;;;;10466:21:0;;;10474:13;;10466:21;;10444:43;:58;;;;-1:-1:-1;10491:11:0;;-1:-1:-1;;;10491:11:0;;;;10444:58;:87;;;;-1:-1:-1;;;;;;10507:24:0;;;;;;:18;:24;;;;;;;;10506:25;10444:87;:114;;;;-1:-1:-1;;;;;;10536:22:0;;;;;;:18;:22;;;;;;;;10535:23;10444:114;10440:386;;;10579:38;10596:20;10579:16;:38::i;:::-;10665:21;10709:22;;10705:106;;10756:35;10769:21;10756:12;:35::i;:::-;10560:266;10440:386;9616:1221;;9578:1259;-1:-1:-1;;;;;10913:24:0;;10849:12;10913:24;;;:18;:24;;;;;;10864:4;;10913:24;;;:50;;-1:-1:-1;;;;;;10941:22:0;;;;;;:18;:22;;;;;;;;10913:50;10912:102;;;-1:-1:-1;10977:13:0;;-1:-1:-1;;;;;10969:21:0;;;10977:13;;10969:21;;;;:44;;-1:-1:-1;11000:13:0;;-1:-1:-1;;;;;10994:19:0;;;11000:13;;10994:19;;10969:44;10908:594;;;-1:-1:-1;11041:5:0;10908:594;;;11124:13;;-1:-1:-1;;;;;11116:21:0;;;11124:13;;11116:21;:55;;;;-1:-1:-1;11155:15:0;;-1:-1:-1;;;;;11141:30:0;;;11155:15;;11141:30;;11116:55;11113:162;;;11204:14;;11192:9;:26;11247:12;;11237:7;:22;11113:162;11334:13;;-1:-1:-1;;;;;11328:19:0;;;11334:13;;11328:19;:55;;;;-1:-1:-1;11367:15:0;;-1:-1:-1;;;;;11351:32:0;;;11367:15;;11351:32;;11328:55;11324:165;;;11416:15;;11404:9;:27;11460:13;;11450:7;:23;11324:165;11514:41;11529:4;11535:2;11539:6;11547:7;11514:14;:41::i;2361:224::-;2481:7;2517:12;2509:6;;;;2501:29;;;;-1:-1:-1;;;2501:29:0;;;;;;;;:::i;:::-;-1:-1:-1;2541:9:0;2553:5;2557:1;2553;:5;:::i;:::-;2541:17;2361:224;-1:-1:-1;;;;;2361:224:0:o;12062:99::-;12119:17;;:34;;-1:-1:-1;;;;;12119:17:0;;;;:34;;;;;12146:6;;12119:17;:34;:17;:34;12146:6;12119:17;:34;;;;;;;;;;;;;;;;;;;8173:323;8268:7;8326;;8315;:18;;8293:110;;;;-1:-1:-1;;;8293:110:0;;11022:2:1;8293:110:0;;;11004:21:1;11061:2;11041:18;;;11034:30;11100:34;11080:18;;;11073:62;-1:-1:-1;;;11151:18:1;;;11144:40;11201:19;;8293:110:0;10820:406:1;8293:110:0;8414:19;8436:10;:8;:10::i;:::-;8414:32;-1:-1:-1;8464:24:0;:7;8414:32;8464:11;:24::i;:::-;8457:31;8173:323;-1:-1:-1;;;8173:323:0:o;11571:483::-;5885:6;:13;;-1:-1:-1;;;;5885:13:0;-1:-1:-1;;;5885:13:0;;;11673:16:::1;::::0;;11687:1:::1;11673:16:::0;;;;;::::1;::::0;;-1:-1:-1;;11673:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;11673:16:0::1;11649:40;;11718:4;11700;11705:1;11700:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;11700:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;11744:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;11744:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;11700:7;;11744:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11734:4;11739:1;11734:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;11734:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;11809:15:::1;::::0;11777:62:::1;::::0;11794:4:::1;::::0;11809:15:::1;11827:11:::0;11777:8:::1;:62::i;:::-;11850:15;::::0;:196:::1;::::0;-1:-1:-1;;;11850:196:0;;-1:-1:-1;;;;;11850:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;11931:11;;11850:15:::1;::::0;11973:4;;12000::::1;::::0;12020:15:::1;::::0;11850:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;5921:6:0;:14;;-1:-1:-1;;;;5921:14:0;;;-1:-1:-1;;;;11571:483:0:o;13042:282::-;13198:7;13193:28;;13207:14;:12;:14::i;:::-;13232:44;13250:6;13258:9;13269:6;13232:17;:44::i;:::-;13292:7;13287:29;;13301:15;8787:17;;8775:9;:29;8825:15;;8815:7;:25;8731:117;16003:164;16045:7;16066:15;16083;16102:19;:17;:19::i;:::-;16065:56;;-1:-1:-1;16065:56:0;-1:-1:-1;16139:20:0;16065:56;;16139:11;:20::i;:::-;16132:27;;;;16003:164;:::o;2847:132::-;2905:7;2932:39;2936:1;2939;2932:39;;;;;;;;;;;;;;;;;:3;:39::i;8504:219::-;8551:9;;:14;:30;;;;-1:-1:-1;8569:7:0;;:12;8551:30;8547:43;;;8504:219::o;8547:43::-;8622:9;;;8602:17;:29;8660:7;;;8642:15;:25;-1:-1:-1;8680:13:0;;;;8704:11;8504:219::o;13332:610::-;13479:15;13509:23;13547:12;13574:23;13612:12;13639:13;13666:19;13677:7;13666:10;:19::i;:::-;-1:-1:-1;;;;;13714:15:0;;;;;;:7;:15;;;;;;13464:221;;-1:-1:-1;13464:221:0;;-1:-1:-1;13464:221:0;;-1:-1:-1;13464:221:0;-1:-1:-1;13464:221:0;-1:-1:-1;13464:221:0;-1:-1:-1;13714:28:0;;13464:221;13714:19;:28::i;:::-;-1:-1:-1;;;;;13696:15:0;;;;;;;:7;:15;;;;;;:46;;;;13774:18;;;;;;;:39;;13797:15;13774:22;:39::i;:::-;-1:-1:-1;;;;;13753:18:0;;;;;;:7;:18;;;;;:60;13824:16;13834:5;13824:9;:16::i;:::-;13851:23;13863:4;13869;13851:11;:23::i;:::-;13907:9;-1:-1:-1;;;;;13890:44:0;13899:6;-1:-1:-1;;;;;13890:44:0;;13918:15;13890:44;;;;2992:25:1;;2980:2;2965:18;;2846:177;13890:44:0;;;;;;;;13453:489;;;;;;13332:610;;;:::o;16175:257::-;16273:7;;16226;;;;4649:18;16341:20;16273:7;4649:18;16341:11;:20::i;:::-;16331:7;:30;16327:61;;;-1:-1:-1;;16371:7:0;;;4649:18;;-1:-1:-1;16175:257:0;-1:-1:-1;16175:257:0:o;16327:61::-;16407:7;;16416;;-1:-1:-1;16175:257:0;-1:-1:-1;16175:257:0:o;2987:223::-;3107:7;3142:12;3135:5;3127:28;;;;-1:-1:-1;;;3127:28:0;;;;;;;;:::i;:::-;-1:-1:-1;3166:9:0;3178:5;3182:1;3178;:5;:::i;14361:615::-;14461:7;14483;14505;14527;14549;14571;14607:23;14632:12;14646:13;14676:40;14688:7;14697:9;;14708:7;;14676:11;:40::i;:::-;14606:110;;;;;;14727:19;14749:10;:8;:10::i;:::-;14727:32;;14771:15;14788:23;14813:12;14842:46;14854:7;14863:4;14869:5;14876:11;14842;:46::i;:::-;14770:118;;-1:-1:-1;14770:118:0;-1:-1:-1;14770:118:0;-1:-1:-1;14939:15:0;;-1:-1:-1;14956:4:0;;-1:-1:-1;14962:5:0;;-1:-1:-1;;;;;14361:615:0;;;;;;;:::o;2217:136::-;2275:7;2302:43;2306:1;2309;2302:43;;;;;;;;;;;;;;;;;:3;:43::i;2030:179::-;2088:7;;2120:5;2124:1;2120;:5;:::i;:::-;2108:17;;2149:1;2144;:6;;2136:46;;;;-1:-1:-1;;;2136:46:0;;12896:2:1;2136:46:0;;;12878:21:1;12935:2;12915:18;;;12908:30;12974:29;12954:18;;;12947:57;13021:18;;2136:46:0;12694:351:1;13950:211:0;14003:19;14025:10;:8;:10::i;:::-;14003:32;-1:-1:-1;14046:13:0;14062:22;:5;14003:32;14062:9;:22::i;:::-;14136:4;14120:22;;;;:7;:22;;;;;;14046:38;;-1:-1:-1;14120:33:0;;14046:38;14120:26;:33::i;:::-;14111:4;14095:22;;;;:7;:22;;;;;:58;-1:-1:-1;;;13950:211:0:o;14169:147::-;14247:7;;:17;;14259:4;14247:11;:17::i;:::-;14237:7;:27;14288:10;;:20;;14303:4;14288:14;:20::i;:::-;14275:10;:33;-1:-1:-1;;14169:147:0:o;14984:469::-;15153:7;;;;15247:30;15273:3;15247:21;:7;15259:8;15247:11;:21::i;:::-;:25;;:30::i;:::-;15232:45;-1:-1:-1;15288:13:0;15304:28;15328:3;15304:19;:7;15316:6;15304:11;:19::i;:28::-;15288:44;-1:-1:-1;15343:23:0;15369:28;15288:44;15369:17;:7;15381:4;15369:11;:17::i;:::-;:21;;:28::i;:::-;15343:54;15433:4;;-1:-1:-1;15439:5:0;;-1:-1:-1;14984:469:0;;-1:-1:-1;;;;;14984:469:0:o;15461:534::-;15655:7;;;;15752:24;:7;15764:11;15752;:24::i;:::-;15734:42;-1:-1:-1;15787:12:0;15802:21;:4;15811:11;15802:8;:21::i;:::-;15787:36;-1:-1:-1;15834:13:0;15850:22;:5;15860:11;15850:9;:22::i;:::-;15834:38;-1:-1:-1;15883:23:0;15909:28;15834:38;15909:17;:7;15921:4;15909:11;:17::i;:28::-;15956:7;;;;-1:-1:-1;15982:4:0;;-1:-1:-1;15461:534:0;;-1:-1:-1;;;;;;;15461:534:0:o;2593:246::-;2651:7;2675:1;2680;2675:6;2671:47;;-1:-1:-1;2705:1:0;2698:8;;2671:47;2728:9;2740:5;2744:1;2740;:5;:::i;:::-;2728:17;-1:-1:-1;2773:1:0;2764:5;2768:1;2728:17;2764:5;:::i;:::-;:10;2756:56;;;;-1:-1:-1;;;2756:56:0;;13425:2:1;2756:56:0;;;13407:21:1;13464:2;13444:18;;;13437:30;13503:34;13483:18;;;13476:62;-1:-1:-1;;;13554:18:1;;;13547:31;13595:19;;2756:56:0;13223:397:1;14:127;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:131;-1:-1:-1;;;;;221:31:1;;211:42;;201:70;;267:1;264;257:12;282:134;350:20;;379:31;350:20;379:31;:::i;:::-;282:134;;;:::o;421:1121::-;505:6;536:2;579;567:9;558:7;554:23;550:32;547:52;;;595:1;592;585:12;547:52;635:9;622:23;664:18;705:2;697:6;694:14;691:34;;;721:1;718;711:12;691:34;759:6;748:9;744:22;734:32;;804:7;797:4;793:2;789:13;785:27;775:55;;826:1;823;816:12;775:55;862:2;849:16;884:2;880;877:10;874:36;;;890:18;;:::i;:::-;936:2;933:1;929:10;968:2;962:9;1031:2;1027:7;1022:2;1018;1014:11;1010:25;1002:6;998:38;1086:6;1074:10;1071:22;1066:2;1054:10;1051:18;1048:46;1045:72;;;1097:18;;:::i;:::-;1133:2;1126:22;1183:18;;;1217:15;;;;-1:-1:-1;1259:11:1;;;1255:20;;;1287:19;;;1284:39;;;1319:1;1316;1309:12;1284:39;1343:11;;;;1363:148;1379:6;1374:3;1371:15;1363:148;;;1445:23;1464:3;1445:23;:::i;:::-;1433:36;;1396:12;;;;1489;;;;1363:148;;;1530:6;421:1121;-1:-1:-1;;;;;;;;421:1121:1:o;1547:548::-;1659:4;1688:2;1717;1706:9;1699:21;1749:6;1743:13;1792:6;1787:2;1776:9;1772:18;1765:34;1817:1;1827:140;1841:6;1838:1;1835:13;1827:140;;;1936:14;;;1932:23;;1926:30;1902:17;;;1921:2;1898:26;1891:66;1856:10;;1827:140;;;1831:3;2016:1;2011:2;2002:6;1991:9;1987:22;1983:31;1976:42;2086:2;2079;2075:7;2070:2;2062:6;2058:15;2054:29;2043:9;2039:45;2035:54;2027:62;;;;1547:548;;;;:::o;2100:315::-;2168:6;2176;2229:2;2217:9;2208:7;2204:23;2200:32;2197:52;;;2245:1;2242;2235:12;2197:52;2284:9;2271:23;2303:31;2328:5;2303:31;:::i;:::-;2353:5;2405:2;2390:18;;;;2377:32;;-1:-1:-1;;;2100:315:1:o;3028:456::-;3105:6;3113;3121;3174:2;3162:9;3153:7;3149:23;3145:32;3142:52;;;3190:1;3187;3180:12;3142:52;3229:9;3216:23;3248:31;3273:5;3248:31;:::i;:::-;3298:5;-1:-1:-1;3355:2:1;3340:18;;3327:32;3368:33;3327:32;3368:33;:::i;:::-;3028:456;;3420:7;;-1:-1:-1;;;3474:2:1;3459:18;;;;3446:32;;3028:456::o;3886:247::-;3945:6;3998:2;3986:9;3977:7;3973:23;3969:32;3966:52;;;4014:1;4011;4004:12;3966:52;4053:9;4040:23;4072:31;4097:5;4072:31;:::i;4138:160::-;4203:20;;4259:13;;4252:21;4242:32;;4232:60;;4288:1;4285;4278:12;4303:180;4359:6;4412:2;4400:9;4391:7;4387:23;4383:32;4380:52;;;4428:1;4425;4418:12;4380:52;4451:26;4467:9;4451:26;:::i;4488:180::-;4547:6;4600:2;4588:9;4579:7;4575:23;4571:32;4568:52;;;4616:1;4613;4606:12;4568:52;-1:-1:-1;4639:23:1;;4488:180;-1:-1:-1;4488:180:1:o;4673:689::-;4765:6;4773;4781;4834:2;4822:9;4813:7;4809:23;4805:32;4802:52;;;4850:1;4847;4840:12;4802:52;4890:9;4877:23;4919:18;4960:2;4952:6;4949:14;4946:34;;;4976:1;4973;4966:12;4946:34;5014:6;5003:9;4999:22;4989:32;;5059:7;5052:4;5048:2;5044:13;5040:27;5030:55;;5081:1;5078;5071:12;5030:55;5121:2;5108:16;5147:2;5139:6;5136:14;5133:34;;;5163:1;5160;5153:12;5133:34;5218:7;5211:4;5201:6;5198:1;5194:14;5190:2;5186:23;5182:34;5179:47;5176:67;;;5239:1;5236;5229:12;5176:67;5270:4;5262:13;;;;-1:-1:-1;5294:6:1;-1:-1:-1;5319:37:1;;5335:20;;;-1:-1:-1;5319:37:1;:::i;:::-;5309:47;;4673:689;;;;;:::o;5367:388::-;5435:6;5443;5496:2;5484:9;5475:7;5471:23;5467:32;5464:52;;;5512:1;5509;5502:12;5464:52;5551:9;5538:23;5570:31;5595:5;5570:31;:::i;:::-;5620:5;-1:-1:-1;5677:2:1;5662:18;;5649:32;5690:33;5649:32;5690:33;:::i;:::-;5742:7;5732:17;;;5367:388;;;;;:::o;5760:356::-;5962:2;5944:21;;;5981:18;;;5974:30;6040:34;6035:2;6020:18;;6013:62;6107:2;6092:18;;5760:356::o;6121:127::-;6182:10;6177:3;6173:20;6170:1;6163:31;6213:4;6210:1;6203:15;6237:4;6234:1;6227:15;6253:127;6314:10;6309:3;6305:20;6302:1;6295:31;6345:4;6342:1;6335:15;6369:4;6366:1;6359:15;6385:135;6424:3;6445:17;;;6442:43;;6465:18;;:::i;:::-;-1:-1:-1;6512:1:1;6501:13;;6385:135::o;10153:125::-;10218:9;;;10239:10;;;10236:36;;;10252:18;;:::i;10687:128::-;10754:9;;;10775:11;;;10772:37;;;10789:18;;:::i;11231:251::-;11301:6;11354:2;11342:9;11333:7;11329:23;11325:32;11322:52;;;11370:1;11367;11360:12;11322:52;11402:9;11396:16;11421:31;11446:5;11421:31;:::i;11487:980::-;11749:4;11797:3;11786:9;11782:19;11828:6;11817:9;11810:25;11854:2;11892:6;11887:2;11876:9;11872:18;11865:34;11935:3;11930:2;11919:9;11915:18;11908:31;11959:6;11994;11988:13;12025:6;12017;12010:22;12063:3;12052:9;12048:19;12041:26;;12102:2;12094:6;12090:15;12076:29;;12123:1;12133:195;12147:6;12144:1;12141:13;12133:195;;;12212:13;;-1:-1:-1;;;;;12208:39:1;12196:52;;12303:15;;;;12268:12;;;;12244:1;12162:9;12133:195;;;-1:-1:-1;;;;;;;12384:32:1;;;;12379:2;12364:18;;12357:60;-1:-1:-1;;;12448:3:1;12433:19;12426:35;12345:3;11487:980;-1:-1:-1;;;11487:980:1:o;12472:217::-;12512:1;12538;12528:132;;12582:10;12577:3;12573:20;12570:1;12563:31;12617:4;12614:1;12607:15;12645:4;12642:1;12635:15;12528:132;-1:-1:-1;12674:9:1;;12472:217::o;13050:168::-;13123:9;;;13154;;13171:15;;;13165:22;;13151:37;13141:71;;13192:18;;:::i

Swarm Source

ipfs://ecdc40fef95f5ba87700080d79c05a23664180f2511330e68545cb81f4dba932

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.

Connect a Wallet
Connect a Wallet

Compiler specific version warnings:

The compiled contract might be susceptible to VerbatimInvalidDeduplication (low-severity), FullInlinerNonExpressionSplitArgumentEvaluationOrder (low-severity), MissingSideEffectsOnSelectorAccess (low-severity) Solidity Compiler Bugs.

NejuNEJUTokenTracker|Etherscan (2024)

FAQs

How do I find my Etherscan address? ›

Etherscan
  1. Head to Etherscan.io.
  2. In the search bar, enter your Ethereum public address, (0x…..).
  3. You will be taken to a wallet overview. At the top, you will see the checksummed version of your address. Read our article about the differences between checksummed and non-checksummed addresses.

How to know smart contract address? ›

Look up the address on the relevant block explorer.

All smart contracts have an address. Any reputable dapp, NFT collection, or other party should make this address readily available; either directly on their main site or in docs. MetaMask will also show you the smart contract's address before you sign any transaction.

What is the token address for Ethereum? ›

An Ethereum address is a 42-character hexadecimal address derived from the last 20 bytes of the public key controlling the account with 0x appended in front. e.g., 0x71C7656EC7ab88b098defB751B7401B5f6d8976F.

How do I look up a token address? ›

On the homepage of MetaMask Extension, under the 'Tokens' tab, click on the token whose contract information you want. Then, click on the vertical three dots menu and select 'View asset in explorer'. This action will take you to the token's contract address on the active network.

Can you trace an Ethereum address? ›

Yes, you can trace Ethereum transactions using a blockchain explorer.

Can you read a smart contract? ›

There are tools available that can assist you in reading smart contract data. To use these tools, you first need to locate the smart contract address for the project you're examining. This can typically be found on a project's official website, white paper, or marketplace listing page.

Can you view smart contract code? ›

The simplest way to verify your source code is via the Etherscan UI. This process does not require any programming skills. Navigate to the Contract tab of the smart contract you are viewing on Etherscan and click the Verify and Publish link. Then, you'll need to select the file type, compiler version, and license.

How do I access my smart contract? ›

Interacting with Smart Contracts using Etherscan​
  1. Step 1: Go to the Etherscan Sepolia Block Explorer.
  2. Step 2: Go to the contract page by searching the contract address. ...
  3. Step 3: On the contract's page, navigate to the Contract tab and click on Read Contract.
Feb 12, 2024

How do I access my Ethereum address? ›

Find your Ethereum address

Now that you have your wallet set up, you can find your Ethereum address. You can open your wallet by clicking the fox icon in the top right corner and that will open your wallet. Now if you click the letters and numbers that start with "0x...." and copy that -- that is your address.

What is the difference between wallet address and contract address? ›

Contract addresses are generated deterministically during smart contract deployment, using the deploying address (owner) and its nonce (the number of transactions sent from the address). Public wallet addresses, on the other hand, are derived from private keys.

How do I find my Etherscan transaction ID? ›

After finding the transaction you want to investigate, tap it to bring up its details. Select this to open Etherscan within the app's native browser. You'll then be able to easily locate the transaction ID listed as 'transaction hash' on Etherscan.

How do I find my Ethereum address? ›

You can find out your Ethereum address by opening your multi-chain Bitcoin wallet. Read more: How do I create an Ethereum wallet? Every Ethereum wallet is a little different, but your Ethereum address will always be displayed somewhere within the wallet.

What is the address tag in Etherscan? ›

To tag an address for private use: Log in to your Etherscan account, navigate to the address page and click on "Update?" located next to the "My Name Tag" section.

How to check crypto wallet address? ›

After logging in, go to the "Accounts" section on your dashboard. Then, choose the crypto account for which you want to find the address. Next, click on the "Account Details" menu within your crypto account. From there, select the network for which you want to view your crypto account address.

Top Articles
Latest Posts
Article information

Author: Lakeisha Bayer VM

Last Updated:

Views: 5654

Rating: 4.9 / 5 (69 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Lakeisha Bayer VM

Birthday: 1997-10-17

Address: Suite 835 34136 Adrian Mountains, Floydton, UT 81036

Phone: +3571527672278

Job: Manufacturing Agent

Hobby: Skimboarding, Photography, Roller skating, Knife making, Paintball, Embroidery, Gunsmithing

Introduction: My name is Lakeisha Bayer VM, I am a brainy, kind, enchanting, healthy, lovely, clean, witty person who loves writing and wants to share my knowledge and understanding with you.