ERC-20
Overview
Max Total Supply
1,000,000,000 SHIBS
Holders
74
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.798454438654123973 SHIBSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SHIBS
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** WEBSITE: https://shibasmiles.net/ TWITTER: https://x.com/ShibaaSmileS007?s=09 TELEGRAM: https://t.me/ShibaSmileS */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; pragma experimental ABIEncoderV2; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; //import "hardhat/console.sol"; contract SHIBS is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0x000000000000000000000000000000000000dEaD); bool private swapping; uint256 public maxTransactionAmount; uint256 public maxWallet; uint256 public swapTokensAtAmount; uint256 public swapTokensAtMultiplier; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public blacklistRenounced = false; // Anti-bot and anti-whale mappings and variables mapping(address => bool) blacklisted; struct Taxes { uint256 corruption; uint256 liquidity; uint256 cooking; } Taxes public taxes = Taxes(2, 0, 2); Taxes public sellTaxes = Taxes(2, 0, 2); uint256 public buyTotalFees; uint256 public sellTotalFees; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; address private marketingWallet; address private devWallet; /******************/ // 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; bool public preListingPhase = true; mapping(address => bool) public preListingTransferrable; 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); constructor() ERC20("ShibaSmileS", "SHIBS") { marketingWallet = address(0xd8CD0911c816C096A1eE54E9B4009d516E80838c); devWallet = address(0x69261126743B05a6cf4E60e57f40715DCfd7ed60); uint256 totalSupply = 1 * 1e9 * 1e18; // 1 billions maxTransactionAmount = totalSupply * 20 / 1000; // 2% maxtxn maxWallet = totalSupply * 20 / 1000; // 2% maxw swapTokensAtMultiplier = 20; //this set max swap amount to 20 times the swapTokensAtAmount swapTokensAtAmount = totalSupply * 5 / 10000; // 0.05% swapw address routerAddress_ = address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(routerAddress_); address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); excludeFromMaxTransaction(address(uniswapV2Pair), true); excludeFromMaxTransaction(address(routerAddress_), true); buyTotalFees = taxes.corruption + taxes.liquidity + taxes.cooking; sellTotalFees = sellTaxes.corruption + sellTaxes.liquidity + sellTaxes.cooking; // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromFees(marketingWallet, true); excludeFromFees(devWallet, true); excludeFromMaxTransaction(marketingWallet, true); excludeFromMaxTransaction(devWallet, true); preListingTransferrable[owner()] = true; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; preListingPhase = false; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = 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 UpdateBuyTaxes( uint256 _corruption, uint256 _liquidity, uint256 _cooking ) external onlyOwner { taxes = Taxes(_corruption, _liquidity, _cooking); buyTotalFees = taxes.corruption + taxes.liquidity + taxes.cooking; } function SetSellTaxes( uint256 _corruption, uint256 _liquidity, uint256 _cooking ) external onlyOwner { sellTaxes = Taxes(_corruption, _liquidity, _cooking); sellTotalFees = sellTaxes.corruption + sellTaxes.liquidity + sellTaxes.cooking; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 10) / 1000) / 1e18, "Cannot set maxWallet lower than 1.0%" ); 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 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 newWallet) external onlyOwner { emit MarketingWalletUpdated(newWallet, marketingWallet); marketingWallet = newWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit DevWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns (bool) { return blacklisted[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklisted[from],"Sender blacklisted"); require(!blacklisted[to],"Receiver blacklisted"); if (preListingPhase) { require(preListingTransferrable[from], "Not authorized to transfer pre-listing."); } if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && //true only during token sell or user wallet to user wallet transfer !_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 * sellTaxes.liquidity) / sellTotalFees; tokensForDev += (fees * sellTaxes.cooking) / sellTotalFees; tokensForMarketing += (fees * sellTaxes.corruption) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * taxes.liquidity) / buyTotalFees; tokensForDev += (fees * taxes.cooking) / buyTotalFees; tokensForMarketing += (fees * taxes.corruption) / 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 owner(), 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 * swapTokensAtMultiplier){ contractBalance = swapTokensAtAmount * swapTokensAtMultiplier; } 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 ethForCorruption = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForCooking = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForCorruption - ethForCooking; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success,) = address(devWallet).call{value: ethForCooking}(""); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(marketingWallet).call{value: address(this).balance}(""); } function withdrawStuckToken() external onlyOwner { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } function withdrawStuckToken(address _token, address _to) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{ value: address(this).balance } (""); require(success); } // @dev team renounce blacklist commands function renounceBlacklist() public onlyOwner { blacklistRenounced = true; } function blacklist(address _addr) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( _addr != address(uniswapV2Pair) && _addr != address(uniswapV2Router), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[_addr] = true; } // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community function blacklistLiquidityPool(address lpAddress) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( lpAddress != address(uniswapV2Pair) && lpAddress != address(uniswapV2Router), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[lpAddress] = true; } // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road function unblacklist(address _addr) public onlyOwner { blacklisted[_addr] = false; } function setPreListingTransferable(address _addr, bool isAuthorized) public onlyOwner { preListingTransferrable[_addr] = isAuthorized; excludeFromFees(_addr, isAuthorized); excludeFromMaxTransaction(_addr, isAuthorized); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
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; }
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); }
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; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","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"},{"inputs":[{"internalType":"uint256","name":"_corruption","type":"uint256"},{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_cooking","type":"uint256"}],"name":"SetSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_corruption","type":"uint256"},{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_cooking","type":"uint256"}],"name":"UpdateBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"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":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preListingPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preListingTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"corruption","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"cooking","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":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreListingTransferable","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":"swapTokensAtMultiplier","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":"taxes","outputs":[{"internalType":"uint256","name":"corruption","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"cooking","type":"uint256"}],"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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","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"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600a5f6101000a81548160ff0219169083151502179055505f600a60016101000a81548160ff0219169083151502179055505f600a60026101000a81548160ff0219169083151502179055505f600a60036101000a81548160ff0219169083151502179055506040518060600160405280600281526020015f81526020016002815250600c5f820151815f0155602082015181600101556040820151816002015550506040518060600160405280600281526020015f81526020016002815250600f5f820151815f0155602082015181600101556040820151816002015550506001601c5f6101000a81548160ff0219169083151502179055503480156200010c575f80fd5b506040518060400160405280600b81526020017f5368696261536d696c65530000000000000000000000000000000000000000008152506040518060400160405280600581526020017f534849425300000000000000000000000000000000000000000000000000000081525081600390816200018a919062000e63565b5080600490816200019c919062000e63565b505050620001bf620001b36200074f60201b60201c565b6200075660201b60201c565b73d8cd0911c816c096a1ee54e9b4009d516e80838c60175f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507369261126743b05a6cf4e60e57f40715dcfd7ed6060185f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f6b033b2e3c9fd0803ce800000090506103e860148262000289919062000f74565b62000295919062000feb565b6006819055506103e8601482620002ad919062000f74565b620002b9919062000feb565b6007819055506014600981905550612710600582620002d9919062000f74565b620002e5919062000feb565b6008819055505f737a250d5630b4cf539739df2c5dacb4c659f2488d90505f8190505f8173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000352573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000378919062001087565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003de573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000404919062001087565b6040518363ffffffff1660e01b815260040162000423929190620010c8565b6020604051808303815f875af115801562000440573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000466919062001087565b90508173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620004e560a05160016200081960201b60201c565b620004fa60a0516001620008b760201b60201c565b6200050d836001620008b760201b60201c565b600c60020154600c60010154600c5f01546200052a9190620010f3565b620005369190620010f3565b601281905550600f60020154600f60010154600f5f0154620005599190620010f3565b620005659190620010f3565b6013819055506200058d6200057f6200091f60201b60201c565b60016200094760201b60201c565b620005a03060016200094760201b60201c565b620005b561dead60016200094760201b60201c565b620005d7620005c96200091f60201b60201c565b6001620008b760201b60201c565b620005ea306001620008b760201b60201c565b620005ff61dead6001620008b760201b60201c565b6200063360175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200094760201b60201c565b6200066760185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200094760201b60201c565b6200069b60175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008b760201b60201c565b620006cf60185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008b760201b60201c565b6001601d5f620006e46200091f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620007453385620009ff60201b60201c565b505050506200127c565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b620008c762000b6460201b60201c565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200095762000b6460201b60201c565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009f3919062001149565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a6790620011c2565b60405180910390fd5b62000a835f838362000bf560201b60201c565b8060025f82825462000a969190620010f3565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b459190620011f3565b60405180910390a362000b605f838362000bfa60201b60201c565b5050565b62000b746200074f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000b9a6200091f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000bf3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bea906200125c565b60405180910390fd5b565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000c7b57607f821691505b60208210810362000c915762000c9062000c36565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000cf57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cb8565b62000d01868362000cb8565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000d4b62000d4562000d3f8462000d19565b62000d22565b62000d19565b9050919050565b5f819050919050565b62000d668362000d2b565b62000d7e62000d758262000d52565b84845462000cc4565b825550505050565b5f90565b62000d9462000d86565b62000da181848462000d5b565b505050565b5b8181101562000dc85762000dbc5f8262000d8a565b60018101905062000da7565b5050565b601f82111562000e175762000de18162000c97565b62000dec8462000ca9565b8101602085101562000dfc578190505b62000e1462000e0b8562000ca9565b83018262000da6565b50505b505050565b5f82821c905092915050565b5f62000e395f198460080262000e1c565b1980831691505092915050565b5f62000e53838362000e28565b9150826002028217905092915050565b62000e6e8262000bff565b67ffffffffffffffff81111562000e8a5762000e8962000c09565b5b62000e96825462000c63565b62000ea382828562000dcc565b5f60209050601f83116001811462000ed9575f841562000ec4578287015190505b62000ed0858262000e46565b86555062000f3f565b601f19841662000ee98662000c97565b5f5b8281101562000f125784890151825560018201915060208501945060208101905062000eeb565b8683101562000f32578489015162000f2e601f89168262000e28565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000f808262000d19565b915062000f8d8362000d19565b925082820262000f9d8162000d19565b9150828204841483151762000fb75762000fb662000f47565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000ff78262000d19565b9150620010048362000d19565b92508262001017576200101662000fbe565b5b828204905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620010518262001026565b9050919050565b620010638162001045565b81146200106e575f80fd5b50565b5f81519050620010818162001058565b92915050565b5f602082840312156200109f576200109e62001022565b5b5f620010ae8482850162001071565b91505092915050565b620010c28162001045565b82525050565b5f604082019050620010dd5f830185620010b7565b620010ec6020830184620010b7565b9392505050565b5f620010ff8262000d19565b91506200110c8362000d19565b925082820190508082111562001127576200112662000f47565b5b92915050565b5f8115159050919050565b62001143816200112d565b82525050565b5f6020820190506200115e5f83018462001138565b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620011aa601f8362001164565b9150620011b78262001174565b602082019050919050565b5f6020820190508181035f830152620011db816200119c565b9050919050565b620011ed8162000d19565b82525050565b5f602082019050620012085f830184620011e2565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6200124460208362001164565b915062001251826200120e565b602082019050919050565b5f6020820190508181035f830152620012758162001236565b9050919050565b60805160a05161511b620012e45f395f81816110d10152818161167501528181611d99015261204f01525f8181610eb201528181611df0015281816120a601528181613887015281816139660152818161398d01528181613a230152613a4a015261511b5ff3fe60806040526004361061038f575f3560e01c80637ca8448a116101db578063c024666811610101578063e2f456051161009f578063f66895a31161006e578063f66895a314610d0a578063f8b45b0514610d36578063f9f92be414610d60578063fe575a8714610d8857610396565b8063e2f4560514610c66578063e82493a914610c90578063f0b89f0a14610cb8578063f2fde38b14610ce257610396565b8063d257b34f116100db578063d257b34f14610b9c578063d85ba06314610bd8578063dd62ed3e14610c02578063e19b282314610c3e57610396565b8063c024666814610b22578063c18bc19514610b4a578063c8c8ebe414610b7257610396565b80639d282cd611610179578063aacebbe311610148578063aacebbe314610a6c578063b62496f514610a94578063bbc0c74214610ad0578063bc205ad314610afa57610396565b80639d282cd6146109a25780639fccce32146109ca578063a457c2d7146109f4578063a9059cbb14610a3057610396565b80638da5cb5b116101b55780638da5cb5b146108fe578063924de9b71461092857806395d89b41146109505780639a7a23d61461097a57610396565b80637ca8448a146108aa57806384dd4452146108d25780638a8c523c146108e857610396565b80633dc599ff116102c05780636a486a8e1161025e578063728f8eea1161022d578063728f8eea14610804578063751039fc146108305780637571336a1461085a57806375e3661e1461088257610396565b80636a486a8e1461075e5780636ddd17131461078857806370a08231146107b2578063715018a6146107ee57610396565b80634e736f221161029a5780634e736f22146106ba5780634fbee193146106e25780635f1893611461071e5780636490015c1461073457610396565b80633dc599ff1461063c57806349bd5a5e146106665780634a62bb651461069057610396565b80631a8145bb1161032d57806323b872dd1161030757806323b872dd1461057057806327c8f835146105ac578063313ce567146105d6578063395093511461060057610396565b80631a8145bb146104f45780631f3fed8f1461051e578063203e727e1461054857610396565b806310d5de531161036957806310d5de531461043c5780631694505e1461047857806318160ddd146104a25780631816467f146104cc57610396565b806304fa50c21461039a57806306fdde03146103d6578063095ea7b31461040057610396565b3661039657005b5f80fd5b3480156103a5575f80fd5b506103c060048036038101906103bb9190613b59565b610dc4565b6040516103cd9190613b9e565b60405180910390f35b3480156103e1575f80fd5b506103ea610de1565b6040516103f79190613c41565b60405180910390f35b34801561040b575f80fd5b5061042660048036038101906104219190613c94565b610e71565b6040516104339190613b9e565b60405180910390f35b348015610447575f80fd5b50610462600480360381019061045d9190613b59565b610e93565b60405161046f9190613b9e565b60405180910390f35b348015610483575f80fd5b5061048c610eb0565b6040516104999190613d2d565b60405180910390f35b3480156104ad575f80fd5b506104b6610ed4565b6040516104c39190613d55565b60405180910390f35b3480156104d7575f80fd5b506104f260048036038101906104ed9190613b59565b610edd565b005b3480156104ff575f80fd5b50610508610fa3565b6040516105159190613d55565b60405180910390f35b348015610529575f80fd5b50610532610fa9565b60405161053f9190613d55565b60405180910390f35b348015610553575f80fd5b5061056e60048036038101906105699190613d6e565b610faf565b005b34801561057b575f80fd5b5061059660048036038101906105919190613d99565b61104a565b6040516105a39190613b9e565b60405180910390f35b3480156105b7575f80fd5b506105c0611078565b6040516105cd9190613df8565b60405180910390f35b3480156105e1575f80fd5b506105ea61107e565b6040516105f79190613e2c565b60405180910390f35b34801561060b575f80fd5b5061062660048036038101906106219190613c94565b611086565b6040516106339190613b9e565b60405180910390f35b348015610647575f80fd5b506106506110bc565b60405161065d9190613b9e565b60405180910390f35b348015610671575f80fd5b5061067a6110cf565b6040516106879190613df8565b60405180910390f35b34801561069b575f80fd5b506106a46110f3565b6040516106b19190613b9e565b60405180910390f35b3480156106c5575f80fd5b506106e060048036038101906106db9190613e45565b611105565b005b3480156106ed575f80fd5b5061070860048036038101906107039190613b59565b611179565b6040516107159190613b9e565b60405180910390f35b348015610729575f80fd5b506107326111cb565b005b34801561073f575f80fd5b506107486111f0565b6040516107559190613b9e565b60405180910390f35b348015610769575f80fd5b50610772611202565b60405161077f9190613d55565b60405180910390f35b348015610793575f80fd5b5061079c611208565b6040516107a99190613b9e565b60405180910390f35b3480156107bd575f80fd5b506107d860048036038101906107d39190613b59565b61121b565b6040516107e59190613d55565b60405180910390f35b3480156107f9575f80fd5b50610802611260565b005b34801561080f575f80fd5b50610818611273565b60405161082793929190613e95565b60405180910390f35b34801561083b575f80fd5b5061084461128a565b6040516108519190613b9e565b60405180910390f35b348015610865575f80fd5b50610880600480360381019061087b9190613ef4565b6112b3565b005b34801561088d575f80fd5b506108a860048036038101906108a39190613b59565b611313565b005b3480156108b5575f80fd5b506108d060048036038101906108cb9190613b59565b611372565b005b3480156108dd575f80fd5b506108e66113ef565b005b3480156108f3575f80fd5b506108fc611535565b005b348015610909575f80fd5b5061091261158e565b60405161091f9190613df8565b60405180910390f35b348015610933575f80fd5b5061094e60048036038101906109499190613f32565b6115b6565b005b34801561095b575f80fd5b506109646115db565b6040516109719190613c41565b60405180910390f35b348015610985575f80fd5b506109a0600480360381019061099b9190613ef4565b61166b565b005b3480156109ad575f80fd5b506109c860048036038101906109c39190613e45565b61170f565b005b3480156109d5575f80fd5b506109de611783565b6040516109eb9190613d55565b60405180910390f35b3480156109ff575f80fd5b50610a1a6004803603810190610a159190613c94565b611789565b604051610a279190613b9e565b60405180910390f35b348015610a3b575f80fd5b50610a566004803603810190610a519190613c94565b6117fe565b604051610a639190613b9e565b60405180910390f35b348015610a77575f80fd5b50610a926004803603810190610a8d9190613b59565b611820565b005b348015610a9f575f80fd5b50610aba6004803603810190610ab59190613b59565b6118e6565b604051610ac79190613b9e565b60405180910390f35b348015610adb575f80fd5b50610ae4611903565b604051610af19190613b9e565b60405180910390f35b348015610b05575f80fd5b50610b206004803603810190610b1b9190613f5d565b611916565b005b348015610b2d575f80fd5b50610b486004803603810190610b439190613ef4565b611a88565b005b348015610b55575f80fd5b50610b706004803603810190610b6b9190613d6e565b611b36565b005b348015610b7d575f80fd5b50610b86611bd1565b604051610b939190613d55565b60405180910390f35b348015610ba7575f80fd5b50610bc26004803603810190610bbd9190613d6e565b611bd7565b604051610bcf9190613b9e565b60405180910390f35b348015610be3575f80fd5b50610bec611cb7565b604051610bf99190613d55565b60405180910390f35b348015610c0d575f80fd5b50610c286004803603810190610c239190613f5d565b611cbd565b604051610c359190613d55565b60405180910390f35b348015610c49575f80fd5b50610c646004803603810190610c5f9190613b59565b611d3f565b005b348015610c71575f80fd5b50610c7a611ed6565b604051610c879190613d55565b60405180910390f35b348015610c9b575f80fd5b50610cb66004803603810190610cb19190613ef4565b611edc565b005b348015610cc3575f80fd5b50610ccc611f50565b604051610cd99190613d55565b60405180910390f35b348015610ced575f80fd5b50610d086004803603810190610d039190613b59565b611f56565b005b348015610d15575f80fd5b50610d1e611fd8565b604051610d2d93929190613e95565b60405180910390f35b348015610d41575f80fd5b50610d4a611fef565b604051610d579190613d55565b60405180910390f35b348015610d6b575f80fd5b50610d866004803603810190610d819190613b59565b611ff5565b005b348015610d93575f80fd5b50610dae6004803603810190610da99190613b59565b61218c565b604051610dbb9190613b9e565b60405180910390f35b601d602052805f5260405f205f915054906101000a900460ff1681565b606060038054610df090613fc8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1c90613fc8565b8015610e675780601f10610e3e57610100808354040283529160200191610e67565b820191905f5260205f20905b815481529060010190602001808311610e4a57829003601f168201915b5050505050905090565b5f80610e7b6121de565b9050610e888185856121e5565b600191505092915050565b601a602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b610ee56123a8565b60185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87160405160405180910390a38060185f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b60145481565b610fb76123a8565b670de0b6b3a76400006103e86005610fcd610ed4565b610fd79190614025565b610fe19190614093565b610feb9190614093565b81101561102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490614133565b60405180910390fd5b670de0b6b3a7640000816110419190614025565b60068190555050565b5f806110546121de565b9050611061858285612426565b61106c8585856124b1565b60019150509392505050565b61dead81565b5f6012905090565b5f806110906121de565b90506110b18185856110a28589611cbd565b6110ac9190614151565b6121e5565b600191505092915050565b600a60039054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a5f9054906101000a900460ff1681565b61110d6123a8565b604051806060016040528084815260200183815260200182815250600f5f820151815f01556020820151816001015560408201518160020155905050600f60020154600f60010154600f5f01546111649190614151565b61116e9190614151565b601381905550505050565b5f60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b6111d36123a8565b6001600a60036101000a81548160ff021916908315150217905550565b601c5f9054906101000a900460ff1681565b60135481565b600a60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6112686123a8565b6112715f613103565b565b600c805f0154908060010154908060020154905083565b5f6112936123a8565b5f600a5f6101000a81548160ff0219169083151502179055506001905090565b6112bb6123a8565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61131b6123a8565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b61137a6123a8565b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161139f906141b1565b5f6040518083038185875af1925050503d805f81146113d9576040519150601f19603f3d011682016040523d82523d5f602084013e6113de565b606091505b50509050806113eb575f80fd5b5050565b6113f76123a8565b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016114319190613df8565b602060405180830381865afa15801561144c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061147091906141d9565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016114ad929190614204565b6020604051808303815f875af11580156114c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114ed919061423f565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611531573d5f803e3d5ffd5b5050565b61153d6123a8565b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff0219169083151502179055505f601c5f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115be6123a8565b80600a60026101000a81548160ff02191690831515021790555050565b6060600480546115ea90613fc8565b80601f016020809104026020016040519081016040528092919081815260200182805461161690613fc8565b80156116615780601f1061163857610100808354040283529160200191611661565b820191905f5260205f20905b81548152906001019060200180831161164457829003601f168201915b5050505050905090565b6116736123a8565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f8906142da565b60405180910390fd5b61170b82826131c6565b5050565b6117176123a8565b604051806060016040528084815260200183815260200182815250600c5f820151815f01556020820151816001015560408201518160020155905050600c60020154600c60010154600c5f015461176e9190614151565b6117789190614151565b601281905550505050565b60165481565b5f806117936121de565b90505f6117a08286611cbd565b9050838110156117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc90614368565b60405180910390fd5b6117f282868684036121e5565b60019250505092915050565b5f806118086121de565b90506118158185856124b1565b600191505092915050565b6118286123a8565b60175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a38060175f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601b602052805f5260405f205f915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b61191e6123a8565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361198c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611983906143d0565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016119c69190613df8565b602060405180830381865afa1580156119e1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a0591906141d9565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611a42929190614204565b6020604051808303815f875af1158015611a5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a82919061423f565b50505050565b611a906123a8565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b2a9190613b9e565b60405180910390a25050565b611b3e6123a8565b670de0b6b3a76400006103e8600a611b54610ed4565b611b5e9190614025565b611b689190614093565b611b729190614093565b811015611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab9061445e565b60405180910390fd5b670de0b6b3a764000081611bc89190614025565b60078190555050565b60065481565b5f611be06123a8565b620186a06001611bee610ed4565b611bf89190614025565b611c029190614093565b821015611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b906144ec565b60405180910390fd5b6103e86005611c51610ed4565b611c5b9190614025565b611c659190614093565b821115611ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9e9061457a565b60405180910390fd5b8160088190555060019050919050565b60125481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611d476123a8565b600a60039054906101000a900460ff1615611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e90614608565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611e3f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b611e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7590614696565b60405180910390fd5b6001600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60085481565b611ee46123a8565b80601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611f428282611a88565b611f4c82826112b3565b5050565b60095481565b611f5e6123a8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390614724565b60405180910390fd5b611fd581613103565b50565b600f805f0154908060010154908060020154905083565b60075481565b611ffd6123a8565b600a60039054906101000a900460ff161561204d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204490614608565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156120f557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212b90614696565b60405180910390fd5b6001600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224a906147b2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b890614840565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161239b9190613d55565b60405180910390a3505050565b6123b06121de565b73ffffffffffffffffffffffffffffffffffffffff166123ce61158e565b73ffffffffffffffffffffffffffffffffffffffff1614612424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241b906148a8565b60405180910390fd5b565b5f6124318484611cbd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146124ab578181101561249d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249490614910565b60405180910390fd5b6124aa84848484036121e5565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361251f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125169061499e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361258d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258490614a2c565b60405180910390fd5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260e90614a94565b60405180910390fd5b600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156126a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269890614afc565b60405180910390fd5b601c5f9054906101000a900460ff161561273f57601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661273e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273590614b8a565b60405180910390fd5b5b5f81036127565761275183835f613264565b6130fe565b600a5f9054906101000a900460ff1615612c3a5761277261158e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127e057506127b061158e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561281857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612852575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561286b5750600560149054906101000a900460ff16155b15612c3957600a60019054906101000a900460ff1661295f5760195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061291f575060195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61295e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295590614bf2565b60405180910390fd5b5b601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156129fc5750601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612aa357600654811115612a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3d90614c80565b60405180910390fd5b600754612a528361121b565b82612a5d9190614151565b1115612a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9590614ce8565b60405180910390fd5b612c38565b601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612b405750601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612b8f57600654811115612b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8190614d76565b60405180910390fd5b612c37565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612c3657600754612be98361121b565b82612bf49190614151565b1115612c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2c90614ce8565b60405180910390fd5b5b5b5b5b5b5f612c443061121b565b90505f6008548210159050808015612c685750600a60029054906101000a900460ff165b8015612c815750600560149054906101000a900460ff16155b8015612cd45750601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612d27575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612d7a575060195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612dbd576001600560146101000a81548160ff021916908315150217905550612da26134d0565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612e6c575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612e75575f90505b5f81156130ee57601b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612ed357505f601354115b15612fa557612f006064612ef2601354886137a190919063ffffffff16565b6137b690919063ffffffff16565b9050601354600f6001015482612f169190614025565b612f209190614093565b60155f828254612f309190614151565b92505081905550601354600f6002015482612f4b9190614025565b612f559190614093565b60165f828254612f659190614151565b92505081905550601354600f5f015482612f7f9190614025565b612f899190614093565b60145f828254612f999190614151565b925050819055506130cb565b601b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612ffc57505f601254115b156130ca57613029606461301b601254886137a190919063ffffffff16565b6137b690919063ffffffff16565b9050601254600c600101548261303f9190614025565b6130499190614093565b60155f8282546130599190614151565b92505081905550601254600c60020154826130749190614025565b61307e9190614093565b60165f82825461308e9190614151565b92505081905550601254600c5f0154826130a89190614025565b6130b29190614093565b60145f8282546130c29190614151565b925050819055505b5b5f8111156130df576130de873083613264565b5b80856130eb9190614d94565b94505b6130f9878787613264565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036132d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c99061499e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333790614a2c565b60405180910390fd5b61334b8383836137cb565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156133ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c590614e37565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516134b79190613d55565b60405180910390a36134ca8484846137d0565b50505050565b5f6134da3061121b565b90505f6016546014546015546134f09190614151565b6134fa9190614151565b90505f8083148061350a57505f82145b156135175750505061379f565b6009546008546135279190614025565b8311156135415760095460085461353e9190614025565b92505b5f600283601554866135539190614025565b61355d9190614093565b6135679190614093565b90505f61357d82866137d590919063ffffffff16565b90505f47905061358c826137ea565b5f6135a082476137d590919063ffffffff16565b90505f6135ca876135bc601454856137a190919063ffffffff16565b6137b690919063ffffffff16565b90505f6135f4886135e6601654866137a190919063ffffffff16565b6137b690919063ffffffff16565b90505f8183856136049190614d94565b61360e9190614d94565b90505f6015819055505f6014819055505f60168190555060185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161366a906141b1565b5f6040518083038185875af1925050503d805f81146136a4576040519150601f19603f3d011682016040523d82523d5f602084013e6136a9565b606091505b5050809850505f871180156136bd57505f81115b1561370a576136cc8782613a1d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260155460405161370193929190613e95565b60405180910390a15b60175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161374f906141b1565b5f6040518083038185875af1925050503d805f8114613789576040519150601f19603f3d011682016040523d82523d5f602084013e61378e565b606091505b505080985050505050505050505050505b565b5f81836137ae9190614025565b905092915050565b5f81836137c39190614093565b905092915050565b505050565b505050565b5f81836137e29190614d94565b905092915050565b5f600267ffffffffffffffff81111561380657613805614e55565b5b6040519080825280602002602001820160405280156138345781602001602082028036833780820191505090505b50905030815f8151811061384b5761384a614e82565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139129190614ec3565b8160018151811061392657613925614e82565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061398b307f0000000000000000000000000000000000000000000000000000000000000000846121e5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016139ec959493929190614fde565b5f604051808303815f87803b158015613a03575f80fd5b505af1158015613a15573d5f803e3d5ffd5b505050505050565b613a48307f0000000000000000000000000000000000000000000000000000000000000000846121e5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80613a9161158e565b426040518863ffffffff1660e01b8152600401613ab396959493929190615036565b60606040518083038185885af1158015613acf573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190613af49190615095565b5050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613b2882613aff565b9050919050565b613b3881613b1e565b8114613b42575f80fd5b50565b5f81359050613b5381613b2f565b92915050565b5f60208284031215613b6e57613b6d613afb565b5b5f613b7b84828501613b45565b91505092915050565b5f8115159050919050565b613b9881613b84565b82525050565b5f602082019050613bb15f830184613b8f565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613bee578082015181840152602081019050613bd3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613c1382613bb7565b613c1d8185613bc1565b9350613c2d818560208601613bd1565b613c3681613bf9565b840191505092915050565b5f6020820190508181035f830152613c598184613c09565b905092915050565b5f819050919050565b613c7381613c61565b8114613c7d575f80fd5b50565b5f81359050613c8e81613c6a565b92915050565b5f8060408385031215613caa57613ca9613afb565b5b5f613cb785828601613b45565b9250506020613cc885828601613c80565b9150509250929050565b5f819050919050565b5f613cf5613cf0613ceb84613aff565b613cd2565b613aff565b9050919050565b5f613d0682613cdb565b9050919050565b5f613d1782613cfc565b9050919050565b613d2781613d0d565b82525050565b5f602082019050613d405f830184613d1e565b92915050565b613d4f81613c61565b82525050565b5f602082019050613d685f830184613d46565b92915050565b5f60208284031215613d8357613d82613afb565b5b5f613d9084828501613c80565b91505092915050565b5f805f60608486031215613db057613daf613afb565b5b5f613dbd86828701613b45565b9350506020613dce86828701613b45565b9250506040613ddf86828701613c80565b9150509250925092565b613df281613b1e565b82525050565b5f602082019050613e0b5f830184613de9565b92915050565b5f60ff82169050919050565b613e2681613e11565b82525050565b5f602082019050613e3f5f830184613e1d565b92915050565b5f805f60608486031215613e5c57613e5b613afb565b5b5f613e6986828701613c80565b9350506020613e7a86828701613c80565b9250506040613e8b86828701613c80565b9150509250925092565b5f606082019050613ea85f830186613d46565b613eb56020830185613d46565b613ec26040830184613d46565b949350505050565b613ed381613b84565b8114613edd575f80fd5b50565b5f81359050613eee81613eca565b92915050565b5f8060408385031215613f0a57613f09613afb565b5b5f613f1785828601613b45565b9250506020613f2885828601613ee0565b9150509250929050565b5f60208284031215613f4757613f46613afb565b5b5f613f5484828501613ee0565b91505092915050565b5f8060408385031215613f7357613f72613afb565b5b5f613f8085828601613b45565b9250506020613f9185828601613b45565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613fdf57607f821691505b602082108103613ff257613ff1613f9b565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61402f82613c61565b915061403a83613c61565b925082820261404881613c61565b9150828204841483151761405f5761405e613ff8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61409d82613c61565b91506140a883613c61565b9250826140b8576140b7614066565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f61411d602f83613bc1565b9150614128826140c3565b604082019050919050565b5f6020820190508181035f83015261414a81614111565b9050919050565b5f61415b82613c61565b915061416683613c61565b925082820190508082111561417e5761417d613ff8565b5b92915050565b5f81905092915050565b50565b5f61419c5f83614184565b91506141a78261418e565b5f82019050919050565b5f6141bb82614191565b9150819050919050565b5f815190506141d381613c6a565b92915050565b5f602082840312156141ee576141ed613afb565b5b5f6141fb848285016141c5565b91505092915050565b5f6040820190506142175f830185613de9565b6142246020830184613d46565b9392505050565b5f8151905061423981613eca565b92915050565b5f6020828403121561425457614253613afb565b5b5f6142618482850161422b565b91505092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f6142c4603983613bc1565b91506142cf8261426a565b604082019050919050565b5f6020820190508181035f8301526142f1816142b8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614352602583613bc1565b915061435d826142f8565b604082019050919050565b5f6020820190508181035f83015261437f81614346565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f6143ba601a83613bc1565b91506143c582614386565b602082019050919050565b5f6020820190508181035f8301526143e7816143ae565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f614448602483613bc1565b9150614453826143ee565b604082019050919050565b5f6020820190508181035f8301526144758161443c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f6144d6603583613bc1565b91506144e18261447c565b604082019050919050565b5f6020820190508181035f830152614503816144ca565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614564603483613bc1565b915061456f8261450a565b604082019050919050565b5f6020820190508181035f83015261459181614558565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6145f2602183613bc1565b91506145fd82614598565b604082019050919050565b5f6020820190508181035f83015261461f816145e6565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f614680602e83613bc1565b915061468b82614626565b604082019050919050565b5f6020820190508181035f8301526146ad81614674565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61470e602683613bc1565b9150614719826146b4565b604082019050919050565b5f6020820190508181035f83015261473b81614702565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61479c602483613bc1565b91506147a782614742565b604082019050919050565b5f6020820190508181035f8301526147c981614790565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61482a602283613bc1565b9150614835826147d0565b604082019050919050565b5f6020820190508181035f8301526148578161481e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614892602083613bc1565b915061489d8261485e565b602082019050919050565b5f6020820190508181035f8301526148bf81614886565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6148fa601d83613bc1565b9150614905826148c6565b602082019050919050565b5f6020820190508181035f830152614927816148ee565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614988602583613bc1565b91506149938261492e565b604082019050919050565b5f6020820190508181035f8301526149b58161497c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614a16602383613bc1565b9150614a21826149bc565b604082019050919050565b5f6020820190508181035f830152614a4381614a0a565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f614a7e601283613bc1565b9150614a8982614a4a565b602082019050919050565b5f6020820190508181035f830152614aab81614a72565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f614ae6601483613bc1565b9150614af182614ab2565b602082019050919050565b5f6020820190508181035f830152614b1381614ada565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6c5f8201527f697374696e672e00000000000000000000000000000000000000000000000000602082015250565b5f614b74602783613bc1565b9150614b7f82614b1a565b604082019050919050565b5f6020820190508181035f830152614ba181614b68565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f614bdc601683613bc1565b9150614be782614ba8565b602082019050919050565b5f6020820190508181035f830152614c0981614bd0565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f614c6a603583613bc1565b9150614c7582614c10565b604082019050919050565b5f6020820190508181035f830152614c9781614c5e565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f614cd2601383613bc1565b9150614cdd82614c9e565b602082019050919050565b5f6020820190508181035f830152614cff81614cc6565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f614d60603683613bc1565b9150614d6b82614d06565b604082019050919050565b5f6020820190508181035f830152614d8d81614d54565b9050919050565b5f614d9e82613c61565b9150614da983613c61565b9250828203905081811115614dc157614dc0613ff8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614e21602683613bc1565b9150614e2c82614dc7565b604082019050919050565b5f6020820190508181035f830152614e4e81614e15565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050614ebd81613b2f565b92915050565b5f60208284031215614ed857614ed7613afb565b5b5f614ee584828501614eaf565b91505092915050565b5f819050919050565b5f614f11614f0c614f0784614eee565b613cd2565b613c61565b9050919050565b614f2181614ef7565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b614f5981613b1e565b82525050565b5f614f6a8383614f50565b60208301905092915050565b5f602082019050919050565b5f614f8c82614f27565b614f968185614f31565b9350614fa183614f41565b805f5b83811015614fd1578151614fb88882614f5f565b9750614fc383614f76565b925050600181019050614fa4565b5085935050505092915050565b5f60a082019050614ff15f830188613d46565b614ffe6020830187614f18565b81810360408301526150108186614f82565b905061501f6060830185613de9565b61502c6080830184613d46565b9695505050505050565b5f60c0820190506150495f830189613de9565b6150566020830188613d46565b6150636040830187614f18565b6150706060830186614f18565b61507d6080830185613de9565b61508a60a0830184613d46565b979650505050505050565b5f805f606084860312156150ac576150ab613afb565b5b5f6150b9868287016141c5565b93505060206150ca868287016141c5565b92505060406150db868287016141c5565b915050925092509256fea2646970667358221220f08588da222d66dfacf78414166c74453a1dadf3481e562f90bc3c29f948d04f64736f6c63430008140033
Deployed Bytecode
0x60806040526004361061038f575f3560e01c80637ca8448a116101db578063c024666811610101578063e2f456051161009f578063f66895a31161006e578063f66895a314610d0a578063f8b45b0514610d36578063f9f92be414610d60578063fe575a8714610d8857610396565b8063e2f4560514610c66578063e82493a914610c90578063f0b89f0a14610cb8578063f2fde38b14610ce257610396565b8063d257b34f116100db578063d257b34f14610b9c578063d85ba06314610bd8578063dd62ed3e14610c02578063e19b282314610c3e57610396565b8063c024666814610b22578063c18bc19514610b4a578063c8c8ebe414610b7257610396565b80639d282cd611610179578063aacebbe311610148578063aacebbe314610a6c578063b62496f514610a94578063bbc0c74214610ad0578063bc205ad314610afa57610396565b80639d282cd6146109a25780639fccce32146109ca578063a457c2d7146109f4578063a9059cbb14610a3057610396565b80638da5cb5b116101b55780638da5cb5b146108fe578063924de9b71461092857806395d89b41146109505780639a7a23d61461097a57610396565b80637ca8448a146108aa57806384dd4452146108d25780638a8c523c146108e857610396565b80633dc599ff116102c05780636a486a8e1161025e578063728f8eea1161022d578063728f8eea14610804578063751039fc146108305780637571336a1461085a57806375e3661e1461088257610396565b80636a486a8e1461075e5780636ddd17131461078857806370a08231146107b2578063715018a6146107ee57610396565b80634e736f221161029a5780634e736f22146106ba5780634fbee193146106e25780635f1893611461071e5780636490015c1461073457610396565b80633dc599ff1461063c57806349bd5a5e146106665780634a62bb651461069057610396565b80631a8145bb1161032d57806323b872dd1161030757806323b872dd1461057057806327c8f835146105ac578063313ce567146105d6578063395093511461060057610396565b80631a8145bb146104f45780631f3fed8f1461051e578063203e727e1461054857610396565b806310d5de531161036957806310d5de531461043c5780631694505e1461047857806318160ddd146104a25780631816467f146104cc57610396565b806304fa50c21461039a57806306fdde03146103d6578063095ea7b31461040057610396565b3661039657005b5f80fd5b3480156103a5575f80fd5b506103c060048036038101906103bb9190613b59565b610dc4565b6040516103cd9190613b9e565b60405180910390f35b3480156103e1575f80fd5b506103ea610de1565b6040516103f79190613c41565b60405180910390f35b34801561040b575f80fd5b5061042660048036038101906104219190613c94565b610e71565b6040516104339190613b9e565b60405180910390f35b348015610447575f80fd5b50610462600480360381019061045d9190613b59565b610e93565b60405161046f9190613b9e565b60405180910390f35b348015610483575f80fd5b5061048c610eb0565b6040516104999190613d2d565b60405180910390f35b3480156104ad575f80fd5b506104b6610ed4565b6040516104c39190613d55565b60405180910390f35b3480156104d7575f80fd5b506104f260048036038101906104ed9190613b59565b610edd565b005b3480156104ff575f80fd5b50610508610fa3565b6040516105159190613d55565b60405180910390f35b348015610529575f80fd5b50610532610fa9565b60405161053f9190613d55565b60405180910390f35b348015610553575f80fd5b5061056e60048036038101906105699190613d6e565b610faf565b005b34801561057b575f80fd5b5061059660048036038101906105919190613d99565b61104a565b6040516105a39190613b9e565b60405180910390f35b3480156105b7575f80fd5b506105c0611078565b6040516105cd9190613df8565b60405180910390f35b3480156105e1575f80fd5b506105ea61107e565b6040516105f79190613e2c565b60405180910390f35b34801561060b575f80fd5b5061062660048036038101906106219190613c94565b611086565b6040516106339190613b9e565b60405180910390f35b348015610647575f80fd5b506106506110bc565b60405161065d9190613b9e565b60405180910390f35b348015610671575f80fd5b5061067a6110cf565b6040516106879190613df8565b60405180910390f35b34801561069b575f80fd5b506106a46110f3565b6040516106b19190613b9e565b60405180910390f35b3480156106c5575f80fd5b506106e060048036038101906106db9190613e45565b611105565b005b3480156106ed575f80fd5b5061070860048036038101906107039190613b59565b611179565b6040516107159190613b9e565b60405180910390f35b348015610729575f80fd5b506107326111cb565b005b34801561073f575f80fd5b506107486111f0565b6040516107559190613b9e565b60405180910390f35b348015610769575f80fd5b50610772611202565b60405161077f9190613d55565b60405180910390f35b348015610793575f80fd5b5061079c611208565b6040516107a99190613b9e565b60405180910390f35b3480156107bd575f80fd5b506107d860048036038101906107d39190613b59565b61121b565b6040516107e59190613d55565b60405180910390f35b3480156107f9575f80fd5b50610802611260565b005b34801561080f575f80fd5b50610818611273565b60405161082793929190613e95565b60405180910390f35b34801561083b575f80fd5b5061084461128a565b6040516108519190613b9e565b60405180910390f35b348015610865575f80fd5b50610880600480360381019061087b9190613ef4565b6112b3565b005b34801561088d575f80fd5b506108a860048036038101906108a39190613b59565b611313565b005b3480156108b5575f80fd5b506108d060048036038101906108cb9190613b59565b611372565b005b3480156108dd575f80fd5b506108e66113ef565b005b3480156108f3575f80fd5b506108fc611535565b005b348015610909575f80fd5b5061091261158e565b60405161091f9190613df8565b60405180910390f35b348015610933575f80fd5b5061094e60048036038101906109499190613f32565b6115b6565b005b34801561095b575f80fd5b506109646115db565b6040516109719190613c41565b60405180910390f35b348015610985575f80fd5b506109a0600480360381019061099b9190613ef4565b61166b565b005b3480156109ad575f80fd5b506109c860048036038101906109c39190613e45565b61170f565b005b3480156109d5575f80fd5b506109de611783565b6040516109eb9190613d55565b60405180910390f35b3480156109ff575f80fd5b50610a1a6004803603810190610a159190613c94565b611789565b604051610a279190613b9e565b60405180910390f35b348015610a3b575f80fd5b50610a566004803603810190610a519190613c94565b6117fe565b604051610a639190613b9e565b60405180910390f35b348015610a77575f80fd5b50610a926004803603810190610a8d9190613b59565b611820565b005b348015610a9f575f80fd5b50610aba6004803603810190610ab59190613b59565b6118e6565b604051610ac79190613b9e565b60405180910390f35b348015610adb575f80fd5b50610ae4611903565b604051610af19190613b9e565b60405180910390f35b348015610b05575f80fd5b50610b206004803603810190610b1b9190613f5d565b611916565b005b348015610b2d575f80fd5b50610b486004803603810190610b439190613ef4565b611a88565b005b348015610b55575f80fd5b50610b706004803603810190610b6b9190613d6e565b611b36565b005b348015610b7d575f80fd5b50610b86611bd1565b604051610b939190613d55565b60405180910390f35b348015610ba7575f80fd5b50610bc26004803603810190610bbd9190613d6e565b611bd7565b604051610bcf9190613b9e565b60405180910390f35b348015610be3575f80fd5b50610bec611cb7565b604051610bf99190613d55565b60405180910390f35b348015610c0d575f80fd5b50610c286004803603810190610c239190613f5d565b611cbd565b604051610c359190613d55565b60405180910390f35b348015610c49575f80fd5b50610c646004803603810190610c5f9190613b59565b611d3f565b005b348015610c71575f80fd5b50610c7a611ed6565b604051610c879190613d55565b60405180910390f35b348015610c9b575f80fd5b50610cb66004803603810190610cb19190613ef4565b611edc565b005b348015610cc3575f80fd5b50610ccc611f50565b604051610cd99190613d55565b60405180910390f35b348015610ced575f80fd5b50610d086004803603810190610d039190613b59565b611f56565b005b348015610d15575f80fd5b50610d1e611fd8565b604051610d2d93929190613e95565b60405180910390f35b348015610d41575f80fd5b50610d4a611fef565b604051610d579190613d55565b60405180910390f35b348015610d6b575f80fd5b50610d866004803603810190610d819190613b59565b611ff5565b005b348015610d93575f80fd5b50610dae6004803603810190610da99190613b59565b61218c565b604051610dbb9190613b9e565b60405180910390f35b601d602052805f5260405f205f915054906101000a900460ff1681565b606060038054610df090613fc8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1c90613fc8565b8015610e675780601f10610e3e57610100808354040283529160200191610e67565b820191905f5260205f20905b815481529060010190602001808311610e4a57829003601f168201915b5050505050905090565b5f80610e7b6121de565b9050610e888185856121e5565b600191505092915050565b601a602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b610ee56123a8565b60185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87160405160405180910390a38060185f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b60145481565b610fb76123a8565b670de0b6b3a76400006103e86005610fcd610ed4565b610fd79190614025565b610fe19190614093565b610feb9190614093565b81101561102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490614133565b60405180910390fd5b670de0b6b3a7640000816110419190614025565b60068190555050565b5f806110546121de565b9050611061858285612426565b61106c8585856124b1565b60019150509392505050565b61dead81565b5f6012905090565b5f806110906121de565b90506110b18185856110a28589611cbd565b6110ac9190614151565b6121e5565b600191505092915050565b600a60039054906101000a900460ff1681565b7f00000000000000000000000032ac4f558fc972248ece3e86cfe068906364a44081565b600a5f9054906101000a900460ff1681565b61110d6123a8565b604051806060016040528084815260200183815260200182815250600f5f820151815f01556020820151816001015560408201518160020155905050600f60020154600f60010154600f5f01546111649190614151565b61116e9190614151565b601381905550505050565b5f60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b6111d36123a8565b6001600a60036101000a81548160ff021916908315150217905550565b601c5f9054906101000a900460ff1681565b60135481565b600a60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6112686123a8565b6112715f613103565b565b600c805f0154908060010154908060020154905083565b5f6112936123a8565b5f600a5f6101000a81548160ff0219169083151502179055506001905090565b6112bb6123a8565b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61131b6123a8565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b61137a6123a8565b5f8173ffffffffffffffffffffffffffffffffffffffff164760405161139f906141b1565b5f6040518083038185875af1925050503d805f81146113d9576040519150601f19603f3d011682016040523d82523d5f602084013e6113de565b606091505b50509050806113eb575f80fd5b5050565b6113f76123a8565b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016114319190613df8565b602060405180830381865afa15801561144c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061147091906141d9565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016114ad929190614204565b6020604051808303815f875af11580156114c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114ed919061423f565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611531573d5f803e3d5ffd5b5050565b61153d6123a8565b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff0219169083151502179055505f601c5f6101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115be6123a8565b80600a60026101000a81548160ff02191690831515021790555050565b6060600480546115ea90613fc8565b80601f016020809104026020016040519081016040528092919081815260200182805461161690613fc8565b80156116615780601f1061163857610100808354040283529160200191611661565b820191905f5260205f20905b81548152906001019060200180831161164457829003601f168201915b5050505050905090565b6116736123a8565b7f00000000000000000000000032ac4f558fc972248ece3e86cfe068906364a44073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f8906142da565b60405180910390fd5b61170b82826131c6565b5050565b6117176123a8565b604051806060016040528084815260200183815260200182815250600c5f820151815f01556020820151816001015560408201518160020155905050600c60020154600c60010154600c5f015461176e9190614151565b6117789190614151565b601281905550505050565b60165481565b5f806117936121de565b90505f6117a08286611cbd565b9050838110156117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc90614368565b60405180910390fd5b6117f282868684036121e5565b60019250505092915050565b5f806118086121de565b90506118158185856124b1565b600191505092915050565b6118286123a8565b60175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a38060175f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601b602052805f5260405f205f915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b61191e6123a8565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361198c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611983906143d0565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016119c69190613df8565b602060405180830381865afa1580156119e1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a0591906141d9565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611a42929190614204565b6020604051808303815f875af1158015611a5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a82919061423f565b50505050565b611a906123a8565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b2a9190613b9e565b60405180910390a25050565b611b3e6123a8565b670de0b6b3a76400006103e8600a611b54610ed4565b611b5e9190614025565b611b689190614093565b611b729190614093565b811015611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab9061445e565b60405180910390fd5b670de0b6b3a764000081611bc89190614025565b60078190555050565b60065481565b5f611be06123a8565b620186a06001611bee610ed4565b611bf89190614025565b611c029190614093565b821015611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b906144ec565b60405180910390fd5b6103e86005611c51610ed4565b611c5b9190614025565b611c659190614093565b821115611ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9e9061457a565b60405180910390fd5b8160088190555060019050919050565b60125481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611d476123a8565b600a60039054906101000a900460ff1615611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e90614608565b60405180910390fd5b7f00000000000000000000000032ac4f558fc972248ece3e86cfe068906364a44073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611e3f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b611e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7590614696565b60405180910390fd5b6001600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60085481565b611ee46123a8565b80601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611f428282611a88565b611f4c82826112b3565b5050565b60095481565b611f5e6123a8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390614724565b60405180910390fd5b611fd581613103565b50565b600f805f0154908060010154908060020154905083565b60075481565b611ffd6123a8565b600a60039054906101000a900460ff161561204d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204490614608565b60405180910390fd5b7f00000000000000000000000032ac4f558fc972248ece3e86cfe068906364a44073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156120f557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212b90614696565b60405180910390fd5b6001600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224a906147b2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b890614840565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161239b9190613d55565b60405180910390a3505050565b6123b06121de565b73ffffffffffffffffffffffffffffffffffffffff166123ce61158e565b73ffffffffffffffffffffffffffffffffffffffff1614612424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241b906148a8565b60405180910390fd5b565b5f6124318484611cbd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146124ab578181101561249d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249490614910565b60405180910390fd5b6124aa84848484036121e5565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361251f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125169061499e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361258d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258490614a2c565b60405180910390fd5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260e90614a94565b60405180910390fd5b600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156126a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269890614afc565b60405180910390fd5b601c5f9054906101000a900460ff161561273f57601d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661273e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273590614b8a565b60405180910390fd5b5b5f81036127565761275183835f613264565b6130fe565b600a5f9054906101000a900460ff1615612c3a5761277261158e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127e057506127b061158e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561281857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612852575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561286b5750600560149054906101000a900460ff16155b15612c3957600a60019054906101000a900460ff1661295f5760195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061291f575060195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61295e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295590614bf2565b60405180910390fd5b5b601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156129fc5750601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612aa357600654811115612a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3d90614c80565b60405180910390fd5b600754612a528361121b565b82612a5d9190614151565b1115612a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9590614ce8565b60405180910390fd5b612c38565b601b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612b405750601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612b8f57600654811115612b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8190614d76565b60405180910390fd5b612c37565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612c3657600754612be98361121b565b82612bf49190614151565b1115612c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2c90614ce8565b60405180910390fd5b5b5b5b5b5b5f612c443061121b565b90505f6008548210159050808015612c685750600a60029054906101000a900460ff165b8015612c815750600560149054906101000a900460ff16155b8015612cd45750601b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612d27575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612d7a575060195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612dbd576001600560146101000a81548160ff021916908315150217905550612da26134d0565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612e6c575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612e75575f90505b5f81156130ee57601b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612ed357505f601354115b15612fa557612f006064612ef2601354886137a190919063ffffffff16565b6137b690919063ffffffff16565b9050601354600f6001015482612f169190614025565b612f209190614093565b60155f828254612f309190614151565b92505081905550601354600f6002015482612f4b9190614025565b612f559190614093565b60165f828254612f659190614151565b92505081905550601354600f5f015482612f7f9190614025565b612f899190614093565b60145f828254612f999190614151565b925050819055506130cb565b601b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612ffc57505f601254115b156130ca57613029606461301b601254886137a190919063ffffffff16565b6137b690919063ffffffff16565b9050601254600c600101548261303f9190614025565b6130499190614093565b60155f8282546130599190614151565b92505081905550601254600c60020154826130749190614025565b61307e9190614093565b60165f82825461308e9190614151565b92505081905550601254600c5f0154826130a89190614025565b6130b29190614093565b60145f8282546130c29190614151565b925050819055505b5b5f8111156130df576130de873083613264565b5b80856130eb9190614d94565b94505b6130f9878787613264565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036132d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c99061499e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333790614a2c565b60405180910390fd5b61334b8383836137cb565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156133ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c590614e37565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516134b79190613d55565b60405180910390a36134ca8484846137d0565b50505050565b5f6134da3061121b565b90505f6016546014546015546134f09190614151565b6134fa9190614151565b90505f8083148061350a57505f82145b156135175750505061379f565b6009546008546135279190614025565b8311156135415760095460085461353e9190614025565b92505b5f600283601554866135539190614025565b61355d9190614093565b6135679190614093565b90505f61357d82866137d590919063ffffffff16565b90505f47905061358c826137ea565b5f6135a082476137d590919063ffffffff16565b90505f6135ca876135bc601454856137a190919063ffffffff16565b6137b690919063ffffffff16565b90505f6135f4886135e6601654866137a190919063ffffffff16565b6137b690919063ffffffff16565b90505f8183856136049190614d94565b61360e9190614d94565b90505f6015819055505f6014819055505f60168190555060185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161366a906141b1565b5f6040518083038185875af1925050503d805f81146136a4576040519150601f19603f3d011682016040523d82523d5f602084013e6136a9565b606091505b5050809850505f871180156136bd57505f81115b1561370a576136cc8782613a1d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260155460405161370193929190613e95565b60405180910390a15b60175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161374f906141b1565b5f6040518083038185875af1925050503d805f8114613789576040519150601f19603f3d011682016040523d82523d5f602084013e61378e565b606091505b505080985050505050505050505050505b565b5f81836137ae9190614025565b905092915050565b5f81836137c39190614093565b905092915050565b505050565b505050565b5f81836137e29190614d94565b905092915050565b5f600267ffffffffffffffff81111561380657613805614e55565b5b6040519080825280602002602001820160405280156138345781602001602082028036833780820191505090505b50905030815f8151811061384b5761384a614e82565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139129190614ec3565b8160018151811061392657613925614e82565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061398b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846121e5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016139ec959493929190614fde565b5f604051808303815f87803b158015613a03575f80fd5b505af1158015613a15573d5f803e3d5ffd5b505050505050565b613a48307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846121e5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80613a9161158e565b426040518863ffffffff1660e01b8152600401613ab396959493929190615036565b60606040518083038185885af1158015613acf573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190613af49190615095565b5050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613b2882613aff565b9050919050565b613b3881613b1e565b8114613b42575f80fd5b50565b5f81359050613b5381613b2f565b92915050565b5f60208284031215613b6e57613b6d613afb565b5b5f613b7b84828501613b45565b91505092915050565b5f8115159050919050565b613b9881613b84565b82525050565b5f602082019050613bb15f830184613b8f565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613bee578082015181840152602081019050613bd3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613c1382613bb7565b613c1d8185613bc1565b9350613c2d818560208601613bd1565b613c3681613bf9565b840191505092915050565b5f6020820190508181035f830152613c598184613c09565b905092915050565b5f819050919050565b613c7381613c61565b8114613c7d575f80fd5b50565b5f81359050613c8e81613c6a565b92915050565b5f8060408385031215613caa57613ca9613afb565b5b5f613cb785828601613b45565b9250506020613cc885828601613c80565b9150509250929050565b5f819050919050565b5f613cf5613cf0613ceb84613aff565b613cd2565b613aff565b9050919050565b5f613d0682613cdb565b9050919050565b5f613d1782613cfc565b9050919050565b613d2781613d0d565b82525050565b5f602082019050613d405f830184613d1e565b92915050565b613d4f81613c61565b82525050565b5f602082019050613d685f830184613d46565b92915050565b5f60208284031215613d8357613d82613afb565b5b5f613d9084828501613c80565b91505092915050565b5f805f60608486031215613db057613daf613afb565b5b5f613dbd86828701613b45565b9350506020613dce86828701613b45565b9250506040613ddf86828701613c80565b9150509250925092565b613df281613b1e565b82525050565b5f602082019050613e0b5f830184613de9565b92915050565b5f60ff82169050919050565b613e2681613e11565b82525050565b5f602082019050613e3f5f830184613e1d565b92915050565b5f805f60608486031215613e5c57613e5b613afb565b5b5f613e6986828701613c80565b9350506020613e7a86828701613c80565b9250506040613e8b86828701613c80565b9150509250925092565b5f606082019050613ea85f830186613d46565b613eb56020830185613d46565b613ec26040830184613d46565b949350505050565b613ed381613b84565b8114613edd575f80fd5b50565b5f81359050613eee81613eca565b92915050565b5f8060408385031215613f0a57613f09613afb565b5b5f613f1785828601613b45565b9250506020613f2885828601613ee0565b9150509250929050565b5f60208284031215613f4757613f46613afb565b5b5f613f5484828501613ee0565b91505092915050565b5f8060408385031215613f7357613f72613afb565b5b5f613f8085828601613b45565b9250506020613f9185828601613b45565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613fdf57607f821691505b602082108103613ff257613ff1613f9b565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61402f82613c61565b915061403a83613c61565b925082820261404881613c61565b9150828204841483151761405f5761405e613ff8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61409d82613c61565b91506140a883613c61565b9250826140b8576140b7614066565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f61411d602f83613bc1565b9150614128826140c3565b604082019050919050565b5f6020820190508181035f83015261414a81614111565b9050919050565b5f61415b82613c61565b915061416683613c61565b925082820190508082111561417e5761417d613ff8565b5b92915050565b5f81905092915050565b50565b5f61419c5f83614184565b91506141a78261418e565b5f82019050919050565b5f6141bb82614191565b9150819050919050565b5f815190506141d381613c6a565b92915050565b5f602082840312156141ee576141ed613afb565b5b5f6141fb848285016141c5565b91505092915050565b5f6040820190506142175f830185613de9565b6142246020830184613d46565b9392505050565b5f8151905061423981613eca565b92915050565b5f6020828403121561425457614253613afb565b5b5f6142618482850161422b565b91505092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f6142c4603983613bc1565b91506142cf8261426a565b604082019050919050565b5f6020820190508181035f8301526142f1816142b8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614352602583613bc1565b915061435d826142f8565b604082019050919050565b5f6020820190508181035f83015261437f81614346565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f6143ba601a83613bc1565b91506143c582614386565b602082019050919050565b5f6020820190508181035f8301526143e7816143ae565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f614448602483613bc1565b9150614453826143ee565b604082019050919050565b5f6020820190508181035f8301526144758161443c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f6144d6603583613bc1565b91506144e18261447c565b604082019050919050565b5f6020820190508181035f830152614503816144ca565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614564603483613bc1565b915061456f8261450a565b604082019050919050565b5f6020820190508181035f83015261459181614558565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6145f2602183613bc1565b91506145fd82614598565b604082019050919050565b5f6020820190508181035f83015261461f816145e6565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f614680602e83613bc1565b915061468b82614626565b604082019050919050565b5f6020820190508181035f8301526146ad81614674565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61470e602683613bc1565b9150614719826146b4565b604082019050919050565b5f6020820190508181035f83015261473b81614702565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61479c602483613bc1565b91506147a782614742565b604082019050919050565b5f6020820190508181035f8301526147c981614790565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61482a602283613bc1565b9150614835826147d0565b604082019050919050565b5f6020820190508181035f8301526148578161481e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614892602083613bc1565b915061489d8261485e565b602082019050919050565b5f6020820190508181035f8301526148bf81614886565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6148fa601d83613bc1565b9150614905826148c6565b602082019050919050565b5f6020820190508181035f830152614927816148ee565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614988602583613bc1565b91506149938261492e565b604082019050919050565b5f6020820190508181035f8301526149b58161497c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614a16602383613bc1565b9150614a21826149bc565b604082019050919050565b5f6020820190508181035f830152614a4381614a0a565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f614a7e601283613bc1565b9150614a8982614a4a565b602082019050919050565b5f6020820190508181035f830152614aab81614a72565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f614ae6601483613bc1565b9150614af182614ab2565b602082019050919050565b5f6020820190508181035f830152614b1381614ada565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6c5f8201527f697374696e672e00000000000000000000000000000000000000000000000000602082015250565b5f614b74602783613bc1565b9150614b7f82614b1a565b604082019050919050565b5f6020820190508181035f830152614ba181614b68565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f614bdc601683613bc1565b9150614be782614ba8565b602082019050919050565b5f6020820190508181035f830152614c0981614bd0565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f614c6a603583613bc1565b9150614c7582614c10565b604082019050919050565b5f6020820190508181035f830152614c9781614c5e565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f614cd2601383613bc1565b9150614cdd82614c9e565b602082019050919050565b5f6020820190508181035f830152614cff81614cc6565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f614d60603683613bc1565b9150614d6b82614d06565b604082019050919050565b5f6020820190508181035f830152614d8d81614d54565b9050919050565b5f614d9e82613c61565b9150614da983613c61565b9250828203905081811115614dc157614dc0613ff8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614e21602683613bc1565b9150614e2c82614dc7565b604082019050919050565b5f6020820190508181035f830152614e4e81614e15565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050614ebd81613b2f565b92915050565b5f60208284031215614ed857614ed7613afb565b5b5f614ee584828501614eaf565b91505092915050565b5f819050919050565b5f614f11614f0c614f0784614eee565b613cd2565b613c61565b9050919050565b614f2181614ef7565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b614f5981613b1e565b82525050565b5f614f6a8383614f50565b60208301905092915050565b5f602082019050919050565b5f614f8c82614f27565b614f968185614f31565b9350614fa183614f41565b805f5b83811015614fd1578151614fb88882614f5f565b9750614fc383614f76565b925050600181019050614fa4565b5085935050505092915050565b5f60a082019050614ff15f830188613d46565b614ffe6020830187614f18565b81810360408301526150108186614f82565b905061501f6060830185613de9565b61502c6080830184613d46565b9695505050505050565b5f60c0820190506150495f830189613de9565b6150566020830188613d46565b6150636040830187614f18565b6150706060830186614f18565b61507d6080830185613de9565b61508a60a0830184613d46565b979650505050505050565b5f805f606084860312156150ac576150ab613afb565b5b5f6150b9868287016141c5565b93505060206150ca868287016141c5565b92505060406150db868287016141c5565b915050925092509256fea2646970667358221220f08588da222d66dfacf78414166c74453a1dadf3481e562f90bc3c29f948d04f64736f6c63430008140033
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.