ERC-20
Overview
Max Total Supply
1,000,000,000 Kintaro
Holders
7
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
8,270.581731385730276397 KintaroValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Kintaro
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* !5B#BGJ^ 5&&&&&&&#P~ :P##BB##B#&Y. :!??775P55555Y777?!: 7Y~::~J5G#BBBG5JJ5PGY^ ... 7J~75PB#&&&&&&##GPGGPB5! :^~~~~^^~!!!!^. .JPGB#&&&&&&&&&&&#BGPG&&G~ :!7!!!!!!!!!!!!7^ :JPB&&&&&&&&&&&&&&&&&#GPG&&Y. :^~!77!!!!!!!!!!!!!!. .:^~^ :YG#&&&&&&&&&&&&&&&&&&&&#GPB&G^ ^!!!!!!!!!!!!!!!!!!!!!!~!!!~^: ~5B&&&&&&&&#&&&&&&&#&&&&&&&B5B&B^ ~?77!!!!!!!!!!!!!!!~~~~!~.. ^5B&&&&&&&&B57?77?Y?7YPB&&&&&GP#&B: ..:~!7!!!!!!!~~~~~~~~~~~~: 7B#&&&&&#Y~^:::...:!?!::~5&&&&##&&5 .:^!??7~~~~~~~~~~~~~^^^^^^:. P&&&&&&G^..!YJ~...:!7~....J&&&&##BP!!777!~^:!!~~~~~~^^^^^^^^^^::^^:.. ^#&&&&&&5...:^:.........::.:GGP5YYY5J^:. ^!^^^^^^^^^^:::::::::..:^ !&&&&&&&#~.:.....:^^:......!55PB##&&G ^!^^^^^::::::::........:. 7&&&&&&&&B!......::......:?#&&&&&&&&#: .!^:::::::....... ... 7&&&&&&&##BJ~^:........::J&#B##&&&&&&~ .^:::....... ... .... ?&#BGPP555555PGJ^^^~~!77?7^:::^~?YG#&! :^::.... ...... .:....:!~!J55Y5GBB5!^~7JYYJJYYYYYY7..........^?~. .............. ^!!~^^!?7~P#&JB&5^.^?YYYYYYYYYYYYY^.............:::. .:^~7?????!^::: :#@#!B7..!YYYYYYYYYYYYYYY7................::. .:^!7???7!~^. ::....^!J?~!..~YYYYYYYYYYYYYYYYY?^................:: .:~!7???7!~:. .::..........?YYYYYJJJJJJYYYYYYYY!:..:::::........:: ???7!^:. .::........7YYYYYYJ7YYYYYYYYYYYYJ!:..::.:::......:: .. :::....::~YYYY5J~!!!JYYYYYYYYYYYJ!::: .:......: ...... .YYYJ!^!77!~!YYYYYYYYYYYYYJ: .:.....: ?JY?!7!^!!!7YYYYYYYYYYYYY?. ::....:: 7JJY777^7~!JYJYYYYYYYYY7^: .:.....: ~YJJ7!!!!!7?YYYYYYYYJ7:..:: .::....:: ^YYJJJJJJJJJYYYYYYJ!:.....::^^...::. .:~JYYJJJJJYYYYYY?~.........^.::.:: :^^:^^^^^^ :..:7YYYYYYYYYY7^...........: ... .77??7777J? .:....^?YYYYYY?^............:. :?JPGJ777Y! :.......!JYYY7..............:. ~J5BBGY7?Y^ .:........:!?J^..............:: 7?YGGJ?7JJ. ::...........:~:.............:. .JJJGJ???Y? .:...........: :.............:. ^YYG#5J??Y! .:..........7!~!:...........:: !Y5PPGYJJY^ .:.........:?JJJ:...........:~^::... ?YP5YY5JYY: .:^~..........~JJJJ:...........:????7777!!~~^^^::... .JP&#GGYJYY!.:~!?JJY?.........:JJJJJ^...........~?????77777777777777!!!~~~^^::... ^YPGPBBYYYJJJYYYYYYY!........:?JJJJJ^..........^????????7777777777777777777777777: !YJJY5YYYYYJYYJYYYJ7:.......:JYJJJJJ~.........:???????????77777777777777777777!^: .:~!?YYYYJJJJYYYYYYYJ?~..........^YJJJJJY!........:?????????????7777777777777777!~: .!7JJYYYYYYYYYYYYYYYYYYYJ777777777!!!?YYYYJJY~........~J???????????????77777777?7!~: :7??JJYYYYYYYYYYYYYJJJJJYYYYYYYYYYYYYYJYYYYY~........:~JJJ??????????????77???7!~: ..:^^~!7?JJYYYYYYYYYYYYYJJJJJJJYYYYYJY7~:^^~~!!7?JJJJJJJ???????????????7~:. ..::^~!7??JYYYYYYYYYYYYYYYJJJJJJYYYYYYYJJJJJJJJJJ????????JJ?!:. ..:^~!7??JJYYYYYYYYYYYYYYYJJJJJJJJJJJJJJ???JJJ?!^. ..:^~!!7?JJYYYYYYYYYYYJJJJJJJJJJYYJ7^. ..:^^~!7??JJYYYYYYYJYYJ?~. .:^^~!7?JYJ!: */ pragma solidity ^0.8.17; pragma experimental ABIEncoderV2; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {SafeMath} from "@openzeppelin/contracts/utils/math/SafeMath.sol"; import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import {IUniswapV2Pair} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; contract Kintaro is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address private marketingWallet; address private devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = true; bool public swapEnabled = true; mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch // Seller Map mapping(address => uint256) private _holderFirstBuyTimestamp; mapping(address => bool) private _blacklist; bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; uint256 launchedAt; // 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 marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Kintaro", "Kintaro") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 0; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 5; uint256 _sellMarketingFee = 0; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 5; uint256 totalSupply = 1 * 1e9 * 1e18; maxTransactionAmount = (totalSupply * 10) / 1000; // 1% maxTransactionAmountTxn maxWallet = (totalSupply * 20) / 1000; // 2% maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(owner()); // set as marketing wallet devWallet = address(owner()); // set as dev wallet excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; launchedAt = block.number; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { 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; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } 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 excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function blacklistAccount(address account, bool isBlacklisted) public onlyOwner { _blacklist[account] = isBlacklisted; } 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 updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[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( !_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens" ); 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." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //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; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } 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 addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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; } } }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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; } }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","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":[],"name":"ManualNukeLP","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","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":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"blacklistAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"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":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","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":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600b60006101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600781526020017f4b696e7461726f000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4b696e7461726f000000000000000000000000000000000000000000000000008152508160039081620000fb919062000cf9565b5080600490816200010d919062000cf9565b5050506200013062000124620005ad60201b60201c565b620005b560201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200015c8160016200067b60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000202919062000e4a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000290919062000e4a565b6040518363ffffffff1660e01b8152600401620002af92919062000e8d565b6020604051808303816000875af1158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f5919062000e4a565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033d60a05160016200067b60201b60201c565b6200035260a0516001620006e660201b60201c565b60008060006005905060008060006005905060006b033b2e3c9fd0803ce800000090506103e8600a8262000387919062000ee9565b62000393919062000f63565b6008819055506103e8601482620003ab919062000ee9565b620003b7919062000f63565b600a81905550612710600582620003cf919062000ee9565b620003db919062000f63565b6009819055508660118190555085601281905550846013819055506013546012546011546200040b919062000f9b565b62000417919062000f9b565b60108190555083601581905550826016819055508160178190555060175460165460155462000447919062000f9b565b62000453919062000f9b565b601481905550620004696200078760201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004b96200078760201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200051b6200050d6200078760201b60201c565b6001620007b160201b60201c565b6200052e306001620007b160201b60201c565b6200054361dead6001620007b160201b60201c565b62000565620005576200078760201b60201c565b60016200067b60201b60201c565b620005783060016200067b60201b60201c565b6200058d61dead60016200067b60201b60201c565b6200059f33826200086c60201b60201c565b505050505050505062001133565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200068b620009e460201b60201c565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007c1620009e460201b60201c565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000860919062000ff3565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d59062001071565b60405180910390fd5b620008f26000838362000a7560201b60201c565b806002600082825462000906919062000f9b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200095d919062000f9b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009c49190620010a4565b60405180910390a3620009e06000838362000a7a60201b60201c565b5050565b620009f4620005ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a1a6200078760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a6a9062001111565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b0157607f821691505b60208210810362000b175762000b1662000ab9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b42565b62000b8d868362000b42565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000bda62000bd462000bce8462000ba5565b62000baf565b62000ba5565b9050919050565b6000819050919050565b62000bf68362000bb9565b62000c0e62000c058262000be1565b84845462000b4f565b825550505050565b600090565b62000c2562000c16565b62000c3281848462000beb565b505050565b5b8181101562000c5a5762000c4e60008262000c1b565b60018101905062000c38565b5050565b601f82111562000ca95762000c738162000b1d565b62000c7e8462000b32565b8101602085101562000c8e578190505b62000ca662000c9d8562000b32565b83018262000c37565b50505b505050565b600082821c905092915050565b600062000cce6000198460080262000cae565b1980831691505092915050565b600062000ce9838362000cbb565b9150826002028217905092915050565b62000d048262000a7f565b67ffffffffffffffff81111562000d205762000d1f62000a8a565b5b62000d2c825462000ae8565b62000d3982828562000c5e565b600060209050601f83116001811462000d71576000841562000d5c578287015190505b62000d68858262000cdb565b86555062000dd8565b601f19841662000d818662000b1d565b60005b8281101562000dab5784890151825560018201915060208501945060208101905062000d84565b8683101562000dcb578489015162000dc7601f89168262000cbb565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e128262000de5565b9050919050565b62000e248162000e05565b811462000e3057600080fd5b50565b60008151905062000e448162000e19565b92915050565b60006020828403121562000e635762000e6262000de0565b5b600062000e738482850162000e33565b91505092915050565b62000e878162000e05565b82525050565b600060408201905062000ea4600083018562000e7c565b62000eb3602083018462000e7c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ef68262000ba5565b915062000f038362000ba5565b925082820262000f138162000ba5565b9150828204841483151762000f2d5762000f2c62000eba565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f708262000ba5565b915062000f7d8362000ba5565b92508262000f905762000f8f62000f34565b5b828204905092915050565b600062000fa88262000ba5565b915062000fb58362000ba5565b925082820190508082111562000fd05762000fcf62000eba565b5b92915050565b60008115159050919050565b62000fed8162000fd6565b82525050565b60006020820190506200100a600083018462000fe2565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001059601f8362001010565b9150620010668262001021565b602082019050919050565b600060208201905081810360008301526200108c816200104a565b9050919050565b6200109e8162000ba5565b82525050565b6000602082019050620010bb600083018462001093565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010f960208362001010565b91506200110682620010c1565b602082019050919050565b600060208201905081810360008301526200112c81620010ea565b9050919050565b60805160a0516146866200119160003960008181610f0f015281816111dc0152611f2a015260008181610ca001528181611ed201528181612fc4015281816130a5015281816130cc01528181613168015261318f01526146866000f3fe6080604052600436106102cd5760003560e01c80639213691311610175578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b1f578063f2fde38b14610b4a578063f637434214610b73578063f8b45b0514610b9e576102d4565b8063dd62ed3e14610a8c578063e2f4560514610ac9578063e884f26014610af4576102d4565b8063c02466681461097c578063c18bc195146109a5578063c876d0b9146109ce578063c8c8ebe4146109f9578063d257b34f14610a24578063d85ba06314610a61576102d4565b8063a0d82dc51161012e578063a0d82dc514610846578063a457c2d714610871578063a9059cbb146108ae578063aacebbe3146108eb578063b62496f514610914578063bbc0c74214610951576102d4565b80639213691314610748578063924de9b71461077357806395d89b411461079c5780639a7a23d6146107c75780639c3b4fdc146107f05780639fccce321461081b576102d4565b8063395093511161023457806370a08231116101ed5780637571336a116101c75780637571336a146106b25780637bce5a04146106db5780638a8c523c146107065780638da5cb5b1461071d576102d4565b806370a0823114610633578063715018a614610670578063751039fc14610687576102d4565b8063395093511461050d57806349bd5a5e1461054a5780634a62bb65146105755780634fbee193146105a05780636a486a8e146105dd5780636ddd171314610608576102d4565b80631a8145bb116102865780631a8145bb146103fd5780631f3fed8f14610428578063203e727e1461045357806323b872dd1461047c5780632d5a5d34146104b9578063313ce567146104e2576102d4565b806306fdde03146102d9578063095ea7b31461030457806310d5de53146103415780631694505e1461037e57806318160ddd146103a95780631816467f146103d4576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bc9565b6040516102fb91906132cc565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190613387565b610c5b565b60405161033891906133e2565b60405180910390f35b34801561034d57600080fd5b50610368600480360381019061036391906133fd565b610c7e565b60405161037591906133e2565b60405180910390f35b34801561038a57600080fd5b50610393610c9e565b6040516103a09190613489565b60405180910390f35b3480156103b557600080fd5b506103be610cc2565b6040516103cb91906134b3565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f691906133fd565b610ccc565b005b34801561040957600080fd5b50610412610d94565b60405161041f91906134b3565b60405180910390f35b34801561043457600080fd5b5061043d610d9a565b60405161044a91906134b3565b60405180910390f35b34801561045f57600080fd5b5061047a600480360381019061047591906134ce565b610da0565b005b34801561048857600080fd5b506104a3600480360381019061049e91906134fb565b610e3b565b6040516104b091906133e2565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db919061357a565b610e6a565b005b3480156104ee57600080fd5b506104f7610ecd565b60405161050491906135d6565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190613387565b610ed6565b60405161054191906133e2565b60405180910390f35b34801561055657600080fd5b5061055f610f0d565b60405161056c9190613600565b60405180910390f35b34801561058157600080fd5b5061058a610f31565b60405161059791906133e2565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c291906133fd565b610f44565b6040516105d491906133e2565b60405180910390f35b3480156105e957600080fd5b506105f2610f9a565b6040516105ff91906134b3565b60405180910390f35b34801561061457600080fd5b5061061d610fa0565b60405161062a91906133e2565b60405180910390f35b34801561063f57600080fd5b5061065a600480360381019061065591906133fd565b610fb3565b60405161066791906134b3565b60405180910390f35b34801561067c57600080fd5b50610685610ffb565b005b34801561069357600080fd5b5061069c61100f565b6040516106a991906133e2565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d4919061357a565b61103b565b005b3480156106e757600080fd5b506106f061109e565b6040516106fd91906134b3565b60405180910390f35b34801561071257600080fd5b5061071b6110a4565b005b34801561072957600080fd5b506107326110eb565b60405161073f9190613600565b60405180910390f35b34801561075457600080fd5b5061075d611115565b60405161076a91906134b3565b60405180910390f35b34801561077f57600080fd5b5061079a6004803603810190610795919061361b565b61111b565b005b3480156107a857600080fd5b506107b1611140565b6040516107be91906132cc565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e9919061357a565b6111d2565b005b3480156107fc57600080fd5b50610805611276565b60405161081291906134b3565b60405180910390f35b34801561082757600080fd5b5061083061127c565b60405161083d91906134b3565b60405180910390f35b34801561085257600080fd5b5061085b611282565b60405161086891906134b3565b60405180910390f35b34801561087d57600080fd5b5061089860048036038101906108939190613387565b611288565b6040516108a591906133e2565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d09190613387565b6112ff565b6040516108e291906133e2565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d91906133fd565b611322565b005b34801561092057600080fd5b5061093b600480360381019061093691906133fd565b6113ea565b60405161094891906133e2565b60405180910390f35b34801561095d57600080fd5b5061096661140a565b60405161097391906133e2565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e919061357a565b61141d565b005b3480156109b157600080fd5b506109cc60048036038101906109c791906134ce565b6114ce565b005b3480156109da57600080fd5b506109e3611569565b6040516109f091906133e2565b60405180910390f35b348015610a0557600080fd5b50610a0e61157c565b604051610a1b91906134b3565b60405180910390f35b348015610a3057600080fd5b50610a4b6004803603810190610a4691906134ce565b611582565b604051610a5891906133e2565b60405180910390f35b348015610a6d57600080fd5b50610a76611663565b604051610a8391906134b3565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae9190613648565b611669565b604051610ac091906134b3565b60405180910390f35b348015610ad557600080fd5b50610ade6116f0565b604051610aeb91906134b3565b60405180910390f35b348015610b0057600080fd5b50610b096116f6565b604051610b1691906133e2565b60405180910390f35b348015610b2b57600080fd5b50610b34611722565b604051610b4191906134b3565b60405180910390f35b348015610b5657600080fd5b50610b716004803603810190610b6c91906133fd565b611728565b005b348015610b7f57600080fd5b50610b886117ab565b604051610b9591906134b3565b60405180910390f35b348015610baa57600080fd5b50610bb36117b1565b604051610bc091906134b3565b60405180910390f35b606060038054610bd8906136b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c04906136b7565b8015610c515780601f10610c2657610100808354040283529160200191610c51565b820191906000526020600020905b815481529060010190602001808311610c3457829003601f168201915b5050505050905090565b600080610c666117b7565b9050610c738185856117bf565b600191505092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610cd4611988565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610da8611988565b670de0b6b3a76400006103e86001610dbe610cc2565b610dc89190613717565b610dd29190613788565b610ddc9190613788565b811015610e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e159061382b565b60405180910390fd5b670de0b6b3a764000081610e329190613717565b60088190555050565b600080610e466117b7565b9050610e53858285611a06565b610e5e858585611a92565b60019150509392505050565b610e72611988565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b600080610ee16117b7565b9050610f02818585610ef38589611669565b610efd919061384b565b6117bf565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611003611988565b61100d600061280c565b565b6000611019611988565b6000600b60006101000a81548160ff0219169083151502179055506001905090565b611043611988565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b6110ac611988565b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b611123611988565b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461114f906136b7565b80601f016020809104026020016040519081016040528092919081815260200182805461117b906136b7565b80156111c85780601f1061119d576101008083540402835291602001916111c8565b820191906000526020600020905b8154815290600101906020018083116111ab57829003601f168201915b5050505050905090565b6111da611988565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f906138f1565b60405180910390fd5b61127282826128d2565b5050565b60135481565b601a5481565b60175481565b6000806112936117b7565b905060006112a18286611669565b9050838110156112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd90613983565b60405180910390fd5b6112f382868684036117bf565b60019250505092915050565b60008061130a6117b7565b9050611317818585611a92565b600191505092915050565b61132a611988565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611425611988565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516114c291906133e2565b60405180910390a25050565b6114d6611988565b670de0b6b3a76400006103e860056114ec610cc2565b6114f69190613717565b6115009190613788565b61150a9190613788565b81101561154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390613a15565b60405180910390fd5b670de0b6b3a7640000816115609190613717565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b600061158c611988565b620186a0600161159a610cc2565b6115a49190613717565b6115ae9190613788565b8210156115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e790613aa7565b60405180910390fd5b6103e860056115fd610cc2565b6116079190613717565b6116119190613788565b821115611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90613b39565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611700611988565b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b611730611988565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361179f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179690613bcb565b60405180910390fd5b6117a88161280c565b50565b60165481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590613c5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490613cef565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161197b91906134b3565b60405180910390a3505050565b6119906117b7565b73ffffffffffffffffffffffffffffffffffffffff166119ae6110eb565b73ffffffffffffffffffffffffffffffffffffffff1614611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90613d5b565b60405180910390fd5b565b6000611a128484611669565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a8c5781811015611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7590613dc7565b60405180910390fd5b611a8b84848484036117bf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af890613e59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6790613eeb565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611c145750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4a90613f7d565b60405180910390fd5b60008103611c6c57611c6783836000612973565b612807565b600b60009054906101000a900460ff161561232f57611c896110eb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611cf75750611cc76110eb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d305750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d6a575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d835750600560149054906101000a900460ff16155b1561232e57600b60019054906101000a900460ff16611e7d57601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e3d5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7390613fe9565b60405180910390fd5b5b600f60009054906101000a900460ff161561204557611e9a6110eb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611f2157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f7957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156120445743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff6906140a1565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120e85750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561218f57600854811115612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990614133565b60405180910390fd5b600a5461213e83610fb3565b82612149919061384b565b111561218a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121819061419f565b60405180910390fd5b61232d565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122325750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122815760085481111561227c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227390614231565b60405180910390fd5b61232c565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661232b57600a546122de83610fb3565b826122e9919061384b565b111561232a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123219061419f565b60405180910390fd5b5b5b5b5b5b600061233a30610fb3565b90506000600954821015905080801561235f5750600b60029054906101000a900460ff165b80156123785750600560149054906101000a900460ff16155b80156123ce5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124245750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561247a5750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124be576001600560146101000a81548160ff0219169083151502179055506124a2612bf2565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125745750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561257e57600090505b600081156127f757601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125e157506000601454115b156126ae5761260e606461260060145488612ed990919063ffffffff16565b612eef90919063ffffffff16565b9050601454601654826126219190613717565b61262b9190613788565b6019600082825461263c919061384b565b92505081905550601454601754826126549190613717565b61265e9190613788565b601a600082825461266f919061384b565b92505081905550601454601554826126879190613717565b6126919190613788565b601860008282546126a2919061384b565b925050819055506127d3565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561270957506000601054115b156127d257612736606461272860105488612ed990919063ffffffff16565b612eef90919063ffffffff16565b9050601054601254826127499190613717565b6127539190613788565b60196000828254612764919061384b565b925050819055506010546013548261277c9190613717565b6127869190613788565b601a6000828254612797919061384b565b92505081905550601054601154826127af9190613717565b6127b99190613788565b601860008282546127ca919061384b565b925050819055505b5b60008111156127e8576127e7873083612973565b5b80856127f49190614251565b94505b612802878787612973565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d990613e59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4890613eeb565b60405180910390fd5b612a5c838383612f05565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad9906142f7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b75919061384b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612bd991906134b3565b60405180910390a3612bec848484612f0a565b50505050565b6000612bfd30610fb3565b90506000601a54601854601954612c14919061384b565b612c1e919061384b565b9050600080831480612c305750600082145b15612c3d57505050612ed7565b6014600954612c4c9190613717565b831115612c65576014600954612c629190613717565b92505b600060028360195486612c789190613717565b612c829190613788565b612c8c9190613788565b90506000612ca38286612f0f90919063ffffffff16565b90506000479050612cb382612f25565b6000612cc88247612f0f90919063ffffffff16565b90506000612cf387612ce560185485612ed990919063ffffffff16565b612eef90919063ffffffff16565b90506000612d1e88612d10601a5486612ed990919063ffffffff16565b612eef90919063ffffffff16565b90506000818385612d2f9190614251565b612d399190614251565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612d9990614348565b60006040518083038185875af1925050503d8060008114612dd6576040519150601f19603f3d011682016040523d82523d6000602084013e612ddb565b606091505b505080985050600087118015612df15750600081115b15612e3e57612e008782613162565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051612e359392919061435d565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612e8490614348565b60006040518083038185875af1925050503d8060008114612ec1576040519150601f19603f3d011682016040523d82523d6000602084013e612ec6565b606091505b505080985050505050505050505050505b565b60008183612ee79190613717565b905092915050565b60008183612efd9190613788565b905092915050565b505050565b505050565b60008183612f1d9190614251565b905092915050565b6000600267ffffffffffffffff811115612f4257612f41614394565b5b604051908082528060200260200182016040528015612f705781602001602082028036833780820191505090505b5090503081600081518110612f8857612f876143c3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561302d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130519190614407565b81600181518110613065576130646143c3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506130ca307f0000000000000000000000000000000000000000000000000000000000000000846117bf565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161312c95949392919061452d565b600060405180830381600087803b15801561314657600080fd5b505af115801561315a573d6000803e3d6000fd5b505050505050565b61318d307f0000000000000000000000000000000000000000000000000000000000000000846117bf565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b81526004016131f296959493929190614587565b60606040518083038185885af1158015613210573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061323591906145fd565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561327657808201518184015260208101905061325b565b60008484015250505050565b6000601f19601f8301169050919050565b600061329e8261323c565b6132a88185613247565b93506132b8818560208601613258565b6132c181613282565b840191505092915050565b600060208201905081810360008301526132e68184613293565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061331e826132f3565b9050919050565b61332e81613313565b811461333957600080fd5b50565b60008135905061334b81613325565b92915050565b6000819050919050565b61336481613351565b811461336f57600080fd5b50565b6000813590506133818161335b565b92915050565b6000806040838503121561339e5761339d6132ee565b5b60006133ac8582860161333c565b92505060206133bd85828601613372565b9150509250929050565b60008115159050919050565b6133dc816133c7565b82525050565b60006020820190506133f760008301846133d3565b92915050565b600060208284031215613413576134126132ee565b5b60006134218482850161333c565b91505092915050565b6000819050919050565b600061344f61344a613445846132f3565b61342a565b6132f3565b9050919050565b600061346182613434565b9050919050565b600061347382613456565b9050919050565b61348381613468565b82525050565b600060208201905061349e600083018461347a565b92915050565b6134ad81613351565b82525050565b60006020820190506134c860008301846134a4565b92915050565b6000602082840312156134e4576134e36132ee565b5b60006134f284828501613372565b91505092915050565b600080600060608486031215613514576135136132ee565b5b60006135228682870161333c565b93505060206135338682870161333c565b925050604061354486828701613372565b9150509250925092565b613557816133c7565b811461356257600080fd5b50565b6000813590506135748161354e565b92915050565b60008060408385031215613591576135906132ee565b5b600061359f8582860161333c565b92505060206135b085828601613565565b9150509250929050565b600060ff82169050919050565b6135d0816135ba565b82525050565b60006020820190506135eb60008301846135c7565b92915050565b6135fa81613313565b82525050565b600060208201905061361560008301846135f1565b92915050565b600060208284031215613631576136306132ee565b5b600061363f84828501613565565b91505092915050565b6000806040838503121561365f5761365e6132ee565b5b600061366d8582860161333c565b925050602061367e8582860161333c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136cf57607f821691505b6020821081036136e2576136e1613688565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061372282613351565b915061372d83613351565b925082820261373b81613351565b91508282048414831517613752576137516136e8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061379382613351565b915061379e83613351565b9250826137ae576137ad613759565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613815602f83613247565b9150613820826137b9565b604082019050919050565b6000602082019050818103600083015261384481613808565b9050919050565b600061385682613351565b915061386183613351565b9250828201905080821115613879576138786136e8565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006138db603983613247565b91506138e68261387f565b604082019050919050565b6000602082019050818103600083015261390a816138ce565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061396d602583613247565b915061397882613911565b604082019050919050565b6000602082019050818103600083015261399c81613960565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006139ff602483613247565b9150613a0a826139a3565b604082019050919050565b60006020820190508181036000830152613a2e816139f2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613a91603583613247565b9150613a9c82613a35565b604082019050919050565b60006020820190508181036000830152613ac081613a84565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613b23603483613247565b9150613b2e82613ac7565b604082019050919050565b60006020820190508181036000830152613b5281613b16565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bb5602683613247565b9150613bc082613b59565b604082019050919050565b60006020820190508181036000830152613be481613ba8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c47602483613247565b9150613c5282613beb565b604082019050919050565b60006020820190508181036000830152613c7681613c3a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cd9602283613247565b9150613ce482613c7d565b604082019050919050565b60006020820190508181036000830152613d0881613ccc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d45602083613247565b9150613d5082613d0f565b602082019050919050565b60006020820190508181036000830152613d7481613d38565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613db1601d83613247565b9150613dbc82613d7b565b602082019050919050565b60006020820190508181036000830152613de081613da4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613e43602583613247565b9150613e4e82613de7565b604082019050919050565b60006020820190508181036000830152613e7281613e36565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613ed5602383613247565b9150613ee082613e79565b604082019050919050565b60006020820190508181036000830152613f0481613ec8565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000613f67603183613247565b9150613f7282613f0b565b604082019050919050565b60006020820190508181036000830152613f9681613f5a565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613fd3601683613247565b9150613fde82613f9d565b602082019050919050565b6000602082019050818103600083015261400281613fc6565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061408b604983613247565b915061409682614009565b606082019050919050565b600060208201905081810360008301526140ba8161407e565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061411d603583613247565b9150614128826140c1565b604082019050919050565b6000602082019050818103600083015261414c81614110565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614189601383613247565b915061419482614153565b602082019050919050565b600060208201905081810360008301526141b88161417c565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061421b603683613247565b9150614226826141bf565b604082019050919050565b6000602082019050818103600083015261424a8161420e565b9050919050565b600061425c82613351565b915061426783613351565b925082820390508181111561427f5761427e6136e8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006142e1602683613247565b91506142ec82614285565b604082019050919050565b60006020820190508181036000830152614310816142d4565b9050919050565b600081905092915050565b50565b6000614332600083614317565b915061433d82614322565b600082019050919050565b600061435382614325565b9150819050919050565b600060608201905061437260008301866134a4565b61437f60208301856134a4565b61438c60408301846134a4565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061440181613325565b92915050565b60006020828403121561441d5761441c6132ee565b5b600061442b848285016143f2565b91505092915050565b6000819050919050565b600061445961445461444f84614434565b61342a565b613351565b9050919050565b6144698161443e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6144a481613313565b82525050565b60006144b6838361449b565b60208301905092915050565b6000602082019050919050565b60006144da8261446f565b6144e4818561447a565b93506144ef8361448b565b8060005b8381101561452057815161450788826144aa565b9750614512836144c2565b9250506001810190506144f3565b5085935050505092915050565b600060a08201905061454260008301886134a4565b61454f6020830187614460565b818103604083015261456181866144cf565b905061457060608301856135f1565b61457d60808301846134a4565b9695505050505050565b600060c08201905061459c60008301896135f1565b6145a960208301886134a4565b6145b66040830187614460565b6145c36060830186614460565b6145d060808301856135f1565b6145dd60a08301846134a4565b979650505050505050565b6000815190506145f78161335b565b92915050565b600080600060608486031215614616576146156132ee565b5b6000614624868287016145e8565b9350506020614635868287016145e8565b9250506040614646868287016145e8565b915050925092509256fea2646970667358221220254d4cd21e5ebff381265ef13b0ebf5964e8eebe582d9a943621df298dafdae564736f6c63430008110033
Deployed Bytecode
0x6080604052600436106102cd5760003560e01c80639213691311610175578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b1f578063f2fde38b14610b4a578063f637434214610b73578063f8b45b0514610b9e576102d4565b8063dd62ed3e14610a8c578063e2f4560514610ac9578063e884f26014610af4576102d4565b8063c02466681461097c578063c18bc195146109a5578063c876d0b9146109ce578063c8c8ebe4146109f9578063d257b34f14610a24578063d85ba06314610a61576102d4565b8063a0d82dc51161012e578063a0d82dc514610846578063a457c2d714610871578063a9059cbb146108ae578063aacebbe3146108eb578063b62496f514610914578063bbc0c74214610951576102d4565b80639213691314610748578063924de9b71461077357806395d89b411461079c5780639a7a23d6146107c75780639c3b4fdc146107f05780639fccce321461081b576102d4565b8063395093511161023457806370a08231116101ed5780637571336a116101c75780637571336a146106b25780637bce5a04146106db5780638a8c523c146107065780638da5cb5b1461071d576102d4565b806370a0823114610633578063715018a614610670578063751039fc14610687576102d4565b8063395093511461050d57806349bd5a5e1461054a5780634a62bb65146105755780634fbee193146105a05780636a486a8e146105dd5780636ddd171314610608576102d4565b80631a8145bb116102865780631a8145bb146103fd5780631f3fed8f14610428578063203e727e1461045357806323b872dd1461047c5780632d5a5d34146104b9578063313ce567146104e2576102d4565b806306fdde03146102d9578063095ea7b31461030457806310d5de53146103415780631694505e1461037e57806318160ddd146103a95780631816467f146103d4576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bc9565b6040516102fb91906132cc565b60405180910390f35b34801561031057600080fd5b5061032b60048036038101906103269190613387565b610c5b565b60405161033891906133e2565b60405180910390f35b34801561034d57600080fd5b50610368600480360381019061036391906133fd565b610c7e565b60405161037591906133e2565b60405180910390f35b34801561038a57600080fd5b50610393610c9e565b6040516103a09190613489565b60405180910390f35b3480156103b557600080fd5b506103be610cc2565b6040516103cb91906134b3565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f691906133fd565b610ccc565b005b34801561040957600080fd5b50610412610d94565b60405161041f91906134b3565b60405180910390f35b34801561043457600080fd5b5061043d610d9a565b60405161044a91906134b3565b60405180910390f35b34801561045f57600080fd5b5061047a600480360381019061047591906134ce565b610da0565b005b34801561048857600080fd5b506104a3600480360381019061049e91906134fb565b610e3b565b6040516104b091906133e2565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db919061357a565b610e6a565b005b3480156104ee57600080fd5b506104f7610ecd565b60405161050491906135d6565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190613387565b610ed6565b60405161054191906133e2565b60405180910390f35b34801561055657600080fd5b5061055f610f0d565b60405161056c9190613600565b60405180910390f35b34801561058157600080fd5b5061058a610f31565b60405161059791906133e2565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c291906133fd565b610f44565b6040516105d491906133e2565b60405180910390f35b3480156105e957600080fd5b506105f2610f9a565b6040516105ff91906134b3565b60405180910390f35b34801561061457600080fd5b5061061d610fa0565b60405161062a91906133e2565b60405180910390f35b34801561063f57600080fd5b5061065a600480360381019061065591906133fd565b610fb3565b60405161066791906134b3565b60405180910390f35b34801561067c57600080fd5b50610685610ffb565b005b34801561069357600080fd5b5061069c61100f565b6040516106a991906133e2565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d4919061357a565b61103b565b005b3480156106e757600080fd5b506106f061109e565b6040516106fd91906134b3565b60405180910390f35b34801561071257600080fd5b5061071b6110a4565b005b34801561072957600080fd5b506107326110eb565b60405161073f9190613600565b60405180910390f35b34801561075457600080fd5b5061075d611115565b60405161076a91906134b3565b60405180910390f35b34801561077f57600080fd5b5061079a6004803603810190610795919061361b565b61111b565b005b3480156107a857600080fd5b506107b1611140565b6040516107be91906132cc565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e9919061357a565b6111d2565b005b3480156107fc57600080fd5b50610805611276565b60405161081291906134b3565b60405180910390f35b34801561082757600080fd5b5061083061127c565b60405161083d91906134b3565b60405180910390f35b34801561085257600080fd5b5061085b611282565b60405161086891906134b3565b60405180910390f35b34801561087d57600080fd5b5061089860048036038101906108939190613387565b611288565b6040516108a591906133e2565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d09190613387565b6112ff565b6040516108e291906133e2565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d91906133fd565b611322565b005b34801561092057600080fd5b5061093b600480360381019061093691906133fd565b6113ea565b60405161094891906133e2565b60405180910390f35b34801561095d57600080fd5b5061096661140a565b60405161097391906133e2565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e919061357a565b61141d565b005b3480156109b157600080fd5b506109cc60048036038101906109c791906134ce565b6114ce565b005b3480156109da57600080fd5b506109e3611569565b6040516109f091906133e2565b60405180910390f35b348015610a0557600080fd5b50610a0e61157c565b604051610a1b91906134b3565b60405180910390f35b348015610a3057600080fd5b50610a4b6004803603810190610a4691906134ce565b611582565b604051610a5891906133e2565b60405180910390f35b348015610a6d57600080fd5b50610a76611663565b604051610a8391906134b3565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae9190613648565b611669565b604051610ac091906134b3565b60405180910390f35b348015610ad557600080fd5b50610ade6116f0565b604051610aeb91906134b3565b60405180910390f35b348015610b0057600080fd5b50610b096116f6565b604051610b1691906133e2565b60405180910390f35b348015610b2b57600080fd5b50610b34611722565b604051610b4191906134b3565b60405180910390f35b348015610b5657600080fd5b50610b716004803603810190610b6c91906133fd565b611728565b005b348015610b7f57600080fd5b50610b886117ab565b604051610b9591906134b3565b60405180910390f35b348015610baa57600080fd5b50610bb36117b1565b604051610bc091906134b3565b60405180910390f35b606060038054610bd8906136b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c04906136b7565b8015610c515780601f10610c2657610100808354040283529160200191610c51565b820191906000526020600020905b815481529060010190602001808311610c3457829003601f168201915b5050505050905090565b600080610c666117b7565b9050610c738185856117bf565b600191505092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610cd4611988565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610da8611988565b670de0b6b3a76400006103e86001610dbe610cc2565b610dc89190613717565b610dd29190613788565b610ddc9190613788565b811015610e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e159061382b565b60405180910390fd5b670de0b6b3a764000081610e329190613717565b60088190555050565b600080610e466117b7565b9050610e53858285611a06565b610e5e858585611a92565b60019150509392505050565b610e72611988565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b600080610ee16117b7565b9050610f02818585610ef38589611669565b610efd919061384b565b6117bf565b600191505092915050565b7f000000000000000000000000ed49ffc86d9c68ef4b14c53188041b50429af7ba81565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611003611988565b61100d600061280c565b565b6000611019611988565b6000600b60006101000a81548160ff0219169083151502179055506001905090565b611043611988565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b6110ac611988565b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b611123611988565b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461114f906136b7565b80601f016020809104026020016040519081016040528092919081815260200182805461117b906136b7565b80156111c85780601f1061119d576101008083540402835291602001916111c8565b820191906000526020600020905b8154815290600101906020018083116111ab57829003601f168201915b5050505050905090565b6111da611988565b7f000000000000000000000000ed49ffc86d9c68ef4b14c53188041b50429af7ba73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f906138f1565b60405180910390fd5b61127282826128d2565b5050565b60135481565b601a5481565b60175481565b6000806112936117b7565b905060006112a18286611669565b9050838110156112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd90613983565b60405180910390fd5b6112f382868684036117bf565b60019250505092915050565b60008061130a6117b7565b9050611317818585611a92565b600191505092915050565b61132a611988565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611425611988565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516114c291906133e2565b60405180910390a25050565b6114d6611988565b670de0b6b3a76400006103e860056114ec610cc2565b6114f69190613717565b6115009190613788565b61150a9190613788565b81101561154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390613a15565b60405180910390fd5b670de0b6b3a7640000816115609190613717565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b600061158c611988565b620186a0600161159a610cc2565b6115a49190613717565b6115ae9190613788565b8210156115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e790613aa7565b60405180910390fd5b6103e860056115fd610cc2565b6116079190613717565b6116119190613788565b821115611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90613b39565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611700611988565b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b611730611988565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361179f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179690613bcb565b60405180910390fd5b6117a88161280c565b50565b60165481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590613c5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490613cef565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161197b91906134b3565b60405180910390a3505050565b6119906117b7565b73ffffffffffffffffffffffffffffffffffffffff166119ae6110eb565b73ffffffffffffffffffffffffffffffffffffffff1614611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90613d5b565b60405180910390fd5b565b6000611a128484611669565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a8c5781811015611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7590613dc7565b60405180910390fd5b611a8b84848484036117bf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af890613e59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6790613eeb565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611c145750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4a90613f7d565b60405180910390fd5b60008103611c6c57611c6783836000612973565b612807565b600b60009054906101000a900460ff161561232f57611c896110eb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611cf75750611cc76110eb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d305750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d6a575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d835750600560149054906101000a900460ff16155b1561232e57600b60019054906101000a900460ff16611e7d57601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e3d5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7390613fe9565b60405180910390fd5b5b600f60009054906101000a900460ff161561204557611e9a6110eb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611f2157507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f7957507f000000000000000000000000ed49ffc86d9c68ef4b14c53188041b50429af7ba73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156120445743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff6906140a1565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120e85750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561218f57600854811115612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990614133565b60405180910390fd5b600a5461213e83610fb3565b82612149919061384b565b111561218a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121819061419f565b60405180910390fd5b61232d565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122325750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122815760085481111561227c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227390614231565b60405180910390fd5b61232c565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661232b57600a546122de83610fb3565b826122e9919061384b565b111561232a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123219061419f565b60405180910390fd5b5b5b5b5b5b600061233a30610fb3565b90506000600954821015905080801561235f5750600b60029054906101000a900460ff165b80156123785750600560149054906101000a900460ff16155b80156123ce5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124245750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561247a5750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124be576001600560146101000a81548160ff0219169083151502179055506124a2612bf2565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125745750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561257e57600090505b600081156127f757601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125e157506000601454115b156126ae5761260e606461260060145488612ed990919063ffffffff16565b612eef90919063ffffffff16565b9050601454601654826126219190613717565b61262b9190613788565b6019600082825461263c919061384b565b92505081905550601454601754826126549190613717565b61265e9190613788565b601a600082825461266f919061384b565b92505081905550601454601554826126879190613717565b6126919190613788565b601860008282546126a2919061384b565b925050819055506127d3565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561270957506000601054115b156127d257612736606461272860105488612ed990919063ffffffff16565b612eef90919063ffffffff16565b9050601054601254826127499190613717565b6127539190613788565b60196000828254612764919061384b565b925050819055506010546013548261277c9190613717565b6127869190613788565b601a6000828254612797919061384b565b92505081905550601054601154826127af9190613717565b6127b99190613788565b601860008282546127ca919061384b565b925050819055505b5b60008111156127e8576127e7873083612973565b5b80856127f49190614251565b94505b612802878787612973565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d990613e59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4890613eeb565b60405180910390fd5b612a5c838383612f05565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad9906142f7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b75919061384b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612bd991906134b3565b60405180910390a3612bec848484612f0a565b50505050565b6000612bfd30610fb3565b90506000601a54601854601954612c14919061384b565b612c1e919061384b565b9050600080831480612c305750600082145b15612c3d57505050612ed7565b6014600954612c4c9190613717565b831115612c65576014600954612c629190613717565b92505b600060028360195486612c789190613717565b612c829190613788565b612c8c9190613788565b90506000612ca38286612f0f90919063ffffffff16565b90506000479050612cb382612f25565b6000612cc88247612f0f90919063ffffffff16565b90506000612cf387612ce560185485612ed990919063ffffffff16565b612eef90919063ffffffff16565b90506000612d1e88612d10601a5486612ed990919063ffffffff16565b612eef90919063ffffffff16565b90506000818385612d2f9190614251565b612d399190614251565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612d9990614348565b60006040518083038185875af1925050503d8060008114612dd6576040519150601f19603f3d011682016040523d82523d6000602084013e612ddb565b606091505b505080985050600087118015612df15750600081115b15612e3e57612e008782613162565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051612e359392919061435d565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612e8490614348565b60006040518083038185875af1925050503d8060008114612ec1576040519150601f19603f3d011682016040523d82523d6000602084013e612ec6565b606091505b505080985050505050505050505050505b565b60008183612ee79190613717565b905092915050565b60008183612efd9190613788565b905092915050565b505050565b505050565b60008183612f1d9190614251565b905092915050565b6000600267ffffffffffffffff811115612f4257612f41614394565b5b604051908082528060200260200182016040528015612f705781602001602082028036833780820191505090505b5090503081600081518110612f8857612f876143c3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561302d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130519190614407565b81600181518110613065576130646143c3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506130ca307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117bf565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161312c95949392919061452d565b600060405180830381600087803b15801561314657600080fd5b505af115801561315a573d6000803e3d6000fd5b505050505050565b61318d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117bf565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b81526004016131f296959493929190614587565b60606040518083038185885af1158015613210573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061323591906145fd565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561327657808201518184015260208101905061325b565b60008484015250505050565b6000601f19601f8301169050919050565b600061329e8261323c565b6132a88185613247565b93506132b8818560208601613258565b6132c181613282565b840191505092915050565b600060208201905081810360008301526132e68184613293565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061331e826132f3565b9050919050565b61332e81613313565b811461333957600080fd5b50565b60008135905061334b81613325565b92915050565b6000819050919050565b61336481613351565b811461336f57600080fd5b50565b6000813590506133818161335b565b92915050565b6000806040838503121561339e5761339d6132ee565b5b60006133ac8582860161333c565b92505060206133bd85828601613372565b9150509250929050565b60008115159050919050565b6133dc816133c7565b82525050565b60006020820190506133f760008301846133d3565b92915050565b600060208284031215613413576134126132ee565b5b60006134218482850161333c565b91505092915050565b6000819050919050565b600061344f61344a613445846132f3565b61342a565b6132f3565b9050919050565b600061346182613434565b9050919050565b600061347382613456565b9050919050565b61348381613468565b82525050565b600060208201905061349e600083018461347a565b92915050565b6134ad81613351565b82525050565b60006020820190506134c860008301846134a4565b92915050565b6000602082840312156134e4576134e36132ee565b5b60006134f284828501613372565b91505092915050565b600080600060608486031215613514576135136132ee565b5b60006135228682870161333c565b93505060206135338682870161333c565b925050604061354486828701613372565b9150509250925092565b613557816133c7565b811461356257600080fd5b50565b6000813590506135748161354e565b92915050565b60008060408385031215613591576135906132ee565b5b600061359f8582860161333c565b92505060206135b085828601613565565b9150509250929050565b600060ff82169050919050565b6135d0816135ba565b82525050565b60006020820190506135eb60008301846135c7565b92915050565b6135fa81613313565b82525050565b600060208201905061361560008301846135f1565b92915050565b600060208284031215613631576136306132ee565b5b600061363f84828501613565565b91505092915050565b6000806040838503121561365f5761365e6132ee565b5b600061366d8582860161333c565b925050602061367e8582860161333c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136cf57607f821691505b6020821081036136e2576136e1613688565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061372282613351565b915061372d83613351565b925082820261373b81613351565b91508282048414831517613752576137516136e8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061379382613351565b915061379e83613351565b9250826137ae576137ad613759565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613815602f83613247565b9150613820826137b9565b604082019050919050565b6000602082019050818103600083015261384481613808565b9050919050565b600061385682613351565b915061386183613351565b9250828201905080821115613879576138786136e8565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006138db603983613247565b91506138e68261387f565b604082019050919050565b6000602082019050818103600083015261390a816138ce565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061396d602583613247565b915061397882613911565b604082019050919050565b6000602082019050818103600083015261399c81613960565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006139ff602483613247565b9150613a0a826139a3565b604082019050919050565b60006020820190508181036000830152613a2e816139f2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613a91603583613247565b9150613a9c82613a35565b604082019050919050565b60006020820190508181036000830152613ac081613a84565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613b23603483613247565b9150613b2e82613ac7565b604082019050919050565b60006020820190508181036000830152613b5281613b16565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bb5602683613247565b9150613bc082613b59565b604082019050919050565b60006020820190508181036000830152613be481613ba8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c47602483613247565b9150613c5282613beb565b604082019050919050565b60006020820190508181036000830152613c7681613c3a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cd9602283613247565b9150613ce482613c7d565b604082019050919050565b60006020820190508181036000830152613d0881613ccc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d45602083613247565b9150613d5082613d0f565b602082019050919050565b60006020820190508181036000830152613d7481613d38565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613db1601d83613247565b9150613dbc82613d7b565b602082019050919050565b60006020820190508181036000830152613de081613da4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613e43602583613247565b9150613e4e82613de7565b604082019050919050565b60006020820190508181036000830152613e7281613e36565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613ed5602383613247565b9150613ee082613e79565b604082019050919050565b60006020820190508181036000830152613f0481613ec8565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000613f67603183613247565b9150613f7282613f0b565b604082019050919050565b60006020820190508181036000830152613f9681613f5a565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613fd3601683613247565b9150613fde82613f9d565b602082019050919050565b6000602082019050818103600083015261400281613fc6565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061408b604983613247565b915061409682614009565b606082019050919050565b600060208201905081810360008301526140ba8161407e565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061411d603583613247565b9150614128826140c1565b604082019050919050565b6000602082019050818103600083015261414c81614110565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614189601383613247565b915061419482614153565b602082019050919050565b600060208201905081810360008301526141b88161417c565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061421b603683613247565b9150614226826141bf565b604082019050919050565b6000602082019050818103600083015261424a8161420e565b9050919050565b600061425c82613351565b915061426783613351565b925082820390508181111561427f5761427e6136e8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006142e1602683613247565b91506142ec82614285565b604082019050919050565b60006020820190508181036000830152614310816142d4565b9050919050565b600081905092915050565b50565b6000614332600083614317565b915061433d82614322565b600082019050919050565b600061435382614325565b9150819050919050565b600060608201905061437260008301866134a4565b61437f60208301856134a4565b61438c60408301846134a4565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061440181613325565b92915050565b60006020828403121561441d5761441c6132ee565b5b600061442b848285016143f2565b91505092915050565b6000819050919050565b600061445961445461444f84614434565b61342a565b613351565b9050919050565b6144698161443e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6144a481613313565b82525050565b60006144b6838361449b565b60208301905092915050565b6000602082019050919050565b60006144da8261446f565b6144e4818561447a565b93506144ef8361448b565b8060005b8381101561452057815161450788826144aa565b9750614512836144c2565b9250506001810190506144f3565b5085935050505092915050565b600060a08201905061454260008301886134a4565b61454f6020830187614460565b818103604083015261456181866144cf565b905061457060608301856135f1565b61457d60808301846134a4565b9695505050505050565b600060c08201905061459c60008301896135f1565b6145a960208301886134a4565b6145b66040830187614460565b6145c36060830186614460565b6145d060808301856135f1565b6145dd60a08301846134a4565b979650505050505050565b6000815190506145f78161335b565b92915050565b600080600060608486031215614616576146156132ee565b5b6000614624868287016145e8565b9350506020614635868287016145e8565b9250506040614646868287016145e8565b915050925092509256fea2646970667358221220254d4cd21e5ebff381265ef13b0ebf5964e8eebe582d9a943621df298dafdae564736f6c63430008110033
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.