ERC-20
Overview
Max Total Supply
470,770,000,000 WMZ
Holders
25
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 WMZValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
whaleboyz
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-06-21 */ // SPDX-License-Identifier: UNLICENSED // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) //Whaleboyz 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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 value {ERC20} uses, unless this function is * 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; } _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; _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; } _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 {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; interface IRouter { function WETH() external pure returns (address); function factory() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } interface IFactory { function createPair(address tokenA, address tokenB) external returns (address pair); function getPair(address tokenA, address tokenB) external view returns (address pair); } contract whaleboyz is Ownable, ERC20('Whale Maga Boyz ', 'WMZ ') { IRouter public Router; uint256 public buyTax; uint256 public sellTax; uint256 public devSplit; uint256 public marketingSplit; uint256 public lpSplit; uint256 public swapAtAmount; address payable public marketingWallet; address payable public teamWallet; address public swapPair; address dead = 0x000000000000000000000000000000000000dEaD; mapping (address => bool) public automatedMarketMakerPairs; mapping (address => bool) private _isExcludedFromFees; constructor( uint256 _buyTax, uint256 _sellTax, uint256 _devSplit, uint256 _marketingSplit, uint256 _lpSplit, address _router, address _MarketingWallet, address _teamWallet, uint256 initialSupply, address realOwner ) { marketingWallet = payable(_MarketingWallet); teamWallet = payable(_teamWallet); setBuyTax(_buyTax); setSellTax(_sellTax); setTaxSplit(_devSplit, _marketingSplit, _lpSplit); excludeFromFees(realOwner, true); excludeFromFees(address(this), true); _mint(realOwner, initialSupply * (10**18)); swapAtAmount = totalSupply() * 10 / 1000000; // .01% updateSwapRouter(_router); transferOwnership(realOwner); } event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); function setBuyTax(uint256 _newBuyTax) public onlyOwner { buyTax = _newBuyTax; require(_newBuyTax <= 10000, "Cannot exceed 10000"); } function setSellTax(uint256 _newSellTax) public onlyOwner { sellTax = _newSellTax; require(_newSellTax <= 10000, "TotalFee cannot exceed 10000"); } function setTaxSplit(uint256 _devSplit, uint256 _marketingSplit, uint256 _lpSplit) public onlyOwner { devSplit = _devSplit; marketingSplit = _marketingSplit; lpSplit = _lpSplit; require(_devSplit + _marketingSplit + _lpSplit == 100, "Split combination must equal 100"); } function setMarketingWallet(address payable newMarketingWallet) public onlyOwner { if (_isExcludedFromFees[marketingWallet] = true) excludeFromFees(marketingWallet, false); marketingWallet = newMarketingWallet; if (_isExcludedFromFees[marketingWallet] = false) excludeFromFees(marketingWallet, true); } function setTeamWallet(address payable newTeamWallet) public onlyOwner { if (_isExcludedFromFees[teamWallet] = true) excludeFromFees(teamWallet, false); teamWallet = newTeamWallet; if (_isExcludedFromFees[teamWallet] = false) excludeFromFees(teamWallet, true); } function excludeFromFees(address account, bool excluded) public onlyOwner { require(_isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'"); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function _setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(automatedMarketMakerPairs[pair] != value, "Automated market maker pair is already set to that value"); automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateSwapRouter(address newAddress) public onlyOwner { require(newAddress != address(Router), "The router already has that address"); Router = IRouter(newAddress); address bnbPair = IFactory(Router.factory()) .getPair(address(this), Router.WETH()); if(bnbPair == address(0)) bnbPair = IFactory(Router.factory()).createPair(address(this), Router.WETH()); if (automatedMarketMakerPairs[bnbPair] != true && bnbPair != address(0) ){ _setAutomatedMarketMakerPair(bnbPair, true); } _approve(address(this), address(Router), ~uint256(0)); swapPair = bnbPair; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function setSwapAtAmount(uint256 _newSwapAtAmount) external onlyOwner { swapAtAmount = _newSwapAtAmount; } bool private inSwapAndLiquify; modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } function _transfer( address from, address to, uint256 amount ) internal override { // if any account belongs to _isExcludedFromFee account then remove the fee if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { if(automatedMarketMakerPairs[to] || automatedMarketMakerPairs[from]) { if (balanceOf(address(this)) > swapAtAmount && !inSwapAndLiquify && automatedMarketMakerPairs[to]) SwapFees(); uint256 currentFee = automatedMarketMakerPairs[to] ? sellTax : buyTax; uint256 extraFee =(amount * currentFee)/10000; if (extraFee > 0) { super._transfer(from, address(this), extraFee); amount = amount - extraFee; } } } super._transfer(from, to, amount); } function SwapFees() private lockTheSwap { uint256 tokensToAddLiquidityWith = 0; uint256 contractTokenBalance = balanceOf(address(this)); if(lpSplit > 0) tokensToAddLiquidityWith = contractTokenBalance * lpSplit / 200; uint256 toSwap = contractTokenBalance-tokensToAddLiquidityWith; uint256 initialBalance = address(this).balance; address[] memory path = new address[](2); path[0] = address(this); path[1] = Router.WETH(); try Router.swapExactTokensForETHSupportingFeeOnTransferTokens( toSwap, 0, path, address(this), block.timestamp ) {} catch { revert("Failed to swap to eth");} if(lpSplit > 0) { uint256 deltaBalance = address(this).balance-initialBalance; uint256 bnbToAddLiquidityWith = (deltaBalance * lpSplit) / (200 - lpSplit); addLiquidity(tokensToAddLiquidityWith, bnbToAddLiquidityWith); } if(marketingSplit > 0) { uint256 marketingAmount = (address(this).balance * marketingSplit) / (marketingSplit + devSplit); payable(marketingWallet).transfer(marketingAmount); } if(devSplit > 0) payable(teamWallet).transfer(address(this).balance); } function manualSwapAndBurn() external onlyOwner { SwapFees(); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // add the liquidity try Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable dead, block.timestamp ) {} catch {revert("Failed to add liquidity");} } function withdawlBNB() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } function withdrawlToken(address _tokenAddress) external onlyOwner { ERC20(_tokenAddress).transfer(msg.sender, ERC20(_tokenAddress).balanceOf(address(this))); } // to receive Eth From Router when Swapping receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"},{"internalType":"uint256","name":"_sellTax","type":"uint256"},{"internalType":"uint256","name":"_devSplit","type":"uint256"},{"internalType":"uint256","name":"_marketingSplit","type":"uint256"},{"internalType":"uint256","name":"_lpSplit","type":"uint256"},{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_MarketingWallet","type":"address"},{"internalType":"address","name":"_teamWallet","type":"address"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"realOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"_setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"devSplit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpSplit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwapAndBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingSplit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBuyTax","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newMarketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSellTax","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSwapAtAmount","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devSplit","type":"uint256"},{"internalType":"uint256","name":"_marketingSplit","type":"uint256"},{"internalType":"uint256","name":"_lpSplit","type":"uint256"}],"name":"setTaxSplit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newTeamWallet","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address payable","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"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateSwapRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdawlBNB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"withdrawlToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052601080546001600160a01b03191661dead17905534801562000024575f80fd5b5060405162002d4a38038062002d4a833981016040819052620000479162000c1f565b6040518060400160405280601181526020017002bb430b6329026b0b3b0902137bcbd101607d1b8152506040518060400160405280600481526020016302ba6ad160e51b815250620000a8620000a2620001a460201b60201c565b620001a8565b6004620000b6838262000d51565b506005620000c5828262000d51565b5050600d80546001600160a01b038088166001600160a01b031992831617909255600e80549287169290911691909117905550620001038a620001f7565b6200010e8962000261565b6200011b888888620002c4565b620001288160016200034c565b620001353060016200034c565b62000154816200014e84670de0b6b3a764000062000e2d565b62000438565b620f42406200016260035490565b6200016f90600a62000e2d565b6200017b919062000e4d565b600c5562000189856200051a565b62000194816200090f565b5050505050505050505062000ea6565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620002016200098b565b60078190556127108111156200025e5760405162461bcd60e51b815260206004820152601360248201527f43616e6e6f74206578636565642031303030300000000000000000000000000060448201526064015b60405180910390fd5b50565b6200026b6200098b565b60088190556127108111156200025e5760405162461bcd60e51b815260206004820152601c60248201527f546f74616c4665652063616e6e6f742065786365656420313030303000000000604482015260640162000255565b620002ce6200098b565b6009839055600a829055600b81905580620002ea838562000e6d565b620002f6919062000e6d565b606414620003475760405162461bcd60e51b815260206004820181905260248201527f53706c697420636f6d62696e6174696f6e206d75737420657175616c20313030604482015260640162000255565b505050565b620003566200098b565b6001600160a01b0382165f9081526012602052604090205481151560ff909116151503620003da5760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b606482015260840162000255565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000255565b8060035f828254620004a3919062000e6d565b90915550506001600160a01b0382165f9081526001602052604081208054839290620004d190849062000e6d565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b620005246200098b565b6006546001600160a01b0390811690821603620005905760405162461bcd60e51b815260206004820152602360248201527f54686520726f7574657220616c7265616479206861732074686174206164647260448201526265737360e81b606482015260840162000255565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290515f929163c45a01559160048083019260209291908290030181865afa158015620005ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000610919062000e83565b6001600160a01b031663e6a439053060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000670573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000696919062000e83565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015620006e0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000706919062000e83565b90506001600160a01b038116620008885760065f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000768573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200078e919062000e83565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620007ee573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000814919062000e83565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156200085f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000885919062000e83565b90505b6001600160a01b0381165f9081526011602052604090205460ff161515600114801590620008be57506001600160a01b03811615155b15620008d157620008d1816001620009e8565b600654620008ec9030906001600160a01b03165f1962000adc565b600f80546001600160a01b0319166001600160a01b039290921691909117905550565b620009196200098b565b6001600160a01b038116620009805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000255565b6200025e81620001a8565b5f546001600160a01b03163314620009e65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000255565b565b620009f26200098b565b6001600160a01b0382165f9081526011602052604090205481151560ff90911615150362000a895760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c75650000000000000000606482015260840162000255565b6001600160a01b0382165f81815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831662000b405760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000255565b6001600160a01b03821662000ba35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000255565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b80516001600160a01b038116811462000c1a575f80fd5b919050565b5f805f805f805f805f806101408b8d03121562000c3a575f80fd5b8a51995060208b0151985060408b0151975060608b0151965060808b0151955062000c6860a08c0162000c03565b945062000c7860c08c0162000c03565b935062000c8860e08c0162000c03565b92506101008b0151915062000ca16101208c0162000c03565b90509295989b9194979a5092959850565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168062000cdb57607f821691505b60208210810362000cfa57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000347575f81815260208120601f850160051c8101602086101562000d285750805b601f850160051c820191505b8181101562000d495782815560010162000d34565b505050505050565b81516001600160401b0381111562000d6d5762000d6d62000cb2565b62000d858162000d7e845462000cc6565b8462000d00565b602080601f83116001811462000dbb575f841562000da35750858301515b5f19600386901b1c1916600185901b17855562000d49565b5f85815260208120601f198616915b8281101562000deb5788860151825594840194600190910190840162000dca565b508582101562000e0957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141762000e475762000e4762000e19565b92915050565b5f8262000e6857634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111562000e475762000e4762000e19565b5f6020828403121562000e94575f80fd5b62000e9f8262000c03565b9392505050565b611e968062000eb45f395ff3fe608060405260043610610220575f3560e01c806375f0a8741161011e578063b62496f5116100a8578063dc1052e21161006d578063dc1052e214610636578063dd62ed3e14610655578063e799ffb114610674578063f2fde38b14610688578063f6d7eade146106a7575f80fd5b8063b62496f5146105a1578063b9413b51146105cf578063b98b677f146105e3578063c024666814610602578063cc1776d314610621575f80fd5b806395d89b41116100ee57806395d89b4114610511578063a457c2d714610525578063a7f7b36f14610544578063a9059cbb14610563578063ac5cad5614610582575f80fd5b806375f0a874146104a257806386917524146104c15780638cd09d50146104d65780638da5cb5b146104f5575f80fd5b80633f7fc93b116101aa5780635d098b381161016f5780635d098b38146104075780636402511e146104265780636e0a0c8a1461044557806370a082311461045a578063715018a61461048e575f80fd5b80633f7fc93b146103685780634647283d146103875780634f7041a51461039c5780634fbee193146103b157806359927044146103e8575f80fd5b806323b872dd116101f057806323b872dd146102c357806326991cc8146102e2578063313ce5671461031957806339509351146103345780633d90784014610353575f80fd5b806306fdde031461022b578063095ea7b3146102555780631525ff7d1461028457806318160ddd146102a5575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f6106c6565b60405161024c9190611b24565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611b83565b610756565b604051901515815260200161024c565b34801561028f575f80fd5b506102a361029e366004611bad565b61076f565b005b3480156102b0575f80fd5b506003545b60405190815260200161024c565b3480156102ce575f80fd5b506102746102dd366004611bcf565b6107e8565b3480156102ed575f80fd5b50600f54610301906001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b348015610324575f80fd5b506040516012815260200161024c565b34801561033f575f80fd5b5061027461034e366004611b83565b61080b565b34801561035e575f80fd5b506102b560095481565b348015610373575f80fd5b506102a3610382366004611c0d565b61082c565b348015610392575f80fd5b506102b5600a5481565b3480156103a7575f80fd5b506102b560075481565b3480156103bc575f80fd5b506102746103cb366004611bad565b6001600160a01b03165f9081526012602052604090205460ff1690565b3480156103f3575f80fd5b50600e54610301906001600160a01b031681565b348015610412575f80fd5b506102a3610421366004611bad565b6108b1565b348015610431575f80fd5b506102a3610440366004611c36565b610929565b348015610450575f80fd5b506102b5600b5481565b348015610465575f80fd5b506102b5610474366004611bad565b6001600160a01b03165f9081526001602052604090205490565b348015610499575f80fd5b506102a3610936565b3480156104ad575f80fd5b50600d54610301906001600160a01b031681565b3480156104cc575f80fd5b506102b5600c5481565b3480156104e1575f80fd5b506102a36104f0366004611c36565b610949565b348015610500575f80fd5b505f546001600160a01b0316610301565b34801561051c575f80fd5b5061023f6109a8565b348015610530575f80fd5b5061027461053f366004611b83565b6109b7565b34801561054f575f80fd5b506102a361055e366004611c5a565b610a31565b34801561056e575f80fd5b5061027461057d366004611b83565b610b21565b34801561058d575f80fd5b506102a361059c366004611bad565b610b2e565b3480156105ac575f80fd5b506102746105bb366004611bad565b60116020525f908152604090205460ff1681565b3480156105da575f80fd5b506102a3610c16565b3480156105ee575f80fd5b506102a36105fd366004611bad565b610c26565b34801561060d575f80fd5b506102a361061c366004611c5a565b610ffe565b34801561062c575f80fd5b506102b560085481565b348015610641575f80fd5b506102a3610650366004611c36565b6110e6565b348015610660575f80fd5b506102b561066f366004611c91565b61113b565b34801561067f575f80fd5b506102a3611165565b348015610693575f80fd5b506102a36106a2366004611bad565b611196565b3480156106b2575f80fd5b50600654610301906001600160a01b031681565b6060600480546106d590611cbd565b80601f016020809104026020016040519081016040528092919081815260200182805461070190611cbd565b801561074c5780601f106107235761010080835404028352916020019161074c565b820191905f5260205f20905b81548152906001019060200180831161072f57829003601f168201915b5050505050905090565b5f3361076381858561120c565b60019150505b92915050565b61077761132f565b600e546001600160a01b03165f908152601260205260409020805460ff19166001179055600e546107b1906001600160a01b03165f610ffe565b600e80546001600160a01b0319166001600160a01b0383169081179091555f908152601260205260409020805460ff191690555b50565b5f336107f5858285611388565b610800858585611400565b506001949350505050565b5f3361076381858561081d838361113b565b6108279190611d09565b61120c565b61083461132f565b6009839055600a829055600b8190558061084e8385611d09565b6108589190611d09565b6064146108ac5760405162461bcd60e51b815260206004820181905260248201527f53706c697420636f6d62696e6174696f6e206d75737420657175616c2031303060448201526064015b60405180910390fd5b505050565b6108b961132f565b600d546001600160a01b03165f908152601260205260409020805460ff19166001179055600d546108f3906001600160a01b03165f610ffe565b600d80546001600160a01b0319166001600160a01b0383169081179091555f908152601260205260409020805460ff1916905550565b61093161132f565b600c55565b61093e61132f565b6109475f61154c565b565b61095161132f565b60088190556127108111156107e55760405162461bcd60e51b815260206004820152601c60248201527f546f74616c4665652063616e6e6f74206578636565642031303030300000000060448201526064016108a3565b6060600580546106d590611cbd565b5f33816109c4828661113b565b905083811015610a245760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108a3565b610800828686840361120c565b610a3961132f565b6001600160a01b0382165f9081526011602052604090205481151560ff909116151503610ace5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084016108a3565b6001600160a01b0382165f81815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b5f33610763818585611400565b610b3661132f565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610b82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ba69190611d1c565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af1158015610bee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c129190611d33565b5050565b610c1e61132f565b61094761159b565b610c2e61132f565b6006546001600160a01b0390811690821603610c985760405162461bcd60e51b815260206004820152602360248201527f54686520726f7574657220616c7265616479206861732074686174206164647260448201526265737360e81b60648201526084016108a3565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290515f929163c45a01559160048083019260209291908290030181865afa158015610cf1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d159190611d4e565b6001600160a01b031663e6a439053060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d989190611d4e565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610de1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e059190611d4e565b90506001600160a01b038116610f7d5760065f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e65573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e899190611d4e565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ee8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f0c9190611d4e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610f56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f7a9190611d4e565b90505b6001600160a01b0381165f9081526011602052604090205460ff161515600114801590610fb257506001600160a01b03811615155b15610fc257610fc2816001610a31565b600654610fdb9030906001600160a01b03165f1961120c565b600f80546001600160a01b0319166001600160a01b039290921691909117905550565b61100661132f565b6001600160a01b0382165f9081526012602052604090205481151560ff9091161515036110885760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b60648201526084016108a3565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6110ee61132f565b60078190556127108111156107e55760405162461bcd60e51b8152602060048201526013602482015272043616e6e6f742065786365656420313030303606c1b60448201526064016108a3565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61116d61132f565b60405133904780156108fc02915f818181858888f193505050501580156107e5573d5f803e3d5ffd5b61119e61132f565b6001600160a01b0381166112035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a3565b6107e58161154c565b6001600160a01b03831661126e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108a3565b6001600160a01b0382166112cf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108a3565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f546001600160a01b031633146109475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108a3565b5f611393848461113b565b90505f1981146113fa57818110156113ed5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108a3565b6113fa848484840361120c565b50505050565b6001600160a01b0383165f9081526012602052604090205460ff1615801561144057506001600160a01b0382165f9081526012602052604090205460ff16155b15611541576001600160a01b0382165f9081526011602052604090205460ff168061148257506001600160a01b0383165f9081526011602052604090205460ff165b1561154157600c54305f908152600160205260409020541180156114a9575060135460ff16155b80156114cc57506001600160a01b0382165f9081526011602052604090205460ff165b156114d9576114d961159b565b6001600160a01b0382165f9081526011602052604081205460ff1661150057600754611504565b6008545b90505f6127106115148385611d69565b61151e9190611d80565b9050801561153e57611531853083611879565b61153b8184611d9f565b92505b50505b6108ac838383611879565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6013805460ff191660011790555f806115c8306001600160a01b03165f9081526001602052604090205490565b600b54909150156115f05760c8600b54826115e39190611d69565b6115ed9190611d80565b91505b5f6115fb8383611d9f565b60408051600280825260608201835292935047925f9260208301908036833701905050905030815f8151811061163357611633611db2565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561168a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116ae9190611d4e565b816001815181106116c1576116c1611db2565b6001600160a01b03928316602091820292909201015260065460405163791ac94760e01b815291169063791ac947906117069086905f90869030904290600401611dc6565b5f604051808303815f87803b15801561171d575f80fd5b505af192505050801561172e575060015b6117725760405162461bcd60e51b815260206004820152601560248201527408cc2d2d8cac840e8de40e6eec2e040e8de40cae8d605b1b60448201526064016108a3565b600b54156117bd575f6117858347611d9f565b90505f600b5460c86117979190611d9f565b600b546117a49084611d69565b6117ae9190611d80565b90506117ba8782611a45565b50505b600a5415611828575f600954600a546117d69190611d09565b600a546117e39047611d69565b6117ed9190611d80565b600d546040519192506001600160a01b03169082156108fc029083905f818181858888f19350505050158015611825573d5f803e3d5ffd5b50505b6009541561186857600e546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015611866573d5f803e3d5ffd5b505b50506013805460ff19169055505050565b6001600160a01b0383166118dd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108a3565b6001600160a01b03821661193f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108a3565b6001600160a01b0383165f90815260016020526040902054818110156119b65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108a3565b6001600160a01b038085165f908152600160205260408082208585039055918516815290812080548492906119ec908490611d09565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a3891815260200190565b60405180910390a36113fa565b60065460105460405163f305d71960e01b8152306004820152602481018590525f6044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af193505050508015611ad1575060408051601f3d908101601f19168201909252611ace91810190611e35565b60015b611b1d5760405162461bcd60e51b815260206004820152601760248201527f4661696c656420746f20616464206c697175696469747900000000000000000060448201526064016108a3565b5050505050565b5f6020808352835180828501525f5b81811015611b4f57858101830151858201604001528201611b33565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107e5575f80fd5b5f8060408385031215611b94575f80fd5b8235611b9f81611b6f565b946020939093013593505050565b5f60208284031215611bbd575f80fd5b8135611bc881611b6f565b9392505050565b5f805f60608486031215611be1575f80fd5b8335611bec81611b6f565b92506020840135611bfc81611b6f565b929592945050506040919091013590565b5f805f60608486031215611c1f575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215611c46575f80fd5b5035919050565b80151581146107e5575f80fd5b5f8060408385031215611c6b575f80fd5b8235611c7681611b6f565b91506020830135611c8681611c4d565b809150509250929050565b5f8060408385031215611ca2575f80fd5b8235611cad81611b6f565b91506020830135611c8681611b6f565b600181811c90821680611cd157607f821691505b602082108103611cef57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561076957610769611cf5565b5f60208284031215611d2c575f80fd5b5051919050565b5f60208284031215611d43575f80fd5b8151611bc881611c4d565b5f60208284031215611d5e575f80fd5b8151611bc881611b6f565b808202811582820484141761076957610769611cf5565b5f82611d9a57634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561076957610769611cf5565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611e145784516001600160a01b031683529383019391830191600101611def565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215611e47575f80fd5b835192506020840151915060408401519050925092509256fea264697066735822122008b0f50355b6359393361b105098948c1e489e48b49f66af1802aecbb7cdc2c464736f6c63430008140033000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002100000000000000000000000000000000000000000000000000000000000000210000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000092866af48a00119502279607eb6425bec217a5d100000000000000000000000092866af48a00119502279607eb6425bec217a5d10000000000000000000000000000000000000000000000000000006d9c14208000000000000000000000000092866af48a00119502279607eb6425bec217a5d1
Deployed Bytecode
0x608060405260043610610220575f3560e01c806375f0a8741161011e578063b62496f5116100a8578063dc1052e21161006d578063dc1052e214610636578063dd62ed3e14610655578063e799ffb114610674578063f2fde38b14610688578063f6d7eade146106a7575f80fd5b8063b62496f5146105a1578063b9413b51146105cf578063b98b677f146105e3578063c024666814610602578063cc1776d314610621575f80fd5b806395d89b41116100ee57806395d89b4114610511578063a457c2d714610525578063a7f7b36f14610544578063a9059cbb14610563578063ac5cad5614610582575f80fd5b806375f0a874146104a257806386917524146104c15780638cd09d50146104d65780638da5cb5b146104f5575f80fd5b80633f7fc93b116101aa5780635d098b381161016f5780635d098b38146104075780636402511e146104265780636e0a0c8a1461044557806370a082311461045a578063715018a61461048e575f80fd5b80633f7fc93b146103685780634647283d146103875780634f7041a51461039c5780634fbee193146103b157806359927044146103e8575f80fd5b806323b872dd116101f057806323b872dd146102c357806326991cc8146102e2578063313ce5671461031957806339509351146103345780633d90784014610353575f80fd5b806306fdde031461022b578063095ea7b3146102555780631525ff7d1461028457806318160ddd146102a5575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f6106c6565b60405161024c9190611b24565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611b83565b610756565b604051901515815260200161024c565b34801561028f575f80fd5b506102a361029e366004611bad565b61076f565b005b3480156102b0575f80fd5b506003545b60405190815260200161024c565b3480156102ce575f80fd5b506102746102dd366004611bcf565b6107e8565b3480156102ed575f80fd5b50600f54610301906001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b348015610324575f80fd5b506040516012815260200161024c565b34801561033f575f80fd5b5061027461034e366004611b83565b61080b565b34801561035e575f80fd5b506102b560095481565b348015610373575f80fd5b506102a3610382366004611c0d565b61082c565b348015610392575f80fd5b506102b5600a5481565b3480156103a7575f80fd5b506102b560075481565b3480156103bc575f80fd5b506102746103cb366004611bad565b6001600160a01b03165f9081526012602052604090205460ff1690565b3480156103f3575f80fd5b50600e54610301906001600160a01b031681565b348015610412575f80fd5b506102a3610421366004611bad565b6108b1565b348015610431575f80fd5b506102a3610440366004611c36565b610929565b348015610450575f80fd5b506102b5600b5481565b348015610465575f80fd5b506102b5610474366004611bad565b6001600160a01b03165f9081526001602052604090205490565b348015610499575f80fd5b506102a3610936565b3480156104ad575f80fd5b50600d54610301906001600160a01b031681565b3480156104cc575f80fd5b506102b5600c5481565b3480156104e1575f80fd5b506102a36104f0366004611c36565b610949565b348015610500575f80fd5b505f546001600160a01b0316610301565b34801561051c575f80fd5b5061023f6109a8565b348015610530575f80fd5b5061027461053f366004611b83565b6109b7565b34801561054f575f80fd5b506102a361055e366004611c5a565b610a31565b34801561056e575f80fd5b5061027461057d366004611b83565b610b21565b34801561058d575f80fd5b506102a361059c366004611bad565b610b2e565b3480156105ac575f80fd5b506102746105bb366004611bad565b60116020525f908152604090205460ff1681565b3480156105da575f80fd5b506102a3610c16565b3480156105ee575f80fd5b506102a36105fd366004611bad565b610c26565b34801561060d575f80fd5b506102a361061c366004611c5a565b610ffe565b34801561062c575f80fd5b506102b560085481565b348015610641575f80fd5b506102a3610650366004611c36565b6110e6565b348015610660575f80fd5b506102b561066f366004611c91565b61113b565b34801561067f575f80fd5b506102a3611165565b348015610693575f80fd5b506102a36106a2366004611bad565b611196565b3480156106b2575f80fd5b50600654610301906001600160a01b031681565b6060600480546106d590611cbd565b80601f016020809104026020016040519081016040528092919081815260200182805461070190611cbd565b801561074c5780601f106107235761010080835404028352916020019161074c565b820191905f5260205f20905b81548152906001019060200180831161072f57829003601f168201915b5050505050905090565b5f3361076381858561120c565b60019150505b92915050565b61077761132f565b600e546001600160a01b03165f908152601260205260409020805460ff19166001179055600e546107b1906001600160a01b03165f610ffe565b600e80546001600160a01b0319166001600160a01b0383169081179091555f908152601260205260409020805460ff191690555b50565b5f336107f5858285611388565b610800858585611400565b506001949350505050565b5f3361076381858561081d838361113b565b6108279190611d09565b61120c565b61083461132f565b6009839055600a829055600b8190558061084e8385611d09565b6108589190611d09565b6064146108ac5760405162461bcd60e51b815260206004820181905260248201527f53706c697420636f6d62696e6174696f6e206d75737420657175616c2031303060448201526064015b60405180910390fd5b505050565b6108b961132f565b600d546001600160a01b03165f908152601260205260409020805460ff19166001179055600d546108f3906001600160a01b03165f610ffe565b600d80546001600160a01b0319166001600160a01b0383169081179091555f908152601260205260409020805460ff1916905550565b61093161132f565b600c55565b61093e61132f565b6109475f61154c565b565b61095161132f565b60088190556127108111156107e55760405162461bcd60e51b815260206004820152601c60248201527f546f74616c4665652063616e6e6f74206578636565642031303030300000000060448201526064016108a3565b6060600580546106d590611cbd565b5f33816109c4828661113b565b905083811015610a245760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108a3565b610800828686840361120c565b610a3961132f565b6001600160a01b0382165f9081526011602052604090205481151560ff909116151503610ace5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084016108a3565b6001600160a01b0382165f81815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b5f33610763818585611400565b610b3661132f565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610b82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ba69190611d1c565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af1158015610bee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c129190611d33565b5050565b610c1e61132f565b61094761159b565b610c2e61132f565b6006546001600160a01b0390811690821603610c985760405162461bcd60e51b815260206004820152602360248201527f54686520726f7574657220616c7265616479206861732074686174206164647260448201526265737360e81b60648201526084016108a3565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290515f929163c45a01559160048083019260209291908290030181865afa158015610cf1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d159190611d4e565b6001600160a01b031663e6a439053060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d989190611d4e565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610de1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e059190611d4e565b90506001600160a01b038116610f7d5760065f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e65573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e899190611d4e565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ee8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f0c9190611d4e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610f56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f7a9190611d4e565b90505b6001600160a01b0381165f9081526011602052604090205460ff161515600114801590610fb257506001600160a01b03811615155b15610fc257610fc2816001610a31565b600654610fdb9030906001600160a01b03165f1961120c565b600f80546001600160a01b0319166001600160a01b039290921691909117905550565b61100661132f565b6001600160a01b0382165f9081526012602052604090205481151560ff9091161515036110885760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b60648201526084016108a3565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6110ee61132f565b60078190556127108111156107e55760405162461bcd60e51b8152602060048201526013602482015272043616e6e6f742065786365656420313030303606c1b60448201526064016108a3565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61116d61132f565b60405133904780156108fc02915f818181858888f193505050501580156107e5573d5f803e3d5ffd5b61119e61132f565b6001600160a01b0381166112035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a3565b6107e58161154c565b6001600160a01b03831661126e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108a3565b6001600160a01b0382166112cf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108a3565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f546001600160a01b031633146109475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108a3565b5f611393848461113b565b90505f1981146113fa57818110156113ed5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108a3565b6113fa848484840361120c565b50505050565b6001600160a01b0383165f9081526012602052604090205460ff1615801561144057506001600160a01b0382165f9081526012602052604090205460ff16155b15611541576001600160a01b0382165f9081526011602052604090205460ff168061148257506001600160a01b0383165f9081526011602052604090205460ff165b1561154157600c54305f908152600160205260409020541180156114a9575060135460ff16155b80156114cc57506001600160a01b0382165f9081526011602052604090205460ff165b156114d9576114d961159b565b6001600160a01b0382165f9081526011602052604081205460ff1661150057600754611504565b6008545b90505f6127106115148385611d69565b61151e9190611d80565b9050801561153e57611531853083611879565b61153b8184611d9f565b92505b50505b6108ac838383611879565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6013805460ff191660011790555f806115c8306001600160a01b03165f9081526001602052604090205490565b600b54909150156115f05760c8600b54826115e39190611d69565b6115ed9190611d80565b91505b5f6115fb8383611d9f565b60408051600280825260608201835292935047925f9260208301908036833701905050905030815f8151811061163357611633611db2565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561168a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116ae9190611d4e565b816001815181106116c1576116c1611db2565b6001600160a01b03928316602091820292909201015260065460405163791ac94760e01b815291169063791ac947906117069086905f90869030904290600401611dc6565b5f604051808303815f87803b15801561171d575f80fd5b505af192505050801561172e575060015b6117725760405162461bcd60e51b815260206004820152601560248201527408cc2d2d8cac840e8de40e6eec2e040e8de40cae8d605b1b60448201526064016108a3565b600b54156117bd575f6117858347611d9f565b90505f600b5460c86117979190611d9f565b600b546117a49084611d69565b6117ae9190611d80565b90506117ba8782611a45565b50505b600a5415611828575f600954600a546117d69190611d09565b600a546117e39047611d69565b6117ed9190611d80565b600d546040519192506001600160a01b03169082156108fc029083905f818181858888f19350505050158015611825573d5f803e3d5ffd5b50505b6009541561186857600e546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015611866573d5f803e3d5ffd5b505b50506013805460ff19169055505050565b6001600160a01b0383166118dd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108a3565b6001600160a01b03821661193f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108a3565b6001600160a01b0383165f90815260016020526040902054818110156119b65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108a3565b6001600160a01b038085165f908152600160205260408082208585039055918516815290812080548492906119ec908490611d09565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a3891815260200190565b60405180910390a36113fa565b60065460105460405163f305d71960e01b8152306004820152602481018590525f6044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af193505050508015611ad1575060408051601f3d908101601f19168201909252611ace91810190611e35565b60015b611b1d5760405162461bcd60e51b815260206004820152601760248201527f4661696c656420746f20616464206c697175696469747900000000000000000060448201526064016108a3565b5050505050565b5f6020808352835180828501525f5b81811015611b4f57858101830151858201604001528201611b33565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107e5575f80fd5b5f8060408385031215611b94575f80fd5b8235611b9f81611b6f565b946020939093013593505050565b5f60208284031215611bbd575f80fd5b8135611bc881611b6f565b9392505050565b5f805f60608486031215611be1575f80fd5b8335611bec81611b6f565b92506020840135611bfc81611b6f565b929592945050506040919091013590565b5f805f60608486031215611c1f575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215611c46575f80fd5b5035919050565b80151581146107e5575f80fd5b5f8060408385031215611c6b575f80fd5b8235611c7681611b6f565b91506020830135611c8681611c4d565b809150509250929050565b5f8060408385031215611ca2575f80fd5b8235611cad81611b6f565b91506020830135611c8681611b6f565b600181811c90821680611cd157607f821691505b602082108103611cef57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561076957610769611cf5565b5f60208284031215611d2c575f80fd5b5051919050565b5f60208284031215611d43575f80fd5b8151611bc881611c4d565b5f60208284031215611d5e575f80fd5b8151611bc881611b6f565b808202811582820484141761076957610769611cf5565b5f82611d9a57634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561076957610769611cf5565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611e145784516001600160a01b031683529383019391830191600101611def565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215611e47575f80fd5b835192506020840151915060408401519050925092509256fea264697066735822122008b0f50355b6359393361b105098948c1e489e48b49f66af1802aecbb7cdc2c464736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002100000000000000000000000000000000000000000000000000000000000000210000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000092866af48a00119502279607eb6425bec217a5d100000000000000000000000092866af48a00119502279607eb6425bec217a5d10000000000000000000000000000000000000000000000000000006d9c14208000000000000000000000000092866af48a00119502279607eb6425bec217a5d1
-----Decoded View---------------
Arg [0] : _buyTax (uint256): 0
Arg [1] : _sellTax (uint256): 0
Arg [2] : _devSplit (uint256): 34
Arg [3] : _marketingSplit (uint256): 33
Arg [4] : _lpSplit (uint256): 33
Arg [5] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [6] : _MarketingWallet (address): 0x92866Af48A00119502279607eB6425BEC217a5D1
Arg [7] : _teamWallet (address): 0x92866Af48A00119502279607eB6425BEC217a5D1
Arg [8] : initialSupply (uint256): 470770000000
Arg [9] : realOwner (address): 0x92866Af48A00119502279607eB6425BEC217a5D1
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [5] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [6] : 00000000000000000000000092866af48a00119502279607eb6425bec217a5d1
Arg [7] : 00000000000000000000000092866af48a00119502279607eb6425bec217a5d1
Arg [8] : 0000000000000000000000000000000000000000000000000000006d9c142080
Arg [9] : 00000000000000000000000092866af48a00119502279607eb6425bec217a5d1
Deployed Bytecode Sourcemap
21008:7944:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6645:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8996:201;;;;;;;;;;-1:-1:-1;8996:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;8996:201:0;1023:187:1;23653:326:0;;;;;;;;;;-1:-1:-1;23653:326:0;;;;;:::i;:::-;;:::i;:::-;;7765:108;;;;;;;;;;-1:-1:-1;7853:12:0;;7765:108;;;1621:25:1;;;1609:2;1594:18;7765:108:0;1475:177:1;9777:295:0;;;;;;;;;;-1:-1:-1;9777:295:0;;;;;:::i;:::-;;:::i;21399:23::-;;;;;;;;;;-1:-1:-1;21399:23:0;;;;-1:-1:-1;;;;;21399:23:0;;;;;;-1:-1:-1;;;;;2282:32:1;;;2264:51;;2252:2;2237:18;21399:23:0;2118:203:1;7607:93:0;;;;;;;;;;-1:-1:-1;7607:93:0;;7690:2;2468:36:1;;2456:2;2441:18;7607:93:0;2326:184:1;10481:238:0;;;;;;;;;;-1:-1:-1;10481:238:0;;;;;:::i;:::-;;:::i;21182:23::-;;;;;;;;;;;;;;;;22961:312;;;;;;;;;;-1:-1:-1;22961:312:0;;;;;:::i;:::-;;:::i;21212:29::-;;;;;;;;;;;;;;;;21125:21;;;;;;;;;;;;;;;;25325:125;;;;;;;;;;-1:-1:-1;25325:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;25414:28:0;25390:4;25414:28;;;:19;:28;;;;;;;;;25325:125;21359:33;;;;;;;;;;-1:-1:-1;21359:33:0;;;;-1:-1:-1;;;;;21359:33:0;;;23281:366;;;;;;;;;;-1:-1:-1;23281:366:0;;;;;:::i;:::-;;:::i;25458:120::-;;;;;;;;;;-1:-1:-1;25458:120:0;;;;;:::i;:::-;;:::i;21248:22::-;;;;;;;;;;;;;;;;7936:127;;;;;;;;;;-1:-1:-1;7936:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8037:18:0;8010:7;8037:18;;;:9;:18;;;;;;;7936:127;19314:103;;;;;;;;;;;;;:::i;21313:39::-;;;;;;;;;;-1:-1:-1;21313:39:0;;;;-1:-1:-1;;;;;21313:39:0;;;21277:27;;;;;;;;;;;;;;;;22789:166;;;;;;;;;;-1:-1:-1;22789:166:0;;;;;:::i;:::-;;:::i;18666:87::-;;;;;;;;;;-1:-1:-1;18712:7:0;18739:6;-1:-1:-1;;;;;18739:6:0;18666:87;;6864:104;;;;;;;;;;;;;:::i;11222:436::-;;;;;;;;;;-1:-1:-1;11222:436:0;;;;;:::i;:::-;;:::i;24289:315::-;;;;;;;;;;-1:-1:-1;24289:315:0;;;;;:::i;:::-;;:::i;8269:193::-;;;;;;;;;;-1:-1:-1;8269:193:0;;;;;:::i;:::-;;:::i;28670:181::-;;;;;;;;;;-1:-1:-1;28670:181:0;;;;;:::i;:::-;;:::i;21495:58::-;;;;;;;;;;-1:-1:-1;21495:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;28024:76;;;;;;;;;;;;;:::i;24615:698::-;;;;;;;;;;-1:-1:-1;24615:698:0;;;;;:::i;:::-;;:::i;23987:290::-;;;;;;;;;;-1:-1:-1;23987:290:0;;;;;:::i;:::-;;:::i;21153:22::-;;;;;;;;;;;;;;;;22625:152;;;;;;;;;;-1:-1:-1;22625:152:0;;;;;:::i;:::-;;:::i;8525:151::-;;;;;;;;;;-1:-1:-1;8525:151:0;;;;;:::i;:::-;;:::i;28538:120::-;;;;;;;;;;;;;:::i;19572:201::-;;;;;;;;;;-1:-1:-1;19572:201:0;;;;;:::i;:::-;;:::i;21091:21::-;;;;;;;;;;-1:-1:-1;21091:21:0;;;;-1:-1:-1;;;;;21091:21:0;;;6645:100;6699:13;6732:5;6725:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6645:100;:::o;8996:201::-;9079:4;4365:10;9135:32;4365:10;9151:7;9160:6;9135:8;:32::i;:::-;9185:4;9178:11;;;8996:201;;;;;:::o;23653:326::-;18552:13;:11;:13::i;:::-;23760:10:::1;::::0;-1:-1:-1;;;;;23760:10:0::1;23740:31;::::0;;;:19:::1;:31;::::0;;;;:38;;-1:-1:-1;;23740:38:0::1;23774:4;23740:38;::::0;;23809:10:::1;::::0;23793:34:::1;::::0;-1:-1:-1;;;;;23809:10:0::1;;23793:15;:34::i;:::-;23840:10;:26:::0;;-1:-1:-1;;;;;;23840:26:0::1;-1:-1:-1::0;;;;;23840:26:0;::::1;::::0;;::::1;::::0;;;-1:-1:-1;23884:31:0;;;:19:::1;:31;::::0;;;;:39;;-1:-1:-1;;23884:39:0::1;::::0;;23938:33:::1;23653:326:::0;:::o;9777:295::-;9908:4;4365:10;9966:38;9982:4;4365:10;9997:6;9966:15;:38::i;:::-;10015:27;10025:4;10031:2;10035:6;10015:9;:27::i;:::-;-1:-1:-1;10060:4:0;;9777:295;-1:-1:-1;;;;9777:295:0:o;10481:238::-;10569:4;4365:10;10625:64;4365:10;10641:7;10678:10;10650:25;4365:10;10641:7;10650:9;:25::i;:::-;:38;;;;:::i;:::-;10625:8;:64::i;22961:312::-;18552:13;:11;:13::i;:::-;23072:8:::1;:20:::0;;;23103:14:::1;:32:::0;;;23146:7:::1;:18:::0;;;23156:8;23183:27:::1;23120:15:::0;23083:9;23183:27:::1;:::i;:::-;:38;;;;:::i;:::-;23225:3;23183:45;23175:90;;;::::0;-1:-1:-1;;;23175:90:0;;5472:2:1;23175:90:0::1;::::0;::::1;5454:21:1::0;;;5491:18;;;5484:30;5550:34;5530:18;;;5523:62;5602:18;;23175:90:0::1;;;;;;;;;22961:312:::0;;;:::o;23281:366::-;18552:13;:11;:13::i;:::-;23398:15:::1;::::0;-1:-1:-1;;;;;23398:15:0::1;23378:36;::::0;;;:19:::1;:36;::::0;;;;:43;;-1:-1:-1;;23378:43:0::1;23417:4;23378:43;::::0;;23452:15:::1;::::0;23436:39:::1;::::0;-1:-1:-1;;;;;23452:15:0::1;;23436;:39::i;:::-;23488:15;:36:::0;;-1:-1:-1;;;;;;23488:36:0::1;-1:-1:-1::0;;;;;23488:36:0;::::1;::::0;;::::1;::::0;;;-1:-1:-1;23542:36:0;;;:19:::1;:36;::::0;;;;:44;;-1:-1:-1;;23542:44:0::1;::::0;;23653:326;:::o;25458:120::-;18552:13;:11;:13::i;:::-;25539:12:::1;:31:::0;25458:120::o;19314:103::-;18552:13;:11;:13::i;:::-;19379:30:::1;19406:1;19379:18;:30::i;:::-;19314:103::o:0;22789:166::-;18552:13;:11;:13::i;:::-;22856:7:::1;:21:::0;;;22909:5:::1;22894:20:::0;::::1;;22886:61;;;::::0;-1:-1:-1;;;22886:61:0;;5833:2:1;22886:61:0::1;::::0;::::1;5815:21:1::0;5872:2;5852:18;;;5845:30;5911;5891:18;;;5884:58;5959:18;;22886:61:0::1;5631:352:1::0;6864:104:0;6920:13;6953:7;6946:14;;;;;:::i;11222:436::-;11315:4;4365:10;11315:4;11398:25;4365:10;11415:7;11398:9;:25::i;:::-;11371:52;;11462:15;11442:16;:35;;11434:85;;;;-1:-1:-1;;;11434:85:0;;6190:2:1;11434:85:0;;;6172:21:1;6229:2;6209:18;;;6202:30;6268:34;6248:18;;;6241:62;-1:-1:-1;;;6319:18:1;;;6312:35;6364:19;;11434:85:0;5988:401:1;11434:85:0;11555:60;11564:5;11571:7;11599:15;11580:16;:34;11555:8;:60::i;24289:315::-;18552:13;:11;:13::i;:::-;-1:-1:-1;;;;;24389:31:0;::::1;;::::0;;;:25:::1;:31;::::0;;;;;:40;::::1;;:31;::::0;;::::1;:40;;::::0;24381:109:::1;;;::::0;-1:-1:-1;;;24381:109:0;;6596:2:1;24381:109:0::1;::::0;::::1;6578:21:1::0;6635:2;6615:18;;;6608:30;6674:34;6654:18;;;6647:62;6745:26;6725:18;;;6718:54;6789:19;;24381:109:0::1;6394:420:1::0;24381:109:0::1;-1:-1:-1::0;;;;;24501:31:0;::::1;;::::0;;;:25:::1;:31;::::0;;;;;:39;;-1:-1:-1;;24501:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;24556:40;;24501:39;;:31;24556:40:::1;::::0;::::1;24289:315:::0;;:::o;8269:193::-;8348:4;4365:10;8404:28;4365:10;8421:2;8425:6;8404:9;:28::i;28670:181::-;18552:13;:11;:13::i;:::-;28793:45:::1;::::0;-1:-1:-1;;;28793:45:0;;28832:4:::1;28793:45;::::0;::::1;2264:51:1::0;-1:-1:-1;;;;;28751:29:0;::::1;::::0;::::1;::::0;28781:10:::1;::::0;28751:29;;28793:30:::1;::::0;2237:18:1;;28793:45:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28751:88;::::0;-1:-1:-1;;;;;;28751:88:0::1;::::0;;;;;;-1:-1:-1;;;;;7200:32:1;;;28751:88:0::1;::::0;::::1;7182:51:1::0;7249:18;;;7242:34;7155:18;;28751:88:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28670:181:::0;:::o;28024:76::-;18552:13;:11;:13::i;:::-;28082:10:::1;:8;:10::i;24615:698::-:0;18552:13;:11;:13::i;:::-;24719:6:::1;::::0;-1:-1:-1;;;;;24719:6:0;;::::1;24697:29:::0;;::::1;::::0;24689:77:::1;;;::::0;-1:-1:-1;;;24689:77:0;;7739:2:1;24689:77:0::1;::::0;::::1;7721:21:1::0;7778:2;7758:18;;;7751:30;7817:34;7797:18;;;7790:62;-1:-1:-1;;;7868:18:1;;;7861:33;7911:19;;24689:77:0::1;7537:399:1::0;24689:77:0::1;24777:6;:28:::0;;-1:-1:-1;;;;;;24777:28:0::1;-1:-1:-1::0;;;;;24777:28:0;::::1;::::0;;::::1;::::0;;;24843:16:::1;::::0;;-1:-1:-1;;;24843:16:0;;;;-1:-1:-1;;24777:28:0;24843:14:::1;::::0;:16:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;24777:28;24843:16:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;24834:48:0::1;;24891:4;24898:6;;;;;;;;;-1:-1:-1::0;;;;;24898:6:0::1;-1:-1:-1::0;;;;;24898:11:0::1;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24834:78;::::0;-1:-1:-1;;;;;;24834:78:0::1;::::0;;;;;;-1:-1:-1;;;;;8427:15:1;;;24834:78:0::1;::::0;::::1;8409:34:1::0;8479:15;;8459:18;;;8452:43;8344:18;;24834:78:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24816:96:::0;-1:-1:-1;;;;;;24928:21:0;::::1;24925:116;;24983:6;;;;;;;;;-1:-1:-1::0;;;;;24983:6:0::1;-1:-1:-1::0;;;;;24983:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;24974:37:0::1;;25020:4;25027:6;;;;;;;;;-1:-1:-1::0;;;;;25027:6:0::1;-1:-1:-1::0;;;;;25027:11:0::1;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24974:67;::::0;-1:-1:-1;;;;;;24974:67:0::1;::::0;;;;;;-1:-1:-1;;;;;8427:15:1;;;24974:67:0::1;::::0;::::1;8409:34:1::0;8479:15;;8459:18;;;8452:43;8344:18;;24974:67:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24964:77;;24925:116;-1:-1:-1::0;;;;;25058:34:0;::::1;;::::0;;;:25:::1;:34;::::0;;;;;::::1;;:42;;:34:::0;:42:::1;::::0;::::1;::::0;:67:::1;;-1:-1:-1::0;;;;;;25104:21:0;::::1;::::0;::::1;25058:67;25054:143;;;25142:43;25171:7;25180:4;25142:28;:43::i;:::-;25241:6;::::0;25209:53:::1;::::0;25226:4:::1;::::0;-1:-1:-1;;;;;25241:6:0::1;-1:-1:-1::0;;25209:8:0::1;:53::i;:::-;25287:8;:18:::0;;-1:-1:-1;;;;;;25287:18:0::1;-1:-1:-1::0;;;;;25287:18:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;24615:698:0:o;23987:290::-;18552:13;:11;:13::i;:::-;-1:-1:-1;;;;;24080:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;24072:95:::1;;;::::0;-1:-1:-1;;;24072:95:0;;8708:2:1;24072:95:0::1;::::0;::::1;8690:21:1::0;8747:2;8727:18;;;8720:30;8786:34;8766:18;;;8759:62;-1:-1:-1;;;8837:18:1;;;8830:40;8887:19;;24072:95:0::1;8506:406:1::0;24072:95:0::1;-1:-1:-1::0;;;;;24178:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;24178:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;24235:34;;1163:41:1;;;24235:34:0::1;::::0;1136:18:1;24235:34:0::1;;;;;;;23987:290:::0;;:::o;22625:152::-;18552:13;:11;:13::i;:::-;22690:6:::1;:19:::0;;;22740:5:::1;22726:19:::0;::::1;;22718:51;;;::::0;-1:-1:-1;;;22718:51:0;;9119:2:1;22718:51:0::1;::::0;::::1;9101:21:1::0;9158:2;9138:18;;;9131:30;-1:-1:-1;;;9177:18:1;;;9170:49;9236:18;;22718:51:0::1;8917:343:1::0;8525:151:0;-1:-1:-1;;;;;8641:18:0;;;8614:7;8641:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8525:151::o;28538:120::-;18552:13;:11;:13::i;:::-;28595:51:::1;::::0;28603:10:::1;::::0;28624:21:::1;28595:51:::0;::::1;;;::::0;::::1;::::0;;;28624:21;28603:10;28595:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;19572:201:::0;18552:13;:11;:13::i;:::-;-1:-1:-1;;;;;19661:22:0;::::1;19653:73;;;::::0;-1:-1:-1;;;19653:73:0;;9467:2:1;19653:73:0::1;::::0;::::1;9449:21:1::0;9506:2;9486:18;;;9479:30;9545:34;9525:18;;;9518:62;-1:-1:-1;;;9596:18:1;;;9589:36;9642:19;;19653:73:0::1;9265:402:1::0;19653:73:0::1;19737:28;19756:8;19737:18;:28::i;14847:380::-:0;-1:-1:-1;;;;;14983:19:0;;14975:68;;;;-1:-1:-1;;;14975:68:0;;9874:2:1;14975:68:0;;;9856:21:1;9913:2;9893:18;;;9886:30;9952:34;9932:18;;;9925:62;-1:-1:-1;;;10003:18:1;;;9996:34;10047:19;;14975:68:0;9672:400:1;14975:68:0;-1:-1:-1;;;;;15062:21:0;;15054:68;;;;-1:-1:-1;;;15054:68:0;;10279:2:1;15054:68:0;;;10261:21:1;10318:2;10298:18;;;10291:30;10357:34;10337:18;;;10330:62;-1:-1:-1;;;10408:18:1;;;10401:32;10450:19;;15054:68:0;10077:398:1;15054:68:0;-1:-1:-1;;;;;15135:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15187:32;;1621:25:1;;;15187:32:0;;1594:18:1;15187:32:0;;;;;;;14847:380;;;:::o;18831:132::-;18712:7;18739:6;-1:-1:-1;;;;;18739:6:0;4365:10;18895:23;18887:68;;;;-1:-1:-1;;;18887:68:0;;10682:2:1;18887:68:0;;;10664:21:1;;;10701:18;;;10694:30;10760:34;10740:18;;;10733:62;10812:18;;18887:68:0;10480:356:1;15518:453:0;15653:24;15680:25;15690:5;15697:7;15680:9;:25::i;:::-;15653:52;;-1:-1:-1;;15720:16:0;:37;15716:248;;15802:6;15782:16;:26;;15774:68;;;;-1:-1:-1;;;15774:68:0;;11043:2:1;15774:68:0;;;11025:21:1;11082:2;11062:18;;;11055:30;11121:31;11101:18;;;11094:59;11170:18;;15774:68:0;10841:353:1;15774:68:0;15886:51;15895:5;15902:7;15930:6;15911:16;:25;15886:8;:51::i;:::-;15642:329;15518:453;;;:::o;25744:906::-;-1:-1:-1;;;;;25969:25:0;;;;;;:19;:25;;;;;;;;25968:26;:54;;;;-1:-1:-1;;;;;;25999:23:0;;;;;;:19;:23;;;;;;;;25998:24;25968:54;25965:632;;;-1:-1:-1;;;;;26042:29:0;;;;;;:25;:29;;;;;;;;;:64;;-1:-1:-1;;;;;;26075:31:0;;;;;;:25;:31;;;;;;;;26042:64;26039:542;;;26158:12;;26149:4;8010:7;8037:18;;;:9;:18;;;;;;26131:39;:60;;;;-1:-1:-1;26175:16:0;;;;26174:17;26131:60;:93;;;;-1:-1:-1;;;;;;26195:29:0;;;;;;:25;:29;;;;;;;;26131:93;26127:109;;;26226:10;:8;:10::i;:::-;-1:-1:-1;;;;;26276:29:0;;26255:18;26276:29;;;:25;:29;;;;;;;;:48;;26318:6;;26276:48;;;26308:7;;26276:48;26255:69;-1:-1:-1;26343:16:0;26383:5;26362:19;26255:69;26362:6;:19;:::i;:::-;26361:27;;;;:::i;:::-;26343:45;-1:-1:-1;26411:12:0;;26407:156;;26448:46;26464:4;26478;26485:8;26448:15;:46::i;:::-;26526:17;26535:8;26526:6;:17;:::i;:::-;26517:26;;26407:156;26108:473;;26039:542;26605:33;26621:4;26627:2;26631:6;26605:15;:33::i;19933:191::-;20007:16;20026:6;;-1:-1:-1;;;;;20043:17:0;;;-1:-1:-1;;;;;;20043:17:0;;;;;;20076:40;;20026:6;;;;;;;20076:40;;20007:16;20076:40;19996:128;19933:191;:::o;26658:1358::-;25654:16;:23;;-1:-1:-1;;25654:23:0;25673:4;25654:23;;;:16;;26789:24:::1;26807:4;-1:-1:-1::0;;;;;8037:18:0;8010:7;8037:18;;;:9;:18;;;;;;;7936:127;26789:24:::1;26827:7;::::0;26758:55;;-1:-1:-1;26827:11:0;26824:79:::1;;26900:3;26890:7;;26867:20;:30;;;;:::i;:::-;:36;;;;:::i;:::-;26840:63;;26824:79;26914:14;26931:45;26952:24:::0;26931:20;:45:::1;:::i;:::-;27078:16;::::0;;27092:1:::1;27078:16:::0;;;;;::::1;::::0;;26914:62;;-1:-1:-1;27020:21:0::1;::::0;26995:22:::1;::::0;27078:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;27078:16:0::1;27054:40;;27123:4;27105;27110:1;27105:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27105:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;27149:6:::1;::::0;:13:::1;::::0;;-1:-1:-1;;;27149:13:0;;;;:6;;;::::1;::::0;:11:::1;::::0;:13:::1;::::0;;::::1;::::0;27105:7;;27149:13;;;;;:6;:13:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27139:4;27144:1;27139:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27139:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;27179:6:::1;::::0;:182:::1;::::0;-1:-1:-1;;;27179:182:0;;:6;::::1;::::0;:57:::1;::::0;:182:::1;::::0;27251:6;;27179::::1;::::0;27288:4;;27315::::1;::::0;27335:15:::1;::::0;27179:182:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;27175:231;;27373:31;::::0;-1:-1:-1;;;27373:31:0;;13178:2:1;27373:31:0::1;::::0;::::1;13160:21:1::0;13217:2;13197:18;;;13190:30;-1:-1:-1;;;13236:18:1;;;13229:51;13297:18;;27373:31:0::1;12976:345:1::0;27175:231:0::1;27421:7;::::0;:11;27418:267:::1;;27449:20;27472:36;27494:14:::0;27472:21:::1;:36;:::i;:::-;27449:59;;27523:29;27589:7;;27583:3;:13;;;;:::i;:::-;27571:7;::::0;27556:22:::1;::::0;:12;:22:::1;:::i;:::-;27555:42;;;;:::i;:::-;27523:74;;27612:61;27625:24;27651:21;27612:12;:61::i;:::-;27434:251;;27418:267;27700:14;::::0;:18;27697:211:::1;;27735:23;27822:8;;27805:14;;:25;;;;:::i;:::-;27786:14;::::0;27762:38:::1;::::0;:21:::1;:38;:::i;:::-;27761:70;;;;:::i;:::-;27854:15;::::0;27846:50:::1;::::0;27735:96;;-1:-1:-1;;;;;;27854:15:0::1;::::0;27846:50;::::1;;;::::0;27735:96;;27854:15:::1;27846:50:::0;27854:15;27846:50;27735:96;27854:15;27846:50;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;27720:188;27697:211;27921:8;::::0;:12;27918:68:::1;;27943:10;::::0;27935:51:::1;::::0;-1:-1:-1;;;;;27943:10:0;;::::1;::::0;27964:21:::1;27935:51:::0;::::1;;;::::0;27943:10:::1;27935:51:::0;27943:10;27935:51;27964:21;27943:10;27935:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;27918:68;-1:-1:-1::0;;25700:16:0;:24;;-1:-1:-1;;25700:24:0;;;-1:-1:-1;;;26658:1358:0:o;12128:671::-;-1:-1:-1;;;;;12259:18:0;;12251:68;;;;-1:-1:-1;;;12251:68:0;;13528:2:1;12251:68:0;;;13510:21:1;13567:2;13547:18;;;13540:30;13606:34;13586:18;;;13579:62;-1:-1:-1;;;13657:18:1;;;13650:35;13702:19;;12251:68:0;13326:401:1;12251:68:0;-1:-1:-1;;;;;12338:16:0;;12330:64;;;;-1:-1:-1;;;12330:64:0;;13934:2:1;12330:64:0;;;13916:21:1;13973:2;13953:18;;;13946:30;14012:34;13992:18;;;13985:62;-1:-1:-1;;;14063:18:1;;;14056:33;14106:19;;12330:64:0;13732:399:1;12330:64:0;-1:-1:-1;;;;;12480:15:0;;12458:19;12480:15;;;:9;:15;;;;;;12514:21;;;;12506:72;;;;-1:-1:-1;;;12506:72:0;;14338:2:1;12506:72:0;;;14320:21:1;14377:2;14357:18;;;14350:30;14416:34;14396:18;;;14389:62;-1:-1:-1;;;14467:18:1;;;14460:36;14513:19;;12506:72:0;14136:402:1;12506:72:0;-1:-1:-1;;;;;12614:15:0;;;;;;;:9;:15;;;;;;12632:20;;;12614:38;;12674:13;;;;;;;;:23;;12646:6;;12614:15;12674:23;;12646:6;;12674:23;:::i;:::-;;;;;;;;12730:2;-1:-1:-1;;;;;12715:26:0;12724:4;-1:-1:-1;;;;;12715:26:0;;12734:6;12715:26;;;;1621:25:1;;1609:2;1594:18;;1475:177;12715:26:0;;;;;;;;12754:37;22961:312;28108:418;28223:6;;28418:4;;28223:240;;-1:-1:-1;;;28223:240:0;;28286:4;28223:240;;;14884:34:1;14934:18;;;14927:34;;;28223:6:0;14977:18:1;;;14970:34;;;15020:18;;;15013:34;-1:-1:-1;;;;;28418:4:0;;;15063:19:1;;;15056:44;28437:15:0;15116:19:1;;;15109:35;28223:6:0;;;:22;;28253:9;;14818:19:1;;28223:240:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28223:240:0;;;;;;;;-1:-1:-1;;28223:240:0;;;;;;;;;;;;:::i;:::-;;;28219:290;;28474:33;;-1:-1:-1;;;28474:33:0;;15668:2:1;28474:33:0;;;15650:21:1;15707:2;15687:18;;;15680:30;15746:25;15726:18;;;15719:53;15789:18;;28474:33:0;15466:347:1;28219:290:0;;;;28108:418;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:255::-;1282:6;1335:2;1323:9;1314:7;1310:23;1306:32;1303:52;;;1351:1;1348;1341:12;1303:52;1390:9;1377:23;1409:31;1434:5;1409:31;:::i;:::-;1459:5;1215:255;-1:-1:-1;;;1215:255:1:o;1657:456::-;1734:6;1742;1750;1803:2;1791:9;1782:7;1778:23;1774:32;1771:52;;;1819:1;1816;1809:12;1771:52;1858:9;1845:23;1877:31;1902:5;1877:31;:::i;:::-;1927:5;-1:-1:-1;1984:2:1;1969:18;;1956:32;1997:33;1956:32;1997:33;:::i;:::-;1657:456;;2049:7;;-1:-1:-1;;;2103:2:1;2088:18;;;;2075:32;;1657:456::o;2515:316::-;2592:6;2600;2608;2661:2;2649:9;2640:7;2636:23;2632:32;2629:52;;;2677:1;2674;2667:12;2629:52;-1:-1:-1;;2700:23:1;;;2770:2;2755:18;;2742:32;;-1:-1:-1;2821:2:1;2806:18;;;2793:32;;2515:316;-1:-1:-1;2515:316:1:o;3312:180::-;3371:6;3424:2;3412:9;3403:7;3399:23;3395:32;3392:52;;;3440:1;3437;3430:12;3392:52;-1:-1:-1;3463:23:1;;3312:180;-1:-1:-1;3312:180:1:o;3497:118::-;3583:5;3576:13;3569:21;3562:5;3559:32;3549:60;;3605:1;3602;3595:12;3620:382;3685:6;3693;3746:2;3734:9;3725:7;3721:23;3717:32;3714:52;;;3762:1;3759;3752:12;3714:52;3801:9;3788:23;3820:31;3845:5;3820:31;:::i;:::-;3870:5;-1:-1:-1;3927:2:1;3912:18;;3899:32;3940:30;3899:32;3940:30;:::i;:::-;3989:7;3979:17;;;3620:382;;;;;:::o;4007:388::-;4075:6;4083;4136:2;4124:9;4115:7;4111:23;4107:32;4104:52;;;4152:1;4149;4142:12;4104:52;4191:9;4178:23;4210:31;4235:5;4210:31;:::i;:::-;4260:5;-1:-1:-1;4317:2:1;4302:18;;4289:32;4330:33;4289:32;4330:33;:::i;4623:380::-;4702:1;4698:12;;;;4745;;;4766:61;;4820:4;4812:6;4808:17;4798:27;;4766:61;4873:2;4865:6;4862:14;4842:18;4839:38;4836:161;;4919:10;4914:3;4910:20;4907:1;4900:31;4954:4;4951:1;4944:15;4982:4;4979:1;4972:15;4836:161;;4623:380;;;:::o;5008:127::-;5069:10;5064:3;5060:20;5057:1;5050:31;5100:4;5097:1;5090:15;5124:4;5121:1;5114:15;5140:125;5205:9;;;5226:10;;;5223:36;;;5239:18;;:::i;6819:184::-;6889:6;6942:2;6930:9;6921:7;6917:23;6913:32;6910:52;;;6958:1;6955;6948:12;6910:52;-1:-1:-1;6981:16:1;;6819:184;-1:-1:-1;6819:184:1:o;7287:245::-;7354:6;7407:2;7395:9;7386:7;7382:23;7378:32;7375:52;;;7423:1;7420;7413:12;7375:52;7455:9;7449:16;7474:28;7496:5;7474:28;:::i;7941:251::-;8011:6;8064:2;8052:9;8043:7;8039:23;8035:32;8032:52;;;8080:1;8077;8070:12;8032:52;8112:9;8106:16;8131:31;8156:5;8131:31;:::i;11199:168::-;11272:9;;;11303;;11320:15;;;11314:22;;11300:37;11290:71;;11341:18;;:::i;11372:217::-;11412:1;11438;11428:132;;11482:10;11477:3;11473:20;11470:1;11463:31;11517:4;11514:1;11507:15;11545:4;11542:1;11535:15;11428:132;-1:-1:-1;11574:9:1;;11372:217::o;11594:128::-;11661:9;;;11682:11;;;11679:37;;;11696:18;;:::i;11859:127::-;11920:10;11915:3;11911:20;11908:1;11901:31;11951:4;11948:1;11941:15;11975:4;11972:1;11965:15;11991:980;12253:4;12301:3;12290:9;12286:19;12332:6;12321:9;12314:25;12358:2;12396:6;12391:2;12380:9;12376:18;12369:34;12439:3;12434:2;12423:9;12419:18;12412:31;12463:6;12498;12492:13;12529:6;12521;12514:22;12567:3;12556:9;12552:19;12545:26;;12606:2;12598:6;12594:15;12580:29;;12627:1;12637:195;12651:6;12648:1;12645:13;12637:195;;;12716:13;;-1:-1:-1;;;;;12712:39:1;12700:52;;12807:15;;;;12772:12;;;;12748:1;12666:9;12637:195;;;-1:-1:-1;;;;;;;12888:32:1;;;;12883:2;12868:18;;12861:60;-1:-1:-1;;;12952:3:1;12937:19;12930:35;12849:3;11991:980;-1:-1:-1;;;11991:980:1:o;15155:306::-;15243:6;15251;15259;15312:2;15300:9;15291:7;15287:23;15283:32;15280:52;;;15328:1;15325;15318:12;15280:52;15357:9;15351:16;15341:26;;15407:2;15396:9;15392:18;15386:25;15376:35;;15451:2;15440:9;15436:18;15430:25;15420:35;;15155:306;;;;;:::o
Swarm Source
ipfs://08b0f50355b6359393361b105098948c1e489e48b49f66af1802aecbb7cdc2c4
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.