ERC-20
Overview
Max Total Supply
3,000,000 InfraTAO
Holders
85
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
InfraTAO
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Twitter: https://twitter.com/InfraTAO // SPDX-License-Identifier: MIT pragma solidity 0.8.23; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./interfaces/IUniswapV2Router02.sol"; import "./interfaces/IUniswapV2Factory.sol"; contract InfraTAO is Ownable, ERC20 { error NotAuthorized(); error MaxTxAmountExceeded(); error MaxWalletAmountExceeded(); event OpenTrading(); event DisableLimits(); event SwapBack(uint256 amount); event UpdateMarketingWL(address _marketingWallet); event UpdateTaxWL(address _taxWallet); event UpdateSwapTokenAt(uint256 amount); IUniswapV2Router02 immutable router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 _totalSupply = 3_000_000 * 10 ** 18; address public pair; uint256 private _maxAmount = (_totalSupply * 15) / 1_000; // 1.5% of total supply uint256 private _maxWallet = _maxAmount; // 1.5% of total supply bool private _tradingEnable; uint256 TAX = 5; uint256 private _initialTax = 33; uint256 private _startBlock; uint256 private _reduceTaxAt = 10; // reduce taxes after 10 blocks address public marketingWallet; address public taxWallet; bool public limit = true; uint256 public swapTokenAt = (_totalSupply * 4) / 1_000; mapping(address => bool) private _isExcludedFromFees; bool private _swaping = false; modifier onSwap() { _swaping = true; _; _swaping = false; } constructor( address _marketingWallet, address _taxWallet ) ERC20("InfraTAO", "InfraTAO") { marketingWallet = _marketingWallet; taxWallet = _taxWallet; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[address(router)] = true; _isExcludedFromFees[_msgSender()] = true; _isExcludedFromFees[_marketingWallet] = true; _isExcludedFromFees[_taxWallet] = true; _mint(_msgSender(), _totalSupply); _approve(_msgSender(), address(router), type(uint256).max); } receive() external payable {} function setSwapTokenAt(uint256 value) external onlyOwner { require( value <= _totalSupply / 50, "Value must be less than or equal to SUPPLY / 50" ); swapTokenAt = value; emit UpdateSwapTokenAt(value); } function getIsExcludedFromFees( address _address ) external view returns (bool) { return _isExcludedFromFees[_address]; } function excludedFromFees( address _address, bool _value ) external onlyOwner { _isExcludedFromFees[_address] = _value; } function openTrading() external onlyOwner { require(pair != address(0), "Pair not created yet"); _tradingEnable = true; _startBlock = block.number; emit OpenTrading(); } function disableLimits() external onlyOwner { require(limit, "Limits already removed"); limit = false; _maxWallet = _totalSupply; _maxAmount = _totalSupply; emit DisableLimits(); } function _transfer( address from, address to, uint256 amount ) internal override { if ( _isExcludedFromFees[from] || _isExcludedFromFees[to] || (to != pair && from != pair) || _swaping ) { super._transfer(from, to, amount); return; } require(_tradingEnable, "Trading is not open"); if (limit) { if ((from == pair || to == pair) && amount > _maxAmount) { revert MaxTxAmountExceeded(); } if (to != pair && balanceOf(to) + amount > _maxWallet) { revert MaxWalletAmountExceeded(); } } uint256 _totalFees = (amount * TAX) / 100; if (to == pair) { _totalFees = (amount * ((block.number > _startBlock + _reduceTaxAt) ? TAX : _initialTax)) / 100; if (balanceOf(address(this)) >= swapTokenAt) { swapBack(); } } if (from == pair) { _totalFees = (amount * ((block.number > _startBlock + _reduceTaxAt) ? TAX : _initialTax)) / 100; } if (_totalFees > 0) { super._transfer(from, address(this), _totalFees); amount = amount - _totalFees; } super._transfer(from, to, amount); } function swapBack() public onSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), swapTokenAt); router.swapExactTokensForETHSupportingFeeOnTransferTokens( swapTokenAt, 0, path, address(this), block.timestamp ); uint256 balance = address(this).balance; if (balance > 0) { uint256 marketingAmount = balance / 2; uint256 taxAmount = balance - marketingAmount; (bool sent, ) = payable(marketingWallet).call{value: marketingAmount}(""); require(sent, "Failed to send Ether to marketing wallet"); (sent, ) = payable(taxWallet).call{value: taxAmount}(""); require(sent, "Failed to send Ether to tax wallet"); } emit SwapBack(swapTokenAt); } function setMarketingWL(address _marketingWallet) external { if (_msgSender() != owner() && _msgSender() != marketingWallet) { revert NotAuthorized(); } marketingWallet = _marketingWallet; emit UpdateMarketingWL(_marketingWallet); } function setTaxWL(address _taxWallet) external { if (_msgSender() != owner() && _msgSender() != taxWallet) { revert NotAuthorized(); } taxWallet = _taxWallet; emit UpdateTaxWL(_taxWallet); } function createPair() external onlyOwner { require(pair == address(0), "pair address already set"); pair = IUniswapV2Factory(router.factory()).createPair( address(this), router.WETH() ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * 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. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => 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 override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override 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 `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` 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. */ function _approve(address owner, address spender, uint256 amount) internal virtual { 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); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.23; 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 pragma solidity 0.8.23; 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); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.23; 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; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_taxWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MaxTxAmountExceeded","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceeded","type":"error"},{"inputs":[],"name":"NotAuthorized","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":[],"name":"DisableLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"OpenTrading","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":"amount","type":"uint256"}],"name":"SwapBack","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":"_marketingWallet","type":"address"}],"name":"UpdateMarketingWL","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UpdateSwapTokenAt","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_taxWallet","type":"address"}],"name":"UpdateTaxWL","type":"event"},{"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":[],"name":"createPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"excludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getIsExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSwapTokenAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxWallet","type":"address"}],"name":"setTaxWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokenAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"amount","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":"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506a027b46536c66c8e30000006006556103e8600f6006546200006e9190620008af565b6200007a919062000926565b6008556008546009556005600b556021600c55600a600e556001601060146101000a81548160ff0219169083151502179055506103e86004600654620000c19190620008af565b620000cd919062000926565b6011555f60135f6101000a81548160ff021916908315150217905550348015620000f5575f80fd5b50604051620041443803806200414483398181016040528101906200011b9190620009c2565b6040518060400160405280600881526020017f496e66726154414f0000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f496e66726154414f000000000000000000000000000000000000000000000000815250620001a76200019b6200047660201b60201c565b6200047d60201b60201c565b8160049081620001b8919062000c62565b508060059081620001ca919062000c62565b50505081600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160125f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160125f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160125f6200030e6200047660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506200042a6200041b6200047660201b60201c565b6006546200053e60201b60201c565b6200046e6200043e6200047660201b60201c565b6080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620006a460201b60201c565b505062000f52565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005a69062000da4565b60405180910390fd5b620005c25f83836200086f60201b60201c565b8060035f828254620005d5919062000dc4565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000685919062000e0f565b60405180910390a3620006a05f83836200087460201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000715576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200070c9062000e9e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000786576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200077d9062000f32565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000862919062000e0f565b60405180910390a3505050565b505050565b505050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620008bb8262000879565b9150620008c88362000879565b9250828202620008d88162000879565b91508282048414831517620008f257620008f162000882565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620009328262000879565b91506200093f8362000879565b925082620009525762000951620008f9565b5b828204905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200098c8262000961565b9050919050565b6200099e8162000980565b8114620009a9575f80fd5b50565b5f81519050620009bc8162000993565b92915050565b5f8060408385031215620009db57620009da6200095d565b5b5f620009ea85828601620009ac565b9250506020620009fd85828601620009ac565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000a8357607f821691505b60208210810362000a995762000a9862000a3e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000afd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ac0565b62000b09868362000ac0565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000b4a62000b4462000b3e8462000879565b62000b21565b62000879565b9050919050565b5f819050919050565b62000b658362000b2a565b62000b7d62000b748262000b51565b84845462000acc565b825550505050565b5f90565b62000b9362000b85565b62000ba081848462000b5a565b505050565b5b8181101562000bc75762000bbb5f8262000b89565b60018101905062000ba6565b5050565b601f82111562000c165762000be08162000a9f565b62000beb8462000ab1565b8101602085101562000bfb578190505b62000c1362000c0a8562000ab1565b83018262000ba5565b50505b505050565b5f82821c905092915050565b5f62000c385f198460080262000c1b565b1980831691505092915050565b5f62000c52838362000c27565b9150826002028217905092915050565b62000c6d8262000a07565b67ffffffffffffffff81111562000c895762000c8862000a11565b5b62000c95825462000a6b565b62000ca282828562000bcb565b5f60209050601f83116001811462000cd8575f841562000cc3578287015190505b62000ccf858262000c45565b86555062000d3e565b601f19841662000ce88662000a9f565b5f5b8281101562000d115784890151825560018201915060208501945060208101905062000cea565b8683101562000d31578489015162000d2d601f89168262000c27565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000d8c601f8362000d46565b915062000d998262000d56565b602082019050919050565b5f6020820190508181035f83015262000dbd8162000d7e565b9050919050565b5f62000dd08262000879565b915062000ddd8362000879565b925082820190508082111562000df85762000df762000882565b5b92915050565b62000e098162000879565b82525050565b5f60208201905062000e245f83018462000dfe565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f62000e8660248362000d46565b915062000e938262000e2a565b604082019050919050565b5f6020820190508181035f83015262000eb78162000e78565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f62000f1a60228362000d46565b915062000f278262000ebe565b604082019050919050565b5f6020820190508181035f83015262000f4b8162000f0c565b9050919050565b6080516131bd62000f875f395f8181610a3001528181610b0f01528181610b38015281816111ed015261129601526131bd5ff3fe6080604052600436106101b9575f3560e01c80637b16cea0116100eb578063a4d66daf11610089578063c9567bf911610063578063c9567bf9146105ee578063dd62ed3e14610604578063f2fde38b14610640578063f928364c14610668576101c0565b8063a4d66daf1461055e578063a8aa1b3114610588578063a9059cbb146105b2576101c0565b80638da5cb5b116100c55780638da5cb5b146104b857806395d89b41146104e25780639e78fb4f1461050c578063a457c2d714610522576101c0565b80637b16cea01461042c5780637fec621e14610468578063864b316714610490576101c0565b8063313ce5671161015857806370a082311161013257806370a0823114610386578063715018a6146103c257806373bc5a36146103d857806375f0a87414610402576101c0565b8063313ce5671461030a57806339509351146103345780636ac5eeee14610370576101c0565b806316697fc51161019457806316697fc51461025257806318160ddd1461027a57806323b872dd146102a45780632dc0562d146102e0576101c0565b806243acf7146101c457806306fdde03146101ec578063095ea7b314610216576101c0565b366101c057005b5f80fd5b3480156101cf575f80fd5b506101ea60048036038101906101e5919061228d565b61067e565b005b3480156101f7575f80fd5b506102006107cd565b60405161020d9190612342565b60405180910390f35b348015610221575f80fd5b5061023c60048036038101906102379190612395565b61085d565b60405161024991906123ed565b60405180910390f35b34801561025d575f80fd5b5061027860048036038101906102739190612430565b61087f565b005b348015610285575f80fd5b5061028e6108df565b60405161029b919061247d565b60405180910390f35b3480156102af575f80fd5b506102ca60048036038101906102c59190612496565b6108e8565b6040516102d791906123ed565b60405180910390f35b3480156102eb575f80fd5b506102f4610916565b60405161030191906124f5565b60405180910390f35b348015610315575f80fd5b5061031e61093b565b60405161032b9190612529565b60405180910390f35b34801561033f575f80fd5b5061035a60048036038101906103559190612395565b610943565b60405161036791906123ed565b60405180910390f35b34801561037b575f80fd5b50610384610979565b005b348015610391575f80fd5b506103ac60048036038101906103a7919061228d565b610dde565b6040516103b9919061247d565b60405180910390f35b3480156103cd575f80fd5b506103d6610e24565b005b3480156103e3575f80fd5b506103ec610e37565b6040516103f9919061247d565b60405180910390f35b34801561040d575f80fd5b50610416610e3d565b60405161042391906124f5565b60405180910390f35b348015610437575f80fd5b50610452600480360381019061044d919061228d565b610e62565b60405161045f91906123ed565b60405180910390f35b348015610473575f80fd5b5061048e6004803603810190610489919061228d565b610eb4565b005b34801561049b575f80fd5b506104b660048036038101906104b19190612542565b611003565b005b3480156104c3575f80fd5b506104cc61109d565b6040516104d991906124f5565b60405180910390f35b3480156104ed575f80fd5b506104f66110c4565b6040516105039190612342565b60405180910390f35b348015610517575f80fd5b50610520611154565b005b34801561052d575f80fd5b5061054860048036038101906105439190612395565b6113bf565b60405161055591906123ed565b60405180910390f35b348015610569575f80fd5b50610572611434565b60405161057f91906123ed565b60405180910390f35b348015610593575f80fd5b5061059c611447565b6040516105a991906124f5565b60405180910390f35b3480156105bd575f80fd5b506105d860048036038101906105d39190612395565b61146c565b6040516105e591906123ed565b60405180910390f35b3480156105f9575f80fd5b5061060261148e565b005b34801561060f575f80fd5b5061062a6004803603810190610625919061256d565b611574565b604051610637919061247d565b60405180910390f35b34801561064b575f80fd5b506106666004803603810190610661919061228d565b6115f6565b005b348015610673575f80fd5b5061067c611678565b005b61068661109d565b73ffffffffffffffffffffffffffffffffffffffff166106a4611729565b73ffffffffffffffffffffffffffffffffffffffff161415801561071c575060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610703611729565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610753576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f1a385d79e0fc62a28ed85ccf5450fd65462413957f7578df07f0ccabe4ad781e816040516107c291906124f5565b60405180910390a150565b6060600480546107dc906125d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610808906125d8565b80156108535780601f1061082a57610100808354040283529160200191610853565b820191905f5260205f20905b81548152906001019060200180831161083657829003601f168201915b5050505050905090565b5f80610867611729565b9050610874818585611730565b600191505092915050565b6108876118f3565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600354905090565b5f806108f2611729565b90506108ff858285611971565b61090a8585856119fc565b60019150509392505050565b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f8061094d611729565b905061096e81858561095f8589611574565b6109699190612635565b611730565b600191505092915050565b600160135f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff8111156109af576109ae612668565b5b6040519080825280602002602001820160405280156109dd5781602001602082028036833780820191505090505b50905030815f815181106109f4576109f3612695565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610abb91906126d6565b81600181518110610acf57610ace612695565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610b36307f0000000000000000000000000000000000000000000000000000000000000000601154611730565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9476011545f8430426040518663ffffffff1660e01b8152600401610b999594939291906127fa565b5f604051808303815f87803b158015610bb0575f80fd5b505af1158015610bc2573d5f803e3d5ffd5b505050505f4790505f811115610d88575f600282610be0919061287f565b90505f8183610bef91906128af565b90505f600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610c379061290f565b5f6040518083038185875af1925050503d805f8114610c71576040519150601f19603f3d011682016040523d82523d5f602084013e610c76565b606091505b5050905080610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190612993565b60405180910390fd5b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610cff9061290f565b5f6040518083038185875af1925050503d805f8114610d39576040519150601f19603f3d011682016040523d82523d5f602084013e610d3e565b606091505b50508091505080610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b90612a21565b60405180910390fd5b5050505b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05601154604051610db9919061247d565b60405180910390a150505f60135f6101000a81548160ff021916908315150217905550565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e2c6118f3565b610e355f611ef5565b565b60115481565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610ebc61109d565b73ffffffffffffffffffffffffffffffffffffffff16610eda611729565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f525750600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f39611729565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610f89576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ffd0b0a42994d3cda2ac8e0f517a2c764afa4cdebeac6d7cf6da7879ba15b0e7281604051610ff891906124f5565b60405180910390a150565b61100b6118f3565b603260065461101a919061287f565b81111561105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390612aaf565b60405180910390fd5b806011819055507f4cba14fd4026630e64b03f8c6a0130ca310c15a5376cf7f6735c66880bb7bceb81604051611092919061247d565b60405180910390a150565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546110d3906125d8565b80601f01602080910402602001604051908101604052809291908181526020018280546110ff906125d8565b801561114a5780601f106111215761010080835404028352916020019161114a565b820191905f5260205f20905b81548152906001019060200180831161112d57829003601f168201915b5050505050905090565b61115c6118f3565b5f73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290612b17565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611254573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061127891906126d6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112fd573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061132191906126d6565b6040518363ffffffff1660e01b815260040161133e929190612b35565b6020604051808303815f875af115801561135a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061137e91906126d6565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f806113c9611729565b90505f6113d68286611574565b90508381101561141b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141290612bcc565b60405180910390fd5b6114288286868403611730565b60019250505092915050565b601060149054906101000a900460ff1681565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80611476611729565b90506114838185856119fc565b600191505092915050565b6114966118f3565b5f73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c90612c34565b60405180910390fd5b6001600a5f6101000a81548160ff02191690831515021790555043600d819055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6115fe6118f3565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390612cc2565b60405180910390fd5b61167581611ef5565b50565b6116806118f3565b601060149054906101000a900460ff166116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690612d2a565b60405180910390fd5b5f601060146101000a81548160ff0219169083151502179055506006546009819055506006546008819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361179e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179590612db8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361180c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180390612e46565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118e6919061247d565b60405180910390a3505050565b6118fb611729565b73ffffffffffffffffffffffffffffffffffffffff1661191961109d565b73ffffffffffffffffffffffffffffffffffffffff161461196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196690612eae565b60405180910390fd5b565b5f61197c8484611574565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119f657818110156119e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119df90612f16565b60405180910390fd5b6119f58484848403611730565b5b50505050565b60125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611a97575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611b48575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611b47575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80611b5e575060135f9054906101000a900460ff165b15611b7357611b6e838383611fb6565b611ef0565b600a5f9054906101000a900460ff16611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb890612f7e565b60405180910390fd5b601060149054906101000a900460ff1615611d6a5760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611c7d575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611c8a575060085481115b15611cc1576040517f801bc44b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611d32575060095481611d2684610dde565b611d309190612635565b115b15611d69576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f6064600b5483611d7b9190612f9c565b611d85919061287f565b905060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e31576064600e54600d54611ded9190612635565b4311611dfb57600c54611dff565b600b545b83611e0a9190612f9c565b611e14919061287f565b9050601154611e2230610dde565b10611e3057611e2f610979565b5b5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ec1576064600e54600d54611e979190612635565b4311611ea557600c54611ea9565b600b545b83611eb49190612f9c565b611ebe919061287f565b90505b5f811115611ee357611ed4843083611fb6565b8082611ee091906128af565b91505b611eee848484611fb6565b505b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b9061304d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612092576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612089906130db565b60405180910390fd5b61209d838383612225565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211890613169565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161220c919061247d565b60405180910390a361221f84848461222a565b50505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61225c82612233565b9050919050565b61226c81612252565b8114612276575f80fd5b50565b5f8135905061228781612263565b92915050565b5f602082840312156122a2576122a161222f565b5b5f6122af84828501612279565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156122ef5780820151818401526020810190506122d4565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612314826122b8565b61231e81856122c2565b935061232e8185602086016122d2565b612337816122fa565b840191505092915050565b5f6020820190508181035f83015261235a818461230a565b905092915050565b5f819050919050565b61237481612362565b811461237e575f80fd5b50565b5f8135905061238f8161236b565b92915050565b5f80604083850312156123ab576123aa61222f565b5b5f6123b885828601612279565b92505060206123c985828601612381565b9150509250929050565b5f8115159050919050565b6123e7816123d3565b82525050565b5f6020820190506124005f8301846123de565b92915050565b61240f816123d3565b8114612419575f80fd5b50565b5f8135905061242a81612406565b92915050565b5f80604083850312156124465761244561222f565b5b5f61245385828601612279565b92505060206124648582860161241c565b9150509250929050565b61247781612362565b82525050565b5f6020820190506124905f83018461246e565b92915050565b5f805f606084860312156124ad576124ac61222f565b5b5f6124ba86828701612279565b93505060206124cb86828701612279565b92505060406124dc86828701612381565b9150509250925092565b6124ef81612252565b82525050565b5f6020820190506125085f8301846124e6565b92915050565b5f60ff82169050919050565b6125238161250e565b82525050565b5f60208201905061253c5f83018461251a565b92915050565b5f602082840312156125575761255661222f565b5b5f61256484828501612381565b91505092915050565b5f80604083850312156125835761258261222f565b5b5f61259085828601612279565b92505060206125a185828601612279565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806125ef57607f821691505b602082108103612602576126016125ab565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61263f82612362565b915061264a83612362565b925082820190508082111561266257612661612608565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506126d081612263565b92915050565b5f602082840312156126eb576126ea61222f565b5b5f6126f8848285016126c2565b91505092915050565b5f819050919050565b5f819050919050565b5f61272d61272861272384612701565b61270a565b612362565b9050919050565b61273d81612713565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61277581612252565b82525050565b5f612786838361276c565b60208301905092915050565b5f602082019050919050565b5f6127a882612743565b6127b2818561274d565b93506127bd8361275d565b805f5b838110156127ed5781516127d4888261277b565b97506127df83612792565b9250506001810190506127c0565b5085935050505092915050565b5f60a08201905061280d5f83018861246e565b61281a6020830187612734565b818103604083015261282c818661279e565b905061283b60608301856124e6565b612848608083018461246e565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61288982612362565b915061289483612362565b9250826128a4576128a3612852565b5b828204905092915050565b5f6128b982612362565b91506128c483612362565b92508282039050818111156128dc576128db612608565b5b92915050565b5f81905092915050565b50565b5f6128fa5f836128e2565b9150612905826128ec565b5f82019050919050565b5f612919826128ef565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206d61726b6574696e5f8201527f672077616c6c6574000000000000000000000000000000000000000000000000602082015250565b5f61297d6028836122c2565b915061298882612923565b604082019050919050565b5f6020820190508181035f8301526129aa81612971565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f207461782077616c6c5f8201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b5f612a0b6022836122c2565b9150612a16826129b1565b604082019050919050565b5f6020820190508181035f830152612a38816129ff565b9050919050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c5f8201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b5f612a99602f836122c2565b9150612aa482612a3f565b604082019050919050565b5f6020820190508181035f830152612ac681612a8d565b9050919050565b7f70616972206164647265737320616c72656164792073657400000000000000005f82015250565b5f612b016018836122c2565b9150612b0c82612acd565b602082019050919050565b5f6020820190508181035f830152612b2e81612af5565b9050919050565b5f604082019050612b485f8301856124e6565b612b5560208301846124e6565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612bb66025836122c2565b9150612bc182612b5c565b604082019050919050565b5f6020820190508181035f830152612be381612baa565b9050919050565b7f50616972206e6f742063726561746564207965740000000000000000000000005f82015250565b5f612c1e6014836122c2565b9150612c2982612bea565b602082019050919050565b5f6020820190508181035f830152612c4b81612c12565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612cac6026836122c2565b9150612cb782612c52565b604082019050919050565b5f6020820190508181035f830152612cd981612ca0565b9050919050565b7f4c696d69747320616c72656164792072656d6f766564000000000000000000005f82015250565b5f612d146016836122c2565b9150612d1f82612ce0565b602082019050919050565b5f6020820190508181035f830152612d4181612d08565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612da26024836122c2565b9150612dad82612d48565b604082019050919050565b5f6020820190508181035f830152612dcf81612d96565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612e306022836122c2565b9150612e3b82612dd6565b604082019050919050565b5f6020820190508181035f830152612e5d81612e24565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612e986020836122c2565b9150612ea382612e64565b602082019050919050565b5f6020820190508181035f830152612ec581612e8c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612f00601d836122c2565b9150612f0b82612ecc565b602082019050919050565b5f6020820190508181035f830152612f2d81612ef4565b9050919050565b7f54726164696e67206973206e6f74206f70656e000000000000000000000000005f82015250565b5f612f686013836122c2565b9150612f7382612f34565b602082019050919050565b5f6020820190508181035f830152612f9581612f5c565b9050919050565b5f612fa682612362565b9150612fb183612362565b9250828202612fbf81612362565b91508282048414831517612fd657612fd5612608565b5b5092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6130376025836122c2565b915061304282612fdd565b604082019050919050565b5f6020820190508181035f8301526130648161302b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6130c56023836122c2565b91506130d08261306b565b604082019050919050565b5f6020820190508181035f8301526130f2816130b9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6131536026836122c2565b915061315e826130f9565b604082019050919050565b5f6020820190508181035f83015261318081613147565b905091905056fea2646970667358221220a6ea93b6641bac44a1d084f78691b409f36ebb5b770643b91ac35106351ac2a664736f6c634300081700330000000000000000000000002b03185649ef99757799039f31cbc86f97558b5e000000000000000000000000626a19c8db654391eeef993498e953f18c2f446f
Deployed Bytecode
0x6080604052600436106101b9575f3560e01c80637b16cea0116100eb578063a4d66daf11610089578063c9567bf911610063578063c9567bf9146105ee578063dd62ed3e14610604578063f2fde38b14610640578063f928364c14610668576101c0565b8063a4d66daf1461055e578063a8aa1b3114610588578063a9059cbb146105b2576101c0565b80638da5cb5b116100c55780638da5cb5b146104b857806395d89b41146104e25780639e78fb4f1461050c578063a457c2d714610522576101c0565b80637b16cea01461042c5780637fec621e14610468578063864b316714610490576101c0565b8063313ce5671161015857806370a082311161013257806370a0823114610386578063715018a6146103c257806373bc5a36146103d857806375f0a87414610402576101c0565b8063313ce5671461030a57806339509351146103345780636ac5eeee14610370576101c0565b806316697fc51161019457806316697fc51461025257806318160ddd1461027a57806323b872dd146102a45780632dc0562d146102e0576101c0565b806243acf7146101c457806306fdde03146101ec578063095ea7b314610216576101c0565b366101c057005b5f80fd5b3480156101cf575f80fd5b506101ea60048036038101906101e5919061228d565b61067e565b005b3480156101f7575f80fd5b506102006107cd565b60405161020d9190612342565b60405180910390f35b348015610221575f80fd5b5061023c60048036038101906102379190612395565b61085d565b60405161024991906123ed565b60405180910390f35b34801561025d575f80fd5b5061027860048036038101906102739190612430565b61087f565b005b348015610285575f80fd5b5061028e6108df565b60405161029b919061247d565b60405180910390f35b3480156102af575f80fd5b506102ca60048036038101906102c59190612496565b6108e8565b6040516102d791906123ed565b60405180910390f35b3480156102eb575f80fd5b506102f4610916565b60405161030191906124f5565b60405180910390f35b348015610315575f80fd5b5061031e61093b565b60405161032b9190612529565b60405180910390f35b34801561033f575f80fd5b5061035a60048036038101906103559190612395565b610943565b60405161036791906123ed565b60405180910390f35b34801561037b575f80fd5b50610384610979565b005b348015610391575f80fd5b506103ac60048036038101906103a7919061228d565b610dde565b6040516103b9919061247d565b60405180910390f35b3480156103cd575f80fd5b506103d6610e24565b005b3480156103e3575f80fd5b506103ec610e37565b6040516103f9919061247d565b60405180910390f35b34801561040d575f80fd5b50610416610e3d565b60405161042391906124f5565b60405180910390f35b348015610437575f80fd5b50610452600480360381019061044d919061228d565b610e62565b60405161045f91906123ed565b60405180910390f35b348015610473575f80fd5b5061048e6004803603810190610489919061228d565b610eb4565b005b34801561049b575f80fd5b506104b660048036038101906104b19190612542565b611003565b005b3480156104c3575f80fd5b506104cc61109d565b6040516104d991906124f5565b60405180910390f35b3480156104ed575f80fd5b506104f66110c4565b6040516105039190612342565b60405180910390f35b348015610517575f80fd5b50610520611154565b005b34801561052d575f80fd5b5061054860048036038101906105439190612395565b6113bf565b60405161055591906123ed565b60405180910390f35b348015610569575f80fd5b50610572611434565b60405161057f91906123ed565b60405180910390f35b348015610593575f80fd5b5061059c611447565b6040516105a991906124f5565b60405180910390f35b3480156105bd575f80fd5b506105d860048036038101906105d39190612395565b61146c565b6040516105e591906123ed565b60405180910390f35b3480156105f9575f80fd5b5061060261148e565b005b34801561060f575f80fd5b5061062a6004803603810190610625919061256d565b611574565b604051610637919061247d565b60405180910390f35b34801561064b575f80fd5b506106666004803603810190610661919061228d565b6115f6565b005b348015610673575f80fd5b5061067c611678565b005b61068661109d565b73ffffffffffffffffffffffffffffffffffffffff166106a4611729565b73ffffffffffffffffffffffffffffffffffffffff161415801561071c575060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610703611729565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610753576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f1a385d79e0fc62a28ed85ccf5450fd65462413957f7578df07f0ccabe4ad781e816040516107c291906124f5565b60405180910390a150565b6060600480546107dc906125d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610808906125d8565b80156108535780601f1061082a57610100808354040283529160200191610853565b820191905f5260205f20905b81548152906001019060200180831161083657829003601f168201915b5050505050905090565b5f80610867611729565b9050610874818585611730565b600191505092915050565b6108876118f3565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600354905090565b5f806108f2611729565b90506108ff858285611971565b61090a8585856119fc565b60019150509392505050565b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f8061094d611729565b905061096e81858561095f8589611574565b6109699190612635565b611730565b600191505092915050565b600160135f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff8111156109af576109ae612668565b5b6040519080825280602002602001820160405280156109dd5781602001602082028036833780820191505090505b50905030815f815181106109f4576109f3612695565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610abb91906126d6565b81600181518110610acf57610ace612695565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610b36307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d601154611730565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9476011545f8430426040518663ffffffff1660e01b8152600401610b999594939291906127fa565b5f604051808303815f87803b158015610bb0575f80fd5b505af1158015610bc2573d5f803e3d5ffd5b505050505f4790505f811115610d88575f600282610be0919061287f565b90505f8183610bef91906128af565b90505f600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610c379061290f565b5f6040518083038185875af1925050503d805f8114610c71576040519150601f19603f3d011682016040523d82523d5f602084013e610c76565b606091505b5050905080610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190612993565b60405180910390fd5b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610cff9061290f565b5f6040518083038185875af1925050503d805f8114610d39576040519150601f19603f3d011682016040523d82523d5f602084013e610d3e565b606091505b50508091505080610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b90612a21565b60405180910390fd5b5050505b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05601154604051610db9919061247d565b60405180910390a150505f60135f6101000a81548160ff021916908315150217905550565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e2c6118f3565b610e355f611ef5565b565b60115481565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610ebc61109d565b73ffffffffffffffffffffffffffffffffffffffff16610eda611729565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f525750600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f39611729565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610f89576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ffd0b0a42994d3cda2ac8e0f517a2c764afa4cdebeac6d7cf6da7879ba15b0e7281604051610ff891906124f5565b60405180910390a150565b61100b6118f3565b603260065461101a919061287f565b81111561105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390612aaf565b60405180910390fd5b806011819055507f4cba14fd4026630e64b03f8c6a0130ca310c15a5376cf7f6735c66880bb7bceb81604051611092919061247d565b60405180910390a150565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546110d3906125d8565b80601f01602080910402602001604051908101604052809291908181526020018280546110ff906125d8565b801561114a5780601f106111215761010080835404028352916020019161114a565b820191905f5260205f20905b81548152906001019060200180831161112d57829003601f168201915b5050505050905090565b61115c6118f3565b5f73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290612b17565b60405180910390fd5b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611254573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061127891906126d6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112fd573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061132191906126d6565b6040518363ffffffff1660e01b815260040161133e929190612b35565b6020604051808303815f875af115801561135a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061137e91906126d6565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f806113c9611729565b90505f6113d68286611574565b90508381101561141b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141290612bcc565b60405180910390fd5b6114288286868403611730565b60019250505092915050565b601060149054906101000a900460ff1681565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80611476611729565b90506114838185856119fc565b600191505092915050565b6114966118f3565b5f73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c90612c34565b60405180910390fd5b6001600a5f6101000a81548160ff02191690831515021790555043600d819055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6115fe6118f3565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390612cc2565b60405180910390fd5b61167581611ef5565b50565b6116806118f3565b601060149054906101000a900460ff166116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690612d2a565b60405180910390fd5b5f601060146101000a81548160ff0219169083151502179055506006546009819055506006546008819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361179e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179590612db8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361180c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180390612e46565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118e6919061247d565b60405180910390a3505050565b6118fb611729565b73ffffffffffffffffffffffffffffffffffffffff1661191961109d565b73ffffffffffffffffffffffffffffffffffffffff161461196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196690612eae565b60405180910390fd5b565b5f61197c8484611574565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119f657818110156119e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119df90612f16565b60405180910390fd5b6119f58484848403611730565b5b50505050565b60125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611a97575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611b48575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611b47575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80611b5e575060135f9054906101000a900460ff165b15611b7357611b6e838383611fb6565b611ef0565b600a5f9054906101000a900460ff16611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb890612f7e565b60405180910390fd5b601060149054906101000a900460ff1615611d6a5760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611c7d575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611c8a575060085481115b15611cc1576040517f801bc44b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611d32575060095481611d2684610dde565b611d309190612635565b115b15611d69576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f6064600b5483611d7b9190612f9c565b611d85919061287f565b905060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e31576064600e54600d54611ded9190612635565b4311611dfb57600c54611dff565b600b545b83611e0a9190612f9c565b611e14919061287f565b9050601154611e2230610dde565b10611e3057611e2f610979565b5b5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ec1576064600e54600d54611e979190612635565b4311611ea557600c54611ea9565b600b545b83611eb49190612f9c565b611ebe919061287f565b90505b5f811115611ee357611ed4843083611fb6565b8082611ee091906128af565b91505b611eee848484611fb6565b505b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b9061304d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612092576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612089906130db565b60405180910390fd5b61209d838383612225565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211890613169565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161220c919061247d565b60405180910390a361221f84848461222a565b50505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61225c82612233565b9050919050565b61226c81612252565b8114612276575f80fd5b50565b5f8135905061228781612263565b92915050565b5f602082840312156122a2576122a161222f565b5b5f6122af84828501612279565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156122ef5780820151818401526020810190506122d4565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612314826122b8565b61231e81856122c2565b935061232e8185602086016122d2565b612337816122fa565b840191505092915050565b5f6020820190508181035f83015261235a818461230a565b905092915050565b5f819050919050565b61237481612362565b811461237e575f80fd5b50565b5f8135905061238f8161236b565b92915050565b5f80604083850312156123ab576123aa61222f565b5b5f6123b885828601612279565b92505060206123c985828601612381565b9150509250929050565b5f8115159050919050565b6123e7816123d3565b82525050565b5f6020820190506124005f8301846123de565b92915050565b61240f816123d3565b8114612419575f80fd5b50565b5f8135905061242a81612406565b92915050565b5f80604083850312156124465761244561222f565b5b5f61245385828601612279565b92505060206124648582860161241c565b9150509250929050565b61247781612362565b82525050565b5f6020820190506124905f83018461246e565b92915050565b5f805f606084860312156124ad576124ac61222f565b5b5f6124ba86828701612279565b93505060206124cb86828701612279565b92505060406124dc86828701612381565b9150509250925092565b6124ef81612252565b82525050565b5f6020820190506125085f8301846124e6565b92915050565b5f60ff82169050919050565b6125238161250e565b82525050565b5f60208201905061253c5f83018461251a565b92915050565b5f602082840312156125575761255661222f565b5b5f61256484828501612381565b91505092915050565b5f80604083850312156125835761258261222f565b5b5f61259085828601612279565b92505060206125a185828601612279565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806125ef57607f821691505b602082108103612602576126016125ab565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61263f82612362565b915061264a83612362565b925082820190508082111561266257612661612608565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506126d081612263565b92915050565b5f602082840312156126eb576126ea61222f565b5b5f6126f8848285016126c2565b91505092915050565b5f819050919050565b5f819050919050565b5f61272d61272861272384612701565b61270a565b612362565b9050919050565b61273d81612713565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61277581612252565b82525050565b5f612786838361276c565b60208301905092915050565b5f602082019050919050565b5f6127a882612743565b6127b2818561274d565b93506127bd8361275d565b805f5b838110156127ed5781516127d4888261277b565b97506127df83612792565b9250506001810190506127c0565b5085935050505092915050565b5f60a08201905061280d5f83018861246e565b61281a6020830187612734565b818103604083015261282c818661279e565b905061283b60608301856124e6565b612848608083018461246e565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61288982612362565b915061289483612362565b9250826128a4576128a3612852565b5b828204905092915050565b5f6128b982612362565b91506128c483612362565b92508282039050818111156128dc576128db612608565b5b92915050565b5f81905092915050565b50565b5f6128fa5f836128e2565b9150612905826128ec565b5f82019050919050565b5f612919826128ef565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206d61726b6574696e5f8201527f672077616c6c6574000000000000000000000000000000000000000000000000602082015250565b5f61297d6028836122c2565b915061298882612923565b604082019050919050565b5f6020820190508181035f8301526129aa81612971565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f207461782077616c6c5f8201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b5f612a0b6022836122c2565b9150612a16826129b1565b604082019050919050565b5f6020820190508181035f830152612a38816129ff565b9050919050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c5f8201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b5f612a99602f836122c2565b9150612aa482612a3f565b604082019050919050565b5f6020820190508181035f830152612ac681612a8d565b9050919050565b7f70616972206164647265737320616c72656164792073657400000000000000005f82015250565b5f612b016018836122c2565b9150612b0c82612acd565b602082019050919050565b5f6020820190508181035f830152612b2e81612af5565b9050919050565b5f604082019050612b485f8301856124e6565b612b5560208301846124e6565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612bb66025836122c2565b9150612bc182612b5c565b604082019050919050565b5f6020820190508181035f830152612be381612baa565b9050919050565b7f50616972206e6f742063726561746564207965740000000000000000000000005f82015250565b5f612c1e6014836122c2565b9150612c2982612bea565b602082019050919050565b5f6020820190508181035f830152612c4b81612c12565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612cac6026836122c2565b9150612cb782612c52565b604082019050919050565b5f6020820190508181035f830152612cd981612ca0565b9050919050565b7f4c696d69747320616c72656164792072656d6f766564000000000000000000005f82015250565b5f612d146016836122c2565b9150612d1f82612ce0565b602082019050919050565b5f6020820190508181035f830152612d4181612d08565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612da26024836122c2565b9150612dad82612d48565b604082019050919050565b5f6020820190508181035f830152612dcf81612d96565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612e306022836122c2565b9150612e3b82612dd6565b604082019050919050565b5f6020820190508181035f830152612e5d81612e24565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612e986020836122c2565b9150612ea382612e64565b602082019050919050565b5f6020820190508181035f830152612ec581612e8c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612f00601d836122c2565b9150612f0b82612ecc565b602082019050919050565b5f6020820190508181035f830152612f2d81612ef4565b9050919050565b7f54726164696e67206973206e6f74206f70656e000000000000000000000000005f82015250565b5f612f686013836122c2565b9150612f7382612f34565b602082019050919050565b5f6020820190508181035f830152612f9581612f5c565b9050919050565b5f612fa682612362565b9150612fb183612362565b9250828202612fbf81612362565b91508282048414831517612fd657612fd5612608565b5b5092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6130376025836122c2565b915061304282612fdd565b604082019050919050565b5f6020820190508181035f8301526130648161302b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6130c56023836122c2565b91506130d08261306b565b604082019050919050565b5f6020820190508181035f8301526130f2816130b9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6131536026836122c2565b915061315e826130f9565b604082019050919050565b5f6020820190508181035f83015261318081613147565b905091905056fea2646970667358221220a6ea93b6641bac44a1d084f78691b409f36ebb5b770643b91ac35106351ac2a664736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002b03185649ef99757799039f31cbc86f97558b5e000000000000000000000000626a19c8db654391eeef993498e953f18c2f446f
-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0x2b03185649ef99757799039F31cbC86f97558B5e
Arg [1] : _taxWallet (address): 0x626A19C8Db654391eEEf993498E953F18c2f446f
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000002b03185649ef99757799039f31cbc86f97558b5e
Arg [1] : 000000000000000000000000626a19c8db654391eeef993498e953f18c2f446f
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.