ERC-20
Overview
Max Total Supply
696,969,696,969,696 MAGAI
Holders
186
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,490,589,735,283.989604006626125434 MAGAIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MagaiCoin
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; /** MAGAI - Make America Great AI Website: https://magai.men Twitter: https://twitter.com/magai_2024 Telegram: https://t.me/MAGAI_ETH Telegram Bot: @TheMagai_Bot ███╗ ███╗ █████╗ ██████╗ █████╗ ██╗ ████╗ ████║██╔══██╗██╔════╝ ██╔══██╗██║ ██╔████╔██║███████║██║ ███╗███████║██║ ██║╚██╔╝██║██╔══██║██║ ██║██╔══██║██║ ██║ ╚═╝ ██║██║ ██║╚██████╔╝██║ ██║██║ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ~!?YYYY5GGBB5!!:: .~~PG#@@&&&&&##BGGP&&G@GB&GG: ^5&@#@@&@@&#&@@@@@@@@G#&P@B#@@B&B7G^.. .GBP&YB5?B##@@@@@@@@@@@@@@@&#&&&&5#BP&@@&@P? .5@@BBGGBG#&@@&&&&&BBBGGBB#&&@@&BB&&&@@GP&PBP&P .@@&P&@@@@&#BGG&&&&&@@@@@@@@&&@@@@@&##PGBP5&#@?&: ?@@PG@@@@@@@@##PPY??~~!??5PG&&&@@@@@@@@@@@@7&@?&. .&@&PG@@@&&!::.. ^^^^. ^BB?#@@@@@&P@B&G #&5BPP@@G ~&@@@@@@@#^ !&@@@@@YG@@@5B@G. ##PGGP@&. B@&##&&@@@BBJ.! ~&@@@@&&@@&@@@@&^ ^&#PGGG@B GJ. ..:~~##5YJ .#@PYJ??! .55@@@@@. .P@BPBPG@B !Y!!P~:!!!5B@#P. !@5!.^..~P~ G@@@@^ .P@#5#PP@B 7Y!7&@Y5J&@JJ&^ 7@@55J&@5. &@@@# .P@&&#@@@@B^ . .?77!77^~^ ~. ^#&P@&!7?~ &@@@G .^#@7BJP@@@@B: .::.:.^:^#&. ^@@^ ~::. 5@@@P. !@?P:?&@@&&@G. :^. J@#^ .5@G^^^^~. :@@@Y. #JP!^#@G .BG !P@@PJG5 .B@P. @@@. &&.!^#@&!PY. :7 . ..!7~:. .:. 5J@. &@.^ &@@@BY! ^^ .~^ .. .:^~. G7@: &@J#?&@@@@. .YJJ?. 7JP&&@@@&&&&B!!.7! .#Y#. .P@GG@@@@@&!.?JJJ~:B@@&GB###GB@@@P. 5 PB :G&PJ^P@@@&?.7YJ5P^~5##GGG##Y^^GY .#B : :J .@@@Y..:::. : .: .!5Y. .@@? ^B&@?G@@&? [email protected]@G. .5@B ~&&Y#@@&7 :#@@@B. Y@#: Y@B: ...YG@@@B 7&&5#@@#Y&@@@BY&&&GB@&^ ?@#Y7 ::^!!5PGBB&&@&5B@@@@@& ?&#P&@@#@@&J#@@@@&^ !@&~ .&&~ @@@@@@@@@@@@BP&@@@@@@@ J&GB&&@@@@@@@&B^!&@7 .5@@#:.^ @@@@@@@@@@BY&@@@@@@@@@. 5@@@@@@@@BY&@@@? :P@@@@GP&@#PP?7~^^ @@@@@@@@B5&@@@@@@@@@@@5 .P@@@@&&&@@@J &@@@@@@@GP@@@@@@@@ @@@@@@@#7@@@@@@@@@@@@@&~ .G@@@@@@Y ^&@@@@@@@@&GG@@@@@@ @@@@@@@@&PB@@@@@@@@@@@G.!^ :G##P. :!~5@@@@@@@@@@&7&@@@@ @@@@@@@@@@#J#@@@@@@@@@G :J: 7~::!~ J~ ^@@@@@@@@@@@YG@@@@@ ====================================================================== The line of 'Make America great again,' the phrase, that was mine, I came up with it about a year ago, and I kept using it, and everybody's using it, they are all loving it. I don't know, I guess I should copyright it, maybe I have copyrighted it. - DONALD TRUMP ====================================================================== **/ import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint256); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint256 value); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn(address indexed sender, uint256 amount0, uint256 amount1, address indexed to); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap(uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract MagaiCoin is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public teamWallet; address public immutable wojak; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public immutable onePercent; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public blacklistRenounced = false; // Anti-bot and anti-whale mappings and variables mapping(address => bool) blacklisted; uint256 public buyTotalFees; uint256 public sellTotalFees; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event TeamWalletUpdated(address indexed newWallet, address indexed oldWallet); event TradingEnabled(uint ethAmount, uint tokenAmt, uint block); /** * @dev only wojak can do these special commands once the magai renounces ownership. */ modifier onlyWojak() { _checkWojak(); _; } function _checkWojak() internal view virtual { require(wojak == _msgSender(), "Wojak: caller is a gigachad!"); } constructor(address _teamWallet, address _marketingWallet) ERC20("The Magai Coin", "MAGAI") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; // wojak is our deployer wojak = owner(); teamWallet = address(_teamWallet); uint256 totalSupply = 696_969_696_969_696 * 1e18; onePercent = totalSupply / 100; // 1% maxTransactionAmount = (totalSupply * 2) / 100; // 2% maxWallet = (totalSupply * 2) / 100; // 2% swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% buyTotalFees = 2; sellTotalFees = 4; // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(teamWallet, true); excludeFromFees(_marketingWallet, true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(teamWallet, true); excludeFromMaxTransaction(_marketingWallet, true); excludeFromMaxTransaction(address(0xdead), true); // mint 100% here _mint(address(this), totalSupply); // transfer % to newOwner _transfer(address(this), wojak, (totalSupply * 6) / 100); _transfer(address(this), _marketingWallet, (totalSupply * 4) / 100); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external payable onlyOwner { require(!tradingActive, "Trading is already enabled, cannot relaunch."); uint256 liquidityTokens = balanceOf(address(this)); // 100% of the balance assigned to this contract require(msg.value > 0, "Send liquidity eth"); require(liquidityTokens > 0, "No tokens!"); // setup the approvals uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); IERC20Metadata weth = IERC20Metadata(uniswapV2Router.WETH()); weth.approve(address(uniswapV2Router), type(uint256).max); _approve(address(this), address(uniswapV2Router), type(uint256).max); // add the liquidity uniswapV2Router.addLiquidityETH{value: msg.value}( address(this), liquidityTokens, 0, 0, owner(), block.timestamp ); // set the params and emit tradingActive = true; swapEnabled = true; emit TradingEnabled(msg.value, liquidityTokens, block.timestamp); } function forceEnableTrading() external onlyOwner { require(!tradingActive, "Trading is already enabled, cannot relaunch."); tradingActive = true; swapEnabled = true; } function forceSetLpPair(address _newLpPair) external onlyOwner { uniswapV2Pair = address(_newLpPair); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); } // remove limits after token is stable function removeLimits() external onlyOwner { limitsInEffect = false; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner { require(newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply."); require(newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply."); swapTokensAtAmount = newAmount; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require(newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%"); maxTransactionAmount = newNum * 1e18; } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require(newNum >= ((totalSupply() * 10) / 1000) / 1e18, "Cannot set maxWallet lower than 1.0%"); maxWallet = newNum * 1e18; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees(uint256 _newBuyfee) external onlyOwner { buyTotalFees = _newBuyfee; } function updateSellFees(uint256 _newSellFee) external onlyOwner { sellTotalFees = _newSellFee; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns (bool) { return blacklisted[account]; } function _transfer(address from, address to, uint256 amount) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklisted[from], "Sender blacklisted"); require(!blacklisted[to], "Receiver blacklisted"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) { if (!tradingActive) { require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } else if (!_isExcludedMaxTransactionAmount[to]) { require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { uint256 fees = 0; // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); bool success; if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } uint256 initialETHBalance = address(this).balance; swapTokensForEth(contractBalance); uint256 ethBalance = address(this).balance.sub(initialETHBalance); (success, ) = address(teamWallet).call{value: ethBalance}(""); } // @dev team renounce blacklist commands function renounceBlacklist() public onlyOwner { blacklistRenounced = true; } function blacklist(address _addr) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[_addr] = true; } // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community function blacklistLiquidityPool(address lpAddress) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[lpAddress] = true; } // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road function unblacklist(address _addr) public onlyOwner { blacklisted[_addr] = false; } // @dev - Wojak only commands. function updateTeamWallet(address newWallet) external onlyWojak { require(newWallet != address(0), "Cannot be the zero address"); teamWallet = newWallet; emit TeamWalletUpdated(newWallet, teamWallet); } function withdrawStuckToken() external onlyWojak { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } function withdrawStuckToken(address _token, address _to) external onlyWojak { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyWojak { (bool success, ) = toAddr.call{value: address(this).balance}(""); require(success); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
{ "evmVersion": "shanghai", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 696969 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"},{"internalType":"address","name":"_marketingWallet","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"TeamWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenAmt","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"enableTrading","outputs":[],"stateMutability":"payable","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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceEnableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newLpPair","type":"address"}],"name":"forceSetLpPair","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":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBuyfee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSellFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wojak","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e0604052600b805463ffffffff1916600117905534801562000020575f80fd5b5060405162004e2e38038062004e2e8339810160408190526200004391620010fd565b6040518060400160405280600e81526020016d2a34329026b0b3b0b49021b7b4b760911b815250604051806040016040528060058152602001644d4147414960d81b8152508160039081620000999190620011ca565b506004620000a88282620011ca565b505050620000c5620000bf620002b060201b60201c565b620002b4565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e781600162000305565b6001600160a01b03818116608052600554811660a052600780546001600160a01b0319169185169190911790556d225cfe8cdecb67acdbdca380000062000130606482620012a6565b60c052606462000142826002620012c6565b6200014e9190620012a6565b600855606462000160826002620012c6565b6200016c9190620012a6565b600a556127106200017f826005620012c6565b6200018b9190620012a6565b6009556002600d556004600e55620001b7620001af6005546001600160a01b031690565b600162000339565b620001c430600162000339565b600754620001dd906001600160a01b0316600162000339565b620001ea83600162000339565b620001f961dead600162000339565b62000218620002106005546001600160a01b031690565b600162000305565b6200022530600162000305565b6007546200023e906001600160a01b0316600162000305565b6200024b83600162000305565b6200025a61dead600162000305565b620002663082620003a1565b620002913060a05160648460066200027f9190620012c6565b6200028b9190620012a6565b62000454565b620002a6308460646200027f856004620012c6565b50505050620013ad565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6200030f62000b95565b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b6200034362000b95565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620003fd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f828254620004109190620012e0565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481525f8051602062004e0e833981519152910160405180910390a35050565b6001600160a01b038316620004a85760405162461bcd60e51b815260206004820152602560248201525f8051602062004dee833981519152604482015264647265737360d81b6064820152608401620003f4565b6001600160a01b038216620004fa5760405162461bcd60e51b815260206004820152602360248201525f8051602062004dce83398151915260448201526265737360e81b6064820152608401620003f4565b6001600160a01b0383165f908152600c602052604090205460ff1615620005595760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401620003f4565b6001600160a01b0382165f908152600c602052604090205460ff1615620005c35760405162461bcd60e51b815260206004820152601460248201527f526563656976657220626c61636b6c69737465640000000000000000000000006044820152606401620003f4565b805f03620005dd57620005d883835f62000bf3565b505050565b600b5460ff16156200097c576005546001600160a01b038481169116148015906200061657506005546001600160a01b03838116911614155b80156200062b57506001600160a01b03821615155b80156200064357506001600160a01b03821661dead14155b80156200065a5750600654600160a01b900460ff16155b156200097c57600b54610100900460ff16620006fc576001600160a01b0383165f908152600f602052604090205460ff1680620006ae57506001600160a01b0382165f908152600f602052604090205460ff165b620006fc5760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401620003f4565b6001600160a01b0383165f9081526011602052604090205460ff1680156200073c57506001600160a01b0382165f9081526010602052604090205460ff16155b156200082f57600854811115620007bc5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401620003f4565b600a546001600160a01b0383165f90815260208190526040902054620007e39083620012e0565b1115620008295760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620003f4565b6200097c565b6001600160a01b0382165f9081526011602052604090205460ff1680156200086f57506001600160a01b0383165f9081526010602052604090205460ff16155b15620008ef57600854811115620008295760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401620003f4565b6001600160a01b0382165f9081526010602052604090205460ff166200097c57600a546001600160a01b0383165f90815260208190526040902054620009369083620012e0565b11156200097c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620003f4565b305f9081526020819052604090205460095481108015908190620009a85750600b5462010000900460ff165b8015620009bf5750600654600160a01b900460ff16155b8015620009e457506001600160a01b0385165f9081526011602052604090205460ff16155b801562000a0957506001600160a01b0385165f908152600f602052604090205460ff16155b801562000a2e57506001600160a01b0384165f908152600f602052604090205460ff16155b1562000a5f576006805460ff60a01b1916600160a01b17905562000a5162000d66565b6006805460ff60a01b191690555b6006546001600160a01b0386165f908152600f602052604090205460ff600160a01b90920482161591168062000aac57506001600160a01b0385165f908152600f602052604090205460ff165b1562000ab557505f5b801562000b80576001600160a01b0385165f9081526011602052604081205460ff16801562000ae557505f600e54115b1562000b1257600e5462000b0a9060649062000b0390889062000e21565b9062000e37565b905062000b5c565b6001600160a01b0387165f9081526011602052604090205460ff16801562000b3b57505f600d54115b1562000b5c57600d5462000b599060649062000b0390889062000e21565b90505b801562000b705762000b7087308362000bf3565b62000b7c8186620012f6565b9450505b62000b8d86868662000bf3565b505050505050565b6005546001600160a01b0316331462000bf15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003f4565b565b6001600160a01b03831662000c475760405162461bcd60e51b815260206004820152602560248201525f8051602062004dee833981519152604482015264647265737360d81b6064820152608401620003f4565b6001600160a01b03821662000c995760405162461bcd60e51b815260206004820152602360248201525f8051602062004dce83398151915260448201526265737360e81b6064820152608401620003f4565b6001600160a01b0383165f908152602081905260409020548181101562000d125760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401620003f4565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290925f8051602062004e0e833981519152910160405180910390a350505050565b305f908152602081905260408120549081810362000d82575050565b60095462000d92906014620012c6565b82111562000dad5760095462000daa906014620012c6565b91505b4762000db98362000e44565b5f62000dc6478362000fad565b6007546040519192506001600160a01b03169082905f81818185875af1925050503d805f811462000e13576040519150601f19603f3d011682016040523d82523d5f602084013e62000e18565b606091505b50505050505050565b5f62000e2e8284620012c6565b90505b92915050565b5f62000e2e8284620012a6565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811062000e7a5762000e7a6200130c565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000ed9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000eff919062001320565b8160018151811062000f155762000f156200130c565b60200260200101906001600160a01b031690816001600160a01b03168152505062000f4a306080518462000fba60201b60201c565b6080516001600160a01b031663791ac947835f8430426040518663ffffffff1660e01b815260040162000f829594939291906200133c565b5f604051808303815f87803b15801562000f9a575f80fd5b505af115801562000b8d573d5f803e3d5ffd5b5f62000e2e8284620012f6565b6001600160a01b0383166200101e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620003f4565b6001600160a01b038216620010815760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620003f4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b80516001600160a01b0381168114620010f8575f80fd5b919050565b5f80604083850312156200110f575f80fd5b6200111a83620010e1565b91506200112a60208401620010e1565b90509250929050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200115c57607f821691505b6020821081036200117b57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620005d8575f81815260208120601f850160051c81016020861015620011a95750805b601f850160051c820191505b8181101562000b8d57828155600101620011b5565b81516001600160401b03811115620011e657620011e662001133565b620011fe81620011f7845462001147565b8462001181565b602080601f83116001811462001234575f84156200121c5750858301515b5f19600386901b1c1916600185901b17855562000b8d565b5f85815260208120601f198616915b82811015620012645788860151825594840194600190910190840162001243565b50858210156200128257878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b5f82620012c157634e487b7160e01b5f52601260045260245ffd5b500490565b808202811582820484141762000e315762000e3162001292565b8082018082111562000e315762000e3162001292565b8181038181111562000e315762000e3162001292565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121562001331575f80fd5b62000e2e82620010e1565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156200138c5784516001600160a01b03168352938301939183019160010162001365565b50506001600160a01b03969096166060850152505050608001529392505050565b60805160a05160c0516139b06200141e5f395f61063501525f81816105550152612fa701525f81816103eb01528181611317015281816113c0015281816115540152818161161c015281816116bf01528181611706015281816133f9015281816134d7015261353901526139b05ff3fe608060405260043610610348575f3560e01c806375e3661e116101b2578063bc205ad3116100f2578063e19b282311610092578063f2fde38b1161006d578063f2fde38b14610a05578063f8b45b0514610a24578063f9f92be4146109b2578063fe575a8714610a39575f80fd5b8063e19b2823146109b2578063e2f45605146109d1578063eba4c333146109e6575f80fd5b8063c8c8ebe4116100cd578063c8c8ebe414610918578063d257b34f1461092d578063d85ba0631461094c578063dd62ed3e14610961575f80fd5b8063bc205ad3146108bb578063c0246668146108da578063c18bc195146108f9575f80fd5b8063924de9b71161015d578063a457c2d711610138578063a457c2d714610831578063a9059cbb14610850578063b62496f51461086f578063bbc0c7421461089d575f80fd5b8063924de9b7146107df57806395d89b41146107fe5780639a7a23d614610812575f80fd5b806384dd44521161018d57806384dd4452146107995780638a8c523c146107ad5780638da5cb5b146107b5575f80fd5b806375e3661e1461073c5780637ca8448a1461075b5780637cb332bb1461077a575f80fd5b80634c423538116102885780636ddd171311610228578063715018a611610203578063715018a6146106d657806371fc4688146106ea578063751039fc146107095780637571336a1461071d575f80fd5b80636ddd1713146106575780636e2149c71461067657806370a0823114610695575f80fd5b80635c1556a5116102635780635c1556a5146105e75780635f189361146105fb5780636a486a8e1461060f5780636a5b7e8614610624575f80fd5b80634c423538146105445780634fbee1931461057757806359927044146105bb575f80fd5b806323b872dd116102f357806339509351116102ce57806339509351146104c05780633dc599ff146104df57806349bd5a5e146104ff5780634a62bb651461052b575f80fd5b806323b872dd1461047157806327c8f83514610490578063313ce567146104a5575f80fd5b80631694505e116103235780631694505e146103da57806318160ddd14610432578063203e727e14610450575f80fd5b806306fdde0314610353578063095ea7b31461037d57806310d5de53146103ac575f80fd5b3661034f57005b5f80fd5b34801561035e575f80fd5b50610367610a7d565b60405161037491906135aa565b60405180910390f35b348015610388575f80fd5b5061039c610397366004613634565b610b0d565b6040519015158152602001610374565b3480156103b7575f80fd5b5061039c6103c636600461365e565b60106020525f908152604090205460ff1681565b3480156103e5575f80fd5b5061040d7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610374565b34801561043d575f80fd5b506002545b604051908152602001610374565b34801561045b575f80fd5b5061046f61046a366004613679565b610b26565b005b34801561047c575f80fd5b5061039c61048b366004613690565b610c0e565b34801561049b575f80fd5b5061040d61dead81565b3480156104b0575f80fd5b5060405160128152602001610374565b3480156104cb575f80fd5b5061039c6104da366004613634565b610c31565b3480156104ea575f80fd5b50600b5461039c906301000000900460ff1681565b34801561050a575f80fd5b5060065461040d9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610536575f80fd5b50600b5461039c9060ff1681565b34801561054f575f80fd5b5061040d7f000000000000000000000000000000000000000000000000000000000000000081565b348015610582575f80fd5b5061039c61059136600461365e565b73ffffffffffffffffffffffffffffffffffffffff165f908152600f602052604090205460ff1690565b3480156105c6575f80fd5b5060075461040d9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105f2575f80fd5b5061046f610c7c565b348015610606575f80fd5b5061046f610d4b565b34801561061a575f80fd5b50610442600e5481565b34801561062f575f80fd5b506104427f000000000000000000000000000000000000000000000000000000000000000081565b348015610662575f80fd5b50600b5461039c9062010000900460ff1681565b348015610681575f80fd5b5061046f61069036600461365e565b610d83565b3480156106a0575f80fd5b506104426106af36600461365e565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b3480156106e1575f80fd5b5061046f610e00565b3480156106f5575f80fd5b5061046f610704366004613679565b610e13565b348015610714575f80fd5b5061046f610e20565b348015610728575f80fd5b5061046f6107373660046136db565b610e52565b348015610747575f80fd5b5061046f61075636600461365e565b610eaf565b348015610766575f80fd5b5061046f61077536600461365e565b610f02565b348015610785575f80fd5b5061046f61079436600461365e565b610f76565b3480156107a4575f80fd5b5061046f61106b565b61046f611196565b3480156107c0575f80fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661040d565b3480156107ea575f80fd5b5061046f6107f9366004613712565b611888565b348015610809575f80fd5b506103676118c8565b34801561081d575f80fd5b5061046f61082c3660046136db565b6118d7565b34801561083c575f80fd5b5061039c61084b366004613634565b611994565b34801561085b575f80fd5b5061039c61086a366004613634565b611a64565b34801561087a575f80fd5b5061039c61088936600461365e565b60116020525f908152604090205460ff1681565b3480156108a8575f80fd5b50600b5461039c90610100900460ff1681565b3480156108c6575f80fd5b5061046f6108d536600461372d565b611a71565b3480156108e5575f80fd5b5061046f6108f43660046136db565b611c24565b348015610904575f80fd5b5061046f610913366004613679565b611cb5565b348015610923575f80fd5b5061044260085481565b348015610938575f80fd5b5061046f610947366004613679565b611d97565b348015610957575f80fd5b50610442600d5481565b34801561096c575f80fd5b5061044261097b36600461372d565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b3480156109bd575f80fd5b5061046f6109cc36600461365e565b611f05565b3480156109dc575f80fd5b5061044260095481565b3480156109f1575f80fd5b5061046f610a00366004613679565b6120d6565b348015610a10575f80fd5b5061046f610a1f36600461365e565b6120e3565b348015610a2f575f80fd5b50610442600a5481565b348015610a44575f80fd5b5061039c610a5336600461365e565b73ffffffffffffffffffffffffffffffffffffffff165f908152600c602052604090205460ff1690565b606060038054610a8c90613759565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab890613759565b8015610b035780601f10610ada57610100808354040283529160200191610b03565b820191905f5260205f20905b815481529060010190602001808311610ae657829003601f168201915b5050505050905090565b5f33610b1a818585612197565b60019150505b92915050565b610b2e612349565b670de0b6b3a76400006103e8610b4360025490565b610b4e9060056137d7565b610b5891906137ee565b610b6291906137ee565b811015610bf6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e3525000000000000000000000000000000000060648201526084015b60405180910390fd5b610c0881670de0b6b3a76400006137d7565b60085550565b5f33610c1b8582856123ca565b610c2685858561249a565b506001949350505050565b335f81815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610b1a9082908690610c77908790613826565b612197565b610c84612349565b600b54610100900460ff1615610d1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f54726164696e6720697320616c726561647920656e61626c65642c2063616e6e60448201527f6f742072656c61756e63682e00000000000000000000000000000000000000006064820152608401610bed565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff1662010100179055565b610d53612349565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff166301000000179055565b610d8b612349565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316908117909155610dd9906001610e52565b600654610dfd9073ffffffffffffffffffffffffffffffffffffffff166001612eb1565b50565b610e08612349565b610e115f612f2f565b565b610e1b612349565b600d55565b610e28612349565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b610e5a612349565b73ffffffffffffffffffffffffffffffffffffffff919091165f90815260106020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b610eb7612349565b73ffffffffffffffffffffffffffffffffffffffff165f908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b610f0a612fa5565b5f8173ffffffffffffffffffffffffffffffffffffffff16476040515f6040518083038185875af1925050503d805f8114610f60576040519150601f19603f3d011682016040523d82523d5f602084013e610f65565b606091505b5050905080610f72575f80fd5b5050565b610f7e612fa5565b73ffffffffffffffffffffffffffffffffffffffff8116610ffb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f43616e6e6f7420626520746865207a65726f20616464726573730000000000006044820152606401610bed565b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff831690811790915560405181907fd9a2a08302ed3220f4e646ff99d6780d87e27baddf1af05679dc930ce8113095905f90a350565b611073612fa5565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482018190525f916370a0823190602401602060405180830381865afa1580156110c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110eb9190613839565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015611148573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061116c9190613850565b5060405133904780156108fc02915f818181858888f19350505050158015610f72573d5f803e3d5ffd5b61119e612349565b600b54610100900460ff1615611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f54726164696e6720697320616c726561647920656e61626c65642c2063616e6e60448201527f6f742072656c61756e63682e00000000000000000000000000000000000000006064820152608401610bed565b305f90815260208190526040902054346112ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f53656e64206c69717569646974792065746800000000000000000000000000006044820152606401610bed565b5f8111611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4e6f20746f6b656e7321000000000000000000000000000000000000000000006044820152606401610bed565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561137e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113a2919061386b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611427573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061144b919061386b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303815f875af11580156114ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114de919061386b565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216918217905561152d906001610e52565b6006546115519073ffffffffffffffffffffffffffffffffffffffff166001612eb1565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115df919061386b565b6040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000811660048301527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248301529192509082169063095ea7b3906044016020604051808303815f875af1158015611694573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116b89190613850565b50611704307f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff612197565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7193430855f8061176460055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156117ef573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906118149190613886565b5050600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff1662010100179055506040805134815260208101849052428183015290517f163f0eb48373c3e681ead5ce578d19b7146541a3ef37203ffaf6634fa304210a916060908290030190a15050565b611890612349565b600b805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610a8c90613759565b6118df612349565b60065473ffffffffffffffffffffffffffffffffffffffff9081169083160361198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bed565b610f728282612eb1565b335f81815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015611a57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610bed565b610c268286868403612197565b5f33610b1a81858561249a565b611a79612fa5565b73ffffffffffffffffffffffffffffffffffffffff8216611af6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bed565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201525f9073ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa158015611b60573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b849190613839565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611bfa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c1e9190613850565b50505050565b611c2c612349565b73ffffffffffffffffffffffffffffffffffffffff82165f818152600f602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611cbd612349565b670de0b6b3a76400006103e8611cd260025490565b611cdd90600a6137d7565b611ce791906137ee565b611cf191906137ee565b811015611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f312e3025000000000000000000000000000000000000000000000000000000006064820152608401610bed565b611d9181670de0b6b3a76400006137d7565b600a5550565b611d9f612349565b620186a0611dac60025490565b611db79060016137d7565b611dc191906137ee565b811015611e50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610bed565b6103e8611e5c60025490565b611e679060056137d7565b611e7191906137ee565b811115611f00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610bed565b600955565b611f0d612349565b600b546301000000900460ff1615611fa7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610bed565b60065473ffffffffffffffffffffffffffffffffffffffff828116911614801590611ffc575073ffffffffffffffffffffffffffffffffffffffff8116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b612088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201527f6572206f7220763220706f6f6c2e0000000000000000000000000000000000006064820152608401610bed565b73ffffffffffffffffffffffffffffffffffffffff165f908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6120de612349565b600e55565b6120eb612349565b73ffffffffffffffffffffffffffffffffffffffff811661218e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610bed565b610dfd81612f2f565b73ffffffffffffffffffffffffffffffffffffffff8316612239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610bed565b73ffffffffffffffffffffffffffffffffffffffff82166122dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610bed565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bed565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611c1e578181101561248d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610bed565b611c1e8484848403612197565b73ffffffffffffffffffffffffffffffffffffffff831661253d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610bed565b73ffffffffffffffffffffffffffffffffffffffff82166125e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610bed565b73ffffffffffffffffffffffffffffffffffffffff83165f908152600c602052604090205460ff161561266f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f53656e64657220626c61636b6c697374656400000000000000000000000000006044820152606401610bed565b73ffffffffffffffffffffffffffffffffffffffff82165f908152600c602052604090205460ff16156126fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f526563656976657220626c61636b6c69737465640000000000000000000000006044820152606401610bed565b805f036127155761271083835f613044565b505050565b600b5460ff1615612be85760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590612766575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612787575073ffffffffffffffffffffffffffffffffffffffff821615155b80156127ab575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b80156127d2575060065474010000000000000000000000000000000000000000900460ff16155b15612be857600b54610100900460ff166128a35773ffffffffffffffffffffffffffffffffffffffff83165f908152600f602052604090205460ff168061283d575073ffffffffffffffffffffffffffffffffffffffff82165f908152600f602052604090205460ff165b6128a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610bed565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526011602052604090205460ff1680156128fc575073ffffffffffffffffffffffffffffffffffffffff82165f9081526010602052604090205460ff16155b15612a3257600854811115612993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610bed565b600a5473ffffffffffffffffffffffffffffffffffffffff83165f908152602081905260409020546129c59083613826565b1115612a2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610bed565b612be8565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526011602052604090205460ff168015612a8b575073ffffffffffffffffffffffffffffffffffffffff83165f9081526010602052604090205460ff16155b15612b2257600854811115612a2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610bed565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526010602052604090205460ff16612be857600a5473ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054612b809083613826565b1115612be8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610bed565b305f9081526020819052604090205460095481108015908190612c135750600b5462010000900460ff165b8015612c3a575060065474010000000000000000000000000000000000000000900460ff16155b8015612c6b575073ffffffffffffffffffffffffffffffffffffffff85165f9081526011602052604090205460ff16155b8015612c9c575073ffffffffffffffffffffffffffffffffffffffff85165f908152600f602052604090205460ff16155b8015612ccd575073ffffffffffffffffffffffffffffffffffffffff84165f908152600f602052604090205460ff16155b15612d4257600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055612d196132b1565b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60065473ffffffffffffffffffffffffffffffffffffffff86165f908152600f602052604090205460ff74010000000000000000000000000000000000000000909204821615911680612db9575073ffffffffffffffffffffffffffffffffffffffff85165f908152600f602052604090205460ff165b15612dc157505f5b8015612e9e5773ffffffffffffffffffffffffffffffffffffffff85165f9081526011602052604081205460ff168015612dfc57505f600e54115b15612e2857612e216064612e1b600e548861336d90919063ffffffff16565b9061337f565b9050612e7f565b73ffffffffffffffffffffffffffffffffffffffff87165f9081526011602052604090205460ff168015612e5d57505f600d54115b15612e7f57612e7c6064612e1b600d548861336d90919063ffffffff16565b90505b8015612e9057612e90873083613044565b612e9a81866138b1565b9450505b612ea9868686613044565b505050505050565b73ffffffffffffffffffffffffffffffffffffffff82165f8181526011602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163314610e11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f576f6a616b3a2063616c6c6572206973206120676967616368616421000000006044820152606401610bed565b73ffffffffffffffffffffffffffffffffffffffff83166130e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610bed565b73ffffffffffffffffffffffffffffffffffffffff821661318a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610bed565b73ffffffffffffffffffffffffffffffffffffffff83165f908152602081905260409020548181101561323f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610bed565b73ffffffffffffffffffffffffffffffffffffffff8481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611c1e565b305f90815260208190526040812054908181036132cc575050565b6009546132da9060146137d7565b8211156132f2576009546132ef9060146137d7565b91505b476132fc8361338a565b5f613307478361359f565b60075460405191925073ffffffffffffffffffffffffffffffffffffffff169082905f81818185875af1925050503d805f811461335f576040519150601f19603f3d011682016040523d82523d5f602084013e613364565b606091505b50505050505050565b5f61337882846137d7565b9392505050565b5f61337882846137ee565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106133bd576133bd6138c4565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613460573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613484919061386b565b81600181518110613497576134976138c4565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506134fc307f000000000000000000000000000000000000000000000000000000000000000084612197565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906135769085905f908690309042906004016138f1565b5f604051808303815f87803b15801561358d575f80fd5b505af1158015612ea9573d5f803e3d5ffd5b5f61337882846138b1565b5f6020808352835180828501525f5b818110156135d5578581018301518582016040015282016135b9565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610dfd575f80fd5b5f8060408385031215613645575f80fd5b823561365081613613565b946020939093013593505050565b5f6020828403121561366e575f80fd5b813561337881613613565b5f60208284031215613689575f80fd5b5035919050565b5f805f606084860312156136a2575f80fd5b83356136ad81613613565b925060208401356136bd81613613565b929592945050506040919091013590565b8015158114610dfd575f80fd5b5f80604083850312156136ec575f80fd5b82356136f781613613565b91506020830135613707816136ce565b809150509250929050565b5f60208284031215613722575f80fd5b8135613378816136ce565b5f806040838503121561373e575f80fd5b823561374981613613565b9150602083013561370781613613565b600181811c9082168061376d57607f821691505b6020821081036137a4577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b8082028115828204841417610b2057610b206137aa565b5f82613821577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b80820180821115610b2057610b206137aa565b5f60208284031215613849575f80fd5b5051919050565b5f60208284031215613860575f80fd5b8151613378816136ce565b5f6020828403121561387b575f80fd5b815161337881613613565b5f805f60608486031215613898575f80fd5b8351925060208401519150604084015190509250925092565b81810381811115610b2057610b206137aa565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561394c57845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161391a565b505073ffffffffffffffffffffffffffffffffffffffff96909616606085015250505060800152939250505056fea2646970667358221220ff4dc58391d7d8a65af03d15cf3f9aa33414cb07891457dff8f98fa964e1ad3a64736f6c6343000814003345524332303a207472616e7366657220746f20746865207a65726f206164647245524332303a207472616e736665722066726f6d20746865207a65726f206164ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000000000000000000001b35cd598c20eca679114d13967d84693f06546b00000000000000000000000032784f68daa32c7f373ccb6a30ba385032ffb71f
Deployed Bytecode
0x608060405260043610610348575f3560e01c806375e3661e116101b2578063bc205ad3116100f2578063e19b282311610092578063f2fde38b1161006d578063f2fde38b14610a05578063f8b45b0514610a24578063f9f92be4146109b2578063fe575a8714610a39575f80fd5b8063e19b2823146109b2578063e2f45605146109d1578063eba4c333146109e6575f80fd5b8063c8c8ebe4116100cd578063c8c8ebe414610918578063d257b34f1461092d578063d85ba0631461094c578063dd62ed3e14610961575f80fd5b8063bc205ad3146108bb578063c0246668146108da578063c18bc195146108f9575f80fd5b8063924de9b71161015d578063a457c2d711610138578063a457c2d714610831578063a9059cbb14610850578063b62496f51461086f578063bbc0c7421461089d575f80fd5b8063924de9b7146107df57806395d89b41146107fe5780639a7a23d614610812575f80fd5b806384dd44521161018d57806384dd4452146107995780638a8c523c146107ad5780638da5cb5b146107b5575f80fd5b806375e3661e1461073c5780637ca8448a1461075b5780637cb332bb1461077a575f80fd5b80634c423538116102885780636ddd171311610228578063715018a611610203578063715018a6146106d657806371fc4688146106ea578063751039fc146107095780637571336a1461071d575f80fd5b80636ddd1713146106575780636e2149c71461067657806370a0823114610695575f80fd5b80635c1556a5116102635780635c1556a5146105e75780635f189361146105fb5780636a486a8e1461060f5780636a5b7e8614610624575f80fd5b80634c423538146105445780634fbee1931461057757806359927044146105bb575f80fd5b806323b872dd116102f357806339509351116102ce57806339509351146104c05780633dc599ff146104df57806349bd5a5e146104ff5780634a62bb651461052b575f80fd5b806323b872dd1461047157806327c8f83514610490578063313ce567146104a5575f80fd5b80631694505e116103235780631694505e146103da57806318160ddd14610432578063203e727e14610450575f80fd5b806306fdde0314610353578063095ea7b31461037d57806310d5de53146103ac575f80fd5b3661034f57005b5f80fd5b34801561035e575f80fd5b50610367610a7d565b60405161037491906135aa565b60405180910390f35b348015610388575f80fd5b5061039c610397366004613634565b610b0d565b6040519015158152602001610374565b3480156103b7575f80fd5b5061039c6103c636600461365e565b60106020525f908152604090205460ff1681565b3480156103e5575f80fd5b5061040d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610374565b34801561043d575f80fd5b506002545b604051908152602001610374565b34801561045b575f80fd5b5061046f61046a366004613679565b610b26565b005b34801561047c575f80fd5b5061039c61048b366004613690565b610c0e565b34801561049b575f80fd5b5061040d61dead81565b3480156104b0575f80fd5b5060405160128152602001610374565b3480156104cb575f80fd5b5061039c6104da366004613634565b610c31565b3480156104ea575f80fd5b50600b5461039c906301000000900460ff1681565b34801561050a575f80fd5b5060065461040d9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610536575f80fd5b50600b5461039c9060ff1681565b34801561054f575f80fd5b5061040d7f00000000000000000000000075cbd83ec37f8783c6a1f8f15a30648e968dcb1181565b348015610582575f80fd5b5061039c61059136600461365e565b73ffffffffffffffffffffffffffffffffffffffff165f908152600f602052604090205460ff1690565b3480156105c6575f80fd5b5060075461040d9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105f2575f80fd5b5061046f610c7c565b348015610606575f80fd5b5061046f610d4b565b34801561061a575f80fd5b50610442600e5481565b34801561062f575f80fd5b506104427f0000000000000000000000000000000000000057f84e356d8dd635660be0000081565b348015610662575f80fd5b50600b5461039c9062010000900460ff1681565b348015610681575f80fd5b5061046f61069036600461365e565b610d83565b3480156106a0575f80fd5b506104426106af36600461365e565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b3480156106e1575f80fd5b5061046f610e00565b3480156106f5575f80fd5b5061046f610704366004613679565b610e13565b348015610714575f80fd5b5061046f610e20565b348015610728575f80fd5b5061046f6107373660046136db565b610e52565b348015610747575f80fd5b5061046f61075636600461365e565b610eaf565b348015610766575f80fd5b5061046f61077536600461365e565b610f02565b348015610785575f80fd5b5061046f61079436600461365e565b610f76565b3480156107a4575f80fd5b5061046f61106b565b61046f611196565b3480156107c0575f80fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661040d565b3480156107ea575f80fd5b5061046f6107f9366004613712565b611888565b348015610809575f80fd5b506103676118c8565b34801561081d575f80fd5b5061046f61082c3660046136db565b6118d7565b34801561083c575f80fd5b5061039c61084b366004613634565b611994565b34801561085b575f80fd5b5061039c61086a366004613634565b611a64565b34801561087a575f80fd5b5061039c61088936600461365e565b60116020525f908152604090205460ff1681565b3480156108a8575f80fd5b50600b5461039c90610100900460ff1681565b3480156108c6575f80fd5b5061046f6108d536600461372d565b611a71565b3480156108e5575f80fd5b5061046f6108f43660046136db565b611c24565b348015610904575f80fd5b5061046f610913366004613679565b611cb5565b348015610923575f80fd5b5061044260085481565b348015610938575f80fd5b5061046f610947366004613679565b611d97565b348015610957575f80fd5b50610442600d5481565b34801561096c575f80fd5b5061044261097b36600461372d565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b3480156109bd575f80fd5b5061046f6109cc36600461365e565b611f05565b3480156109dc575f80fd5b5061044260095481565b3480156109f1575f80fd5b5061046f610a00366004613679565b6120d6565b348015610a10575f80fd5b5061046f610a1f36600461365e565b6120e3565b348015610a2f575f80fd5b50610442600a5481565b348015610a44575f80fd5b5061039c610a5336600461365e565b73ffffffffffffffffffffffffffffffffffffffff165f908152600c602052604090205460ff1690565b606060038054610a8c90613759565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab890613759565b8015610b035780601f10610ada57610100808354040283529160200191610b03565b820191905f5260205f20905b815481529060010190602001808311610ae657829003601f168201915b5050505050905090565b5f33610b1a818585612197565b60019150505b92915050565b610b2e612349565b670de0b6b3a76400006103e8610b4360025490565b610b4e9060056137d7565b610b5891906137ee565b610b6291906137ee565b811015610bf6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e3525000000000000000000000000000000000060648201526084015b60405180910390fd5b610c0881670de0b6b3a76400006137d7565b60085550565b5f33610c1b8582856123ca565b610c2685858561249a565b506001949350505050565b335f81815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610b1a9082908690610c77908790613826565b612197565b610c84612349565b600b54610100900460ff1615610d1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f54726164696e6720697320616c726561647920656e61626c65642c2063616e6e60448201527f6f742072656c61756e63682e00000000000000000000000000000000000000006064820152608401610bed565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff1662010100179055565b610d53612349565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff166301000000179055565b610d8b612349565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316908117909155610dd9906001610e52565b600654610dfd9073ffffffffffffffffffffffffffffffffffffffff166001612eb1565b50565b610e08612349565b610e115f612f2f565b565b610e1b612349565b600d55565b610e28612349565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b610e5a612349565b73ffffffffffffffffffffffffffffffffffffffff919091165f90815260106020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b610eb7612349565b73ffffffffffffffffffffffffffffffffffffffff165f908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b610f0a612fa5565b5f8173ffffffffffffffffffffffffffffffffffffffff16476040515f6040518083038185875af1925050503d805f8114610f60576040519150601f19603f3d011682016040523d82523d5f602084013e610f65565b606091505b5050905080610f72575f80fd5b5050565b610f7e612fa5565b73ffffffffffffffffffffffffffffffffffffffff8116610ffb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f43616e6e6f7420626520746865207a65726f20616464726573730000000000006044820152606401610bed565b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff831690811790915560405181907fd9a2a08302ed3220f4e646ff99d6780d87e27baddf1af05679dc930ce8113095905f90a350565b611073612fa5565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482018190525f916370a0823190602401602060405180830381865afa1580156110c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110eb9190613839565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015611148573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061116c9190613850565b5060405133904780156108fc02915f818181858888f19350505050158015610f72573d5f803e3d5ffd5b61119e612349565b600b54610100900460ff1615611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f54726164696e6720697320616c726561647920656e61626c65642c2063616e6e60448201527f6f742072656c61756e63682e00000000000000000000000000000000000000006064820152608401610bed565b305f90815260208190526040902054346112ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f53656e64206c69717569646974792065746800000000000000000000000000006044820152606401610bed565b5f8111611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f4e6f20746f6b656e7321000000000000000000000000000000000000000000006044820152606401610bed565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561137e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113a2919061386b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611427573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061144b919061386b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303815f875af11580156114ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114de919061386b565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216918217905561152d906001610e52565b6006546115519073ffffffffffffffffffffffffffffffffffffffff166001612eb1565b5f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115df919061386b565b6040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811660048301527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248301529192509082169063095ea7b3906044016020604051808303815f875af1158015611694573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116b89190613850565b50611704307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff612197565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7193430855f8061176460055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156117ef573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906118149190613886565b5050600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff1662010100179055506040805134815260208101849052428183015290517f163f0eb48373c3e681ead5ce578d19b7146541a3ef37203ffaf6634fa304210a916060908290030190a15050565b611890612349565b600b805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610a8c90613759565b6118df612349565b60065473ffffffffffffffffffffffffffffffffffffffff9081169083160361198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bed565b610f728282612eb1565b335f81815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015611a57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610bed565b610c268286868403612197565b5f33610b1a81858561249a565b611a79612fa5565b73ffffffffffffffffffffffffffffffffffffffff8216611af6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bed565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201525f9073ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa158015611b60573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b849190613839565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611bfa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c1e9190613850565b50505050565b611c2c612349565b73ffffffffffffffffffffffffffffffffffffffff82165f818152600f602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611cbd612349565b670de0b6b3a76400006103e8611cd260025490565b611cdd90600a6137d7565b611ce791906137ee565b611cf191906137ee565b811015611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f312e3025000000000000000000000000000000000000000000000000000000006064820152608401610bed565b611d9181670de0b6b3a76400006137d7565b600a5550565b611d9f612349565b620186a0611dac60025490565b611db79060016137d7565b611dc191906137ee565b811015611e50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610bed565b6103e8611e5c60025490565b611e679060056137d7565b611e7191906137ee565b811115611f00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610bed565b600955565b611f0d612349565b600b546301000000900460ff1615611fa7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610bed565b60065473ffffffffffffffffffffffffffffffffffffffff828116911614801590611ffc575073ffffffffffffffffffffffffffffffffffffffff8116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b612088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201527f6572206f7220763220706f6f6c2e0000000000000000000000000000000000006064820152608401610bed565b73ffffffffffffffffffffffffffffffffffffffff165f908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6120de612349565b600e55565b6120eb612349565b73ffffffffffffffffffffffffffffffffffffffff811661218e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610bed565b610dfd81612f2f565b73ffffffffffffffffffffffffffffffffffffffff8316612239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610bed565b73ffffffffffffffffffffffffffffffffffffffff82166122dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610bed565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610e11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bed565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611c1e578181101561248d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610bed565b611c1e8484848403612197565b73ffffffffffffffffffffffffffffffffffffffff831661253d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610bed565b73ffffffffffffffffffffffffffffffffffffffff82166125e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610bed565b73ffffffffffffffffffffffffffffffffffffffff83165f908152600c602052604090205460ff161561266f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f53656e64657220626c61636b6c697374656400000000000000000000000000006044820152606401610bed565b73ffffffffffffffffffffffffffffffffffffffff82165f908152600c602052604090205460ff16156126fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f526563656976657220626c61636b6c69737465640000000000000000000000006044820152606401610bed565b805f036127155761271083835f613044565b505050565b600b5460ff1615612be85760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590612766575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612787575073ffffffffffffffffffffffffffffffffffffffff821615155b80156127ab575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b80156127d2575060065474010000000000000000000000000000000000000000900460ff16155b15612be857600b54610100900460ff166128a35773ffffffffffffffffffffffffffffffffffffffff83165f908152600f602052604090205460ff168061283d575073ffffffffffffffffffffffffffffffffffffffff82165f908152600f602052604090205460ff165b6128a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610bed565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526011602052604090205460ff1680156128fc575073ffffffffffffffffffffffffffffffffffffffff82165f9081526010602052604090205460ff16155b15612a3257600854811115612993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610bed565b600a5473ffffffffffffffffffffffffffffffffffffffff83165f908152602081905260409020546129c59083613826565b1115612a2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610bed565b612be8565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526011602052604090205460ff168015612a8b575073ffffffffffffffffffffffffffffffffffffffff83165f9081526010602052604090205460ff16155b15612b2257600854811115612a2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610bed565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526010602052604090205460ff16612be857600a5473ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054612b809083613826565b1115612be8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610bed565b305f9081526020819052604090205460095481108015908190612c135750600b5462010000900460ff165b8015612c3a575060065474010000000000000000000000000000000000000000900460ff16155b8015612c6b575073ffffffffffffffffffffffffffffffffffffffff85165f9081526011602052604090205460ff16155b8015612c9c575073ffffffffffffffffffffffffffffffffffffffff85165f908152600f602052604090205460ff16155b8015612ccd575073ffffffffffffffffffffffffffffffffffffffff84165f908152600f602052604090205460ff16155b15612d4257600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055612d196132b1565b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60065473ffffffffffffffffffffffffffffffffffffffff86165f908152600f602052604090205460ff74010000000000000000000000000000000000000000909204821615911680612db9575073ffffffffffffffffffffffffffffffffffffffff85165f908152600f602052604090205460ff165b15612dc157505f5b8015612e9e5773ffffffffffffffffffffffffffffffffffffffff85165f9081526011602052604081205460ff168015612dfc57505f600e54115b15612e2857612e216064612e1b600e548861336d90919063ffffffff16565b9061337f565b9050612e7f565b73ffffffffffffffffffffffffffffffffffffffff87165f9081526011602052604090205460ff168015612e5d57505f600d54115b15612e7f57612e7c6064612e1b600d548861336d90919063ffffffff16565b90505b8015612e9057612e90873083613044565b612e9a81866138b1565b9450505b612ea9868686613044565b505050505050565b73ffffffffffffffffffffffffffffffffffffffff82165f8181526011602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b7f00000000000000000000000075cbd83ec37f8783c6a1f8f15a30648e968dcb1173ffffffffffffffffffffffffffffffffffffffff163314610e11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f576f6a616b3a2063616c6c6572206973206120676967616368616421000000006044820152606401610bed565b73ffffffffffffffffffffffffffffffffffffffff83166130e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610bed565b73ffffffffffffffffffffffffffffffffffffffff821661318a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610bed565b73ffffffffffffffffffffffffffffffffffffffff83165f908152602081905260409020548181101561323f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610bed565b73ffffffffffffffffffffffffffffffffffffffff8481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611c1e565b305f90815260208190526040812054908181036132cc575050565b6009546132da9060146137d7565b8211156132f2576009546132ef9060146137d7565b91505b476132fc8361338a565b5f613307478361359f565b60075460405191925073ffffffffffffffffffffffffffffffffffffffff169082905f81818185875af1925050503d805f811461335f576040519150601f19603f3d011682016040523d82523d5f602084013e613364565b606091505b50505050505050565b5f61337882846137d7565b9392505050565b5f61337882846137ee565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106133bd576133bd6138c4565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613460573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613484919061386b565b81600181518110613497576134976138c4565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506134fc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612197565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906135769085905f908690309042906004016138f1565b5f604051808303815f87803b15801561358d575f80fd5b505af1158015612ea9573d5f803e3d5ffd5b5f61337882846138b1565b5f6020808352835180828501525f5b818110156135d5578581018301518582016040015282016135b9565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610dfd575f80fd5b5f8060408385031215613645575f80fd5b823561365081613613565b946020939093013593505050565b5f6020828403121561366e575f80fd5b813561337881613613565b5f60208284031215613689575f80fd5b5035919050565b5f805f606084860312156136a2575f80fd5b83356136ad81613613565b925060208401356136bd81613613565b929592945050506040919091013590565b8015158114610dfd575f80fd5b5f80604083850312156136ec575f80fd5b82356136f781613613565b91506020830135613707816136ce565b809150509250929050565b5f60208284031215613722575f80fd5b8135613378816136ce565b5f806040838503121561373e575f80fd5b823561374981613613565b9150602083013561370781613613565b600181811c9082168061376d57607f821691505b6020821081036137a4577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b8082028115828204841417610b2057610b206137aa565b5f82613821577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b80820180821115610b2057610b206137aa565b5f60208284031215613849575f80fd5b5051919050565b5f60208284031215613860575f80fd5b8151613378816136ce565b5f6020828403121561387b575f80fd5b815161337881613613565b5f805f60608486031215613898575f80fd5b8351925060208401519150604084015190509250925092565b81810381811115610b2057610b206137aa565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561394c57845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161391a565b505073ffffffffffffffffffffffffffffffffffffffff96909616606085015250505060800152939250505056fea2646970667358221220ff4dc58391d7d8a65af03d15cf3f9aa33414cb07891457dff8f98fa964e1ad3a64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001b35cd598c20eca679114d13967d84693f06546b00000000000000000000000032784f68daa32c7f373ccb6a30ba385032ffb71f
-----Decoded View---------------
Arg [0] : _teamWallet (address): 0x1b35cD598C20EcA679114D13967d84693f06546b
Arg [1] : _marketingWallet (address): 0x32784F68Daa32c7F373ccB6A30ba385032FfB71f
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000001b35cd598c20eca679114d13967d84693f06546b
Arg [1] : 00000000000000000000000032784f68daa32c7f373ccb6a30ba385032ffb71f
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.