ERC-20
Overview
Max Total Supply
1,000,000,000 BURNT
Holders
36
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
9,114,000 BURNTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Burnt
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.8.17; pragma experimental ABIEncoderV2; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {SafeMath} from "@openzeppelin/contracts/utils/math/SafeMath.sol"; import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import {IUniswapV2Pair} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; contract Burnt is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 50; // 50 = .5% bool public lpBurnEnabled = true; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public transferDelayEnabled = true; bool private swapping; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; // exlcude from fees and max transaction amount mapping(address => bool) private excludedFromFees; mapping(address => bool) public excludedMaxTransactionAmount; mapping(address => uint256) private lastTransferTimestamp; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Burnt", "BURNT") { initUniswapRouter(); uint256 totalSupply = 1_000_000_000 * 1e18; maxTransactionAmount = 10000000 * 1e18; // 1% from total supply maxTransactionAmountTxn maxWallet = 20000000 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 1000; // 0.5% swap wallet buyMarketingFee = 3; buyLiquidityFee = 1; buyDevFee = 3; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = 3; sellLiquidityFee = 1; sellDevFee = 3; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(0x6c601eF9cEe3565e5C3784e0461D6a42D0BAF6c7); devWallet = address(owner()); excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); _mint(msg.sender, totalSupply); } function initUniswapRouter() private { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; lastLpBurnTime = block.timestamp; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { excludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 11, "Must keep fees at 11% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 30, "Must keep fees at 30% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { excludedFromFees[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 newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return excludedFromFees[account]; } event BoughtEarly(address indexed sniper); 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"); if (amount == 0) { super._transfer(from, to, 0); return; } validateLimitTransfer(from, to, amount); uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !excludedFromFees[from] && !excludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !excludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } bool takeFee = true; // if any account belongs to _isExcludedFromFee account then remove the fee if (excludedFromFees[from] || excludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function validateLimitTransfer( address from, address to, uint256 amount ) private { if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( excludedFromFees[from] || excludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( lastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); lastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !excludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !excludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!excludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(0xdead), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526032600d556001600e60006101000a81548160ff021916908315150217905550610e10600f556107086011556001601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff0219169083151502179055506001601360036101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600581526020017f4275726e740000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4255524e54000000000000000000000000000000000000000000000000000000815250816003908162000127919062000d60565b50806004908162000139919062000d60565b5050506200015c620001506200039560201b60201c565b6200039d60201b60201c565b6200016c6200046360201b60201c565b60006b033b2e3c9fd0803ce800000090506a084595161401484a000000600a819055506a108b2a2c28029094000000600c819055506103e8600582620001b3919062000e76565b620001bf919062000ef0565b600b81905550600360158190555060016016819055506003601781905550601754601654601554620001f2919062000f28565b620001fe919062000f28565b60148190555060036019819055506001601a819055506003601b81905550601b54601a5460195462000231919062000f28565b6200023d919062000f28565b601881905550736c601ef9cee3565e5c3784e0461d6a42d0baf6c7600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002a8620006e260201b60201c565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200030a620002fc620006e260201b60201c565b60016200070c60201b60201c565b6200031d3060016200070c60201b60201c565b6200033261dead60016200070c60201b60201c565b6200035462000346620006e260201b60201c565b6001620007c760201b60201c565b62000367306001620007c760201b60201c565b6200037c61dead6001620007c760201b60201c565b6200038e33826200083260201b60201c565b506200119a565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200048f816001620007c760201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200051c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000542919062000fcd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620005aa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005d0919062000fcd565b6040518363ffffffff1660e01b8152600401620005ef92919062001010565b6020604051808303816000875af11580156200060f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000635919062000fcd565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620006aa600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007c760201b60201c565b620006df600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620009aa60201b60201c565b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200071c62000a4b60201b60201c565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620007bb91906200105a565b60405180910390a25050565b620007d762000a4b60201b60201c565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200089b90620010d8565b60405180910390fd5b620008b86000838362000adc60201b60201c565b8060026000828254620008cc919062000f28565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000923919062000f28565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200098a91906200110b565b60405180910390a3620009a66000838362000ae160201b60201c565b5050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b62000a5b6200039560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a81620006e260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000ada576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ad19062001178565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b6857607f821691505b60208210810362000b7e5762000b7d62000b20565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000be87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ba9565b62000bf4868362000ba9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c4162000c3b62000c358462000c0c565b62000c16565b62000c0c565b9050919050565b6000819050919050565b62000c5d8362000c20565b62000c7562000c6c8262000c48565b84845462000bb6565b825550505050565b600090565b62000c8c62000c7d565b62000c9981848462000c52565b505050565b5b8181101562000cc15762000cb560008262000c82565b60018101905062000c9f565b5050565b601f82111562000d105762000cda8162000b84565b62000ce58462000b99565b8101602085101562000cf5578190505b62000d0d62000d048562000b99565b83018262000c9e565b50505b505050565b600082821c905092915050565b600062000d356000198460080262000d15565b1980831691505092915050565b600062000d50838362000d22565b9150826002028217905092915050565b62000d6b8262000ae6565b67ffffffffffffffff81111562000d875762000d8662000af1565b5b62000d93825462000b4f565b62000da082828562000cc5565b600060209050601f83116001811462000dd8576000841562000dc3578287015190505b62000dcf858262000d42565b86555062000e3f565b601f19841662000de88662000b84565b60005b8281101562000e125784890151825560018201915060208501945060208101905062000deb565b8683101562000e32578489015162000e2e601f89168262000d22565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e838262000c0c565b915062000e908362000c0c565b925082820262000ea08162000c0c565b9150828204841483151762000eba5762000eb962000e47565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000efd8262000c0c565b915062000f0a8362000c0c565b92508262000f1d5762000f1c62000ec1565b5b828204905092915050565b600062000f358262000c0c565b915062000f428362000c0c565b925082820190508082111562000f5d5762000f5c62000e47565b5b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f958262000f68565b9050919050565b62000fa78162000f88565b811462000fb357600080fd5b50565b60008151905062000fc78162000f9c565b92915050565b60006020828403121562000fe65762000fe562000f63565b5b600062000ff68482850162000fb6565b91505092915050565b6200100a8162000f88565b82525050565b600060408201905062001027600083018562000fff565b62001036602083018462000fff565b9392505050565b60008115159050919050565b62001054816200103d565b82525050565b600060208201905062001071600083018462001049565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010c0601f8362001077565b9150620010cd8262001088565b602082019050919050565b60006020820190508181036000830152620010f381620010b1565b9050919050565b620011058162000c0c565b82525050565b6000602082019050620011226000830184620010fa565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200116060208362001077565b91506200116d8262001128565b602082019050919050565b60006020820190508181036000830152620011938162001151565b9050919050565b6152e480620011aa6000396000f3fe6080604052600436106103a65760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610dcd578063f637434214610df6578063f8b45b0514610e21578063fe72b27a14610e4c576103ad565b8063dd62ed3e14610d0f578063e2f4560514610d4c578063e884f26014610d77578063f11a24d314610da2576103ad565b8063c876d0b9116100dc578063c876d0b914610c51578063c8c8ebe414610c7c578063d257b34f14610ca7578063d85ba06314610ce4576103ad565b8063bbc0c74214610bab578063c024666814610bd6578063c17b5b8c14610bff578063c18bc19514610c28576103ad565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610add578063a9059cbb14610b08578063aacebbe314610b45578063b62496f514610b6e576103ad565b80639ec22c0e14610a1f5780639fccce3214610a4a578063a0d82dc514610a75578063a457c2d714610aa0576103ad565b8063924de9b7116101c1578063924de9b71461097757806395d89b41146109a05780639a7a23d6146109cb5780639c3b4fdc146109f4576103ad565b80638da5cb5b146108f65780638ea5220f14610921578063921369131461094c576103ad565b806339509351116102cc578063715018a61161026a57806375f0a8741161023957806375f0a874146108605780637bce5a041461088b5780638095d564146108b65780638a8c523c146108df576103ad565b8063715018a6146107cc578063730c1888146107e3578063751039fc1461080c5780637571336a14610837576103ad565b80634fbee193116102a65780634fbee193146106fc5780636a486a8e146107395780636ddd17131461076457806370a082311461078f576103ad565b8063395093511461066957806349bd5a5e146106a65780634a62bb65146106d1576103ad565b8063199ffc721161034457806323b872dd1161031357806323b872dd146105ab5780632c3e486c146105e85780632e82f1a014610613578063313ce5671461063e576103ad565b8063199ffc72146105015780631a8145bb1461052c5780631f3fed8f14610557578063203e727e14610582576103ad565b80631694505e116103805780631694505e1461045757806318160ddd146104825780631816467f146104ad578063184c16c5146104d6576103ad565b806306fdde03146103b2578063095ea7b3146103dd5780631597f55d1461041a576103ad565b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7610e89565b6040516103d49190613bef565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190613caa565b610f1b565b6040516104119190613d05565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190613d20565b610f3e565b60405161044e9190613d05565b60405180910390f35b34801561046357600080fd5b5061046c610f5d565b6040516104799190613dac565b60405180910390f35b34801561048e57600080fd5b50610497610f83565b6040516104a49190613dd6565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190613d20565b610f8d565b005b3480156104e257600080fd5b506104eb611055565b6040516104f89190613dd6565b60405180910390f35b34801561050d57600080fd5b5061051661105b565b6040516105239190613dd6565b60405180910390f35b34801561053857600080fd5b50610541611061565b60405161054e9190613dd6565b60405180910390f35b34801561056357600080fd5b5061056c611067565b6040516105799190613dd6565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a49190613df1565b61106d565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190613e1e565b611108565b6040516105df9190613d05565b60405180910390f35b3480156105f457600080fd5b506105fd611137565b60405161060a9190613dd6565b60405180910390f35b34801561061f57600080fd5b5061062861113d565b6040516106359190613d05565b60405180910390f35b34801561064a57600080fd5b50610653611150565b6040516106609190613e8d565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b9190613caa565b611159565b60405161069d9190613d05565b60405180910390f35b3480156106b257600080fd5b506106bb611190565b6040516106c89190613eb7565b60405180910390f35b3480156106dd57600080fd5b506106e66111b6565b6040516106f39190613d05565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190613d20565b6111c9565b6040516107309190613d05565b60405180910390f35b34801561074557600080fd5b5061074e61121f565b60405161075b9190613dd6565b60405180910390f35b34801561077057600080fd5b50610779611225565b6040516107869190613d05565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190613d20565b611238565b6040516107c39190613dd6565b60405180910390f35b3480156107d857600080fd5b506107e1611280565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190613efe565b611294565b005b34801561081857600080fd5b50610821611360565b60405161082e9190613d05565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613f51565b61138c565b005b34801561086c57600080fd5b506108756113ef565b6040516108829190613eb7565b60405180910390f35b34801561089757600080fd5b506108a0611415565b6040516108ad9190613dd6565b60405180910390f35b3480156108c257600080fd5b506108dd60048036038101906108d89190613f91565b61141b565b005b3480156108eb57600080fd5b506108f46114a6565b005b34801561090257600080fd5b5061090b6114ed565b6040516109189190613eb7565b60405180910390f35b34801561092d57600080fd5b50610936611517565b6040516109439190613eb7565b60405180910390f35b34801561095857600080fd5b5061096161153d565b60405161096e9190613dd6565b60405180910390f35b34801561098357600080fd5b5061099e60048036038101906109999190613fe4565b611543565b005b3480156109ac57600080fd5b506109b5611568565b6040516109c29190613bef565b60405180910390f35b3480156109d757600080fd5b506109f260048036038101906109ed9190613f51565b6115fa565b005b348015610a0057600080fd5b50610a096116a0565b604051610a169190613dd6565b60405180910390f35b348015610a2b57600080fd5b50610a346116a6565b604051610a419190613dd6565b60405180910390f35b348015610a5657600080fd5b50610a5f6116ac565b604051610a6c9190613dd6565b60405180910390f35b348015610a8157600080fd5b50610a8a6116b2565b604051610a979190613dd6565b60405180910390f35b348015610aac57600080fd5b50610ac76004803603810190610ac29190613caa565b6116b8565b604051610ad49190613d05565b60405180910390f35b348015610ae957600080fd5b50610af261172f565b604051610aff9190613dd6565b60405180910390f35b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190613caa565b611735565b604051610b3c9190613d05565b60405180910390f35b348015610b5157600080fd5b50610b6c6004803603810190610b679190613d20565b611758565b005b348015610b7a57600080fd5b50610b956004803603810190610b909190613d20565b611820565b604051610ba29190613d05565b60405180910390f35b348015610bb757600080fd5b50610bc0611840565b604051610bcd9190613d05565b60405180910390f35b348015610be257600080fd5b50610bfd6004803603810190610bf89190613f51565b611853565b005b348015610c0b57600080fd5b50610c266004803603810190610c219190613f91565b611904565b005b348015610c3457600080fd5b50610c4f6004803603810190610c4a9190613df1565b61198f565b005b348015610c5d57600080fd5b50610c66611a2a565b604051610c739190613d05565b60405180910390f35b348015610c8857600080fd5b50610c91611a3d565b604051610c9e9190613dd6565b60405180910390f35b348015610cb357600080fd5b50610cce6004803603810190610cc99190613df1565b611a43565b604051610cdb9190613d05565b60405180910390f35b348015610cf057600080fd5b50610cf9611b24565b604051610d069190613dd6565b60405180910390f35b348015610d1b57600080fd5b50610d366004803603810190610d319190614011565b611b2a565b604051610d439190613dd6565b60405180910390f35b348015610d5857600080fd5b50610d61611bb1565b604051610d6e9190613dd6565b60405180910390f35b348015610d8357600080fd5b50610d8c611bb7565b604051610d999190613d05565b60405180910390f35b348015610dae57600080fd5b50610db7611be3565b604051610dc49190613dd6565b60405180910390f35b348015610dd957600080fd5b50610df46004803603810190610def9190613d20565b611be9565b005b348015610e0257600080fd5b50610e0b611c6c565b604051610e189190613dd6565b60405180910390f35b348015610e2d57600080fd5b50610e36611c72565b604051610e439190613dd6565b60405180910390f35b348015610e5857600080fd5b50610e736004803603810190610e6e9190613df1565b611c78565b604051610e809190613d05565b60405180910390f35b606060038054610e9890614080565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec490614080565b8015610f115780601f10610ee657610100808354040283529160200191610f11565b820191906000526020600020905b815481529060010190602001808311610ef457829003601f168201915b5050505050905090565b600080610f26611ee2565b9050610f33818585611eea565b600191505092915050565b602080528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610f956120b3565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b600d5481565b601d5481565b601c5481565b6110756120b3565b670de0b6b3a76400006103e8600161108b610f83565b61109591906140e0565b61109f9190614151565b6110a99190614151565b8110156110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e2906141f4565b60405180910390fd5b670de0b6b3a7640000816110ff91906140e0565b600a8190555050565b600080611113611ee2565b9050611120858285612131565b61112b8585856121bd565b60019150509392505050565b600f5481565b600e60009054906101000a900460ff1681565b60006012905090565b600080611164611ee2565b90506111858185856111768589611b2a565b6111809190614214565b611eea565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601360029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112886120b3565b611292600061288b565b565b61129c6120b3565b6102588310156112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d8906142ba565b60405180910390fd5b6103e882111580156112f4575060008210155b611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a9061434c565b60405180910390fd5b82600f8190555081600d8190555080600e60006101000a81548160ff021916908315150217905550505050565b600061136a6120b3565b6000601360006101000a81548160ff0219169083151502179055506001905090565b6113946120b3565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6114236120b3565b82601581905550816016819055508060178190555060175460165460155461144b9190614214565b6114559190614214565b601481905550600b60145411156114a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611498906143b8565b60405180910390fd5b505050565b6114ae6120b3565b6001601360016101000a81548160ff0219169083151502179055506001601360026101000a81548160ff02191690831515021790555042601081905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b61154b6120b3565b80601360026101000a81548160ff02191690831515021790555050565b60606004805461157790614080565b80601f01602080910402602001604051908101604052809291908181526020018280546115a390614080565b80156115f05780601f106115c5576101008083540402835291602001916115f0565b820191906000526020600020905b8154815290600101906020018083116115d357829003601f168201915b5050505050905090565b6116026120b3565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611692576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116899061444a565b60405180910390fd5b61169c8282612951565b5050565b60175481565b60125481565b601e5481565b601b5481565b6000806116c3611ee2565b905060006116d18286611b2a565b905083811015611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d906144dc565b60405180910390fd5b6117238286868403611eea565b60019250505092915050565b60105481565b600080611740611ee2565b905061174d8185856121bd565b600191505092915050565b6117606120b3565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b601360019054906101000a900460ff1681565b61185b6120b3565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516118f89190613d05565b60405180910390a25050565b61190c6120b3565b8260198190555081601a8190555080601b81905550601b54601a546019546119349190614214565b61193e9190614214565b601881905550601e601854111561198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190614548565b60405180910390fd5b505050565b6119976120b3565b670de0b6b3a76400006103e860056119ad610f83565b6119b791906140e0565b6119c19190614151565b6119cb9190614151565b811015611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a04906145da565b60405180910390fd5b670de0b6b3a764000081611a2191906140e0565b600c8190555050565b601360039054906101000a900460ff1681565b600a5481565b6000611a4d6120b3565b620186a06001611a5b610f83565b611a6591906140e0565b611a6f9190614151565b821015611ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa89061466c565b60405180910390fd5b6103e86005611abe610f83565b611ac891906140e0565b611ad29190614151565b821115611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b906146fe565b60405180910390fd5b81600b8190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b6000611bc16120b3565b6000601360036101000a81548160ff0219169083151502179055506001905090565b60165481565b611bf16120b3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5790614790565b60405180910390fd5b611c698161288b565b50565b601a5481565b600c5481565b6000611c826120b3565b601154601254611c929190614214565b4211611cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cca906147fc565b60405180910390fd5b6103e8821115611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f9061488e565b60405180910390fd5b4260128190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401611d7c9190613eb7565b602060405180830381865afa158015611d99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dbd91906148c3565b90506000611de8612710611dda86856129f290919063ffffffff16565b612a0890919063ffffffff16565b90506000811115611e2357611e22600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead83612a1e565b5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611e9257600080fd5b505af1158015611ea6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5090614962565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf906149f4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120a69190613dd6565b60405180910390a3505050565b6120bb611ee2565b73ffffffffffffffffffffffffffffffffffffffff166120d96114ed565b73ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212690614a60565b60405180910390fd5b565b600061213d8484611b2a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146121b757818110156121a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a090614acc565b60405180910390fd5b6121b68484848403611eea565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361222c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222390614b5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361229b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229290614bf0565b60405180910390fd5b600081036122b4576122af83836000612a1e565b612886565b6122bf838383612c9d565b60006122ca30611238565b90506000600b5482101590508080156122ef5750601360029054906101000a900460ff165b80156123085750601360049054906101000a900460ff16155b801561235e5750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123b45750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561240a5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561244e576001601360046101000a81548160ff021916908315150217905550612432613369565b6000601360046101000a81548160ff0219169083151502179055505b601360049054906101000a900460ff161580156124b45750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156124cc5750600e60009054906101000a900460ff165b80156124e75750600f546010546124e39190614214565b4210155b801561253d5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561254c5761254a613650565b505b600060019050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125f35750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156125fd57600090505b6000811561287657602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561266057506000601854115b1561272d5761268d606461267f601854886129f290919063ffffffff16565b612a0890919063ffffffff16565b9050601854601a54826126a091906140e0565b6126aa9190614151565b601d60008282546126bb9190614214565b92505081905550601854601b54826126d391906140e0565b6126dd9190614151565b601e60008282546126ee9190614214565b925050819055506018546019548261270691906140e0565b6127109190614151565b601c60008282546127219190614214565b92505081905550612852565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561278857506000601454115b15612851576127b560646127a7601454886129f290919063ffffffff16565b612a0890919063ffffffff16565b9050601454601654826127c891906140e0565b6127d29190614151565b601d60008282546127e39190614214565b92505081905550601454601754826127fb91906140e0565b6128059190614151565b601e60008282546128169190614214565b925050819055506014546015548261282e91906140e0565b6128389190614151565b601c60008282546128499190614214565b925050819055505b5b600081111561286757612866873083612a1e565b5b80856128739190614c10565b94505b612881878787612a1e565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183612a0091906140e0565b905092915050565b60008183612a169190614151565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8490614b5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af390614bf0565b60405180910390fd5b612b0783838361381c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8490614cb6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c209190614214565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612c849190613dd6565b60405180910390a3612c97848484613821565b50505050565b601360009054906101000a900460ff161561336457612cba6114ed565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612d285750612cf86114ed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d615750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d9b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612db45750601360049054906101000a900460ff16155b1561336357601360019054906101000a900460ff16612eae57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e6e5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea490614d22565b60405180910390fd5b5b601360039054906101000a900460ff161561307a57612ecb6114ed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612f545750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612fae5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156130795743602160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410613034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302b90614dda565b60405180910390fd5b43602160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561311d5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131c457600a54811115613167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315e90614e6c565b60405180910390fd5b600c5461317383611238565b8261317e9190614214565b11156131bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b690614ed8565b60405180910390fd5b613362565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132675750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132b657600a548111156132b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a890614f6a565b60405180910390fd5b613361565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661336057600c5461331383611238565b8261331e9190614214565b111561335f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335690614ed8565b60405180910390fd5b5b5b5b5b5b505050565b600061337430611238565b90506000601e54601c54601d5461338b9190614214565b6133959190614214565b90506000808314806133a75750600082145b156133b45750505061364e565b6014600b546133c391906140e0565b8311156133dc576014600b546133d991906140e0565b92505b6000600283601d54866133ef91906140e0565b6133f99190614151565b6134039190614151565b9050600061341a828661382690919063ffffffff16565b9050600047905061342a8261383c565b600061343f824761382690919063ffffffff16565b9050600061346a8761345c601c54856129f290919063ffffffff16565b612a0890919063ffffffff16565b9050600061349588613487601e54866129f290919063ffffffff16565b612a0890919063ffffffff16565b905060008183856134a69190614c10565b6134b09190614c10565b90506000601d819055506000601c819055506000601e81905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161351090614fbb565b60006040518083038185875af1925050503d806000811461354d576040519150601f19603f3d011682016040523d82523d6000602084013e613552565b606091505b5050809850506000871180156135685750600081115b156135b5576135778782613a7f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516135ac93929190614fd0565b60405180910390a15b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516135fb90614fbb565b60006040518083038185875af1925050503d8060008114613638576040519150601f19603f3d011682016040523d82523d6000602084013e61363d565b606091505b505080985050505050505050505050505b565b60004260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016136b69190613eb7565b602060405180830381865afa1580156136d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136f791906148c3565b90506000613724612710613716600d54856129f290919063ffffffff16565b612a0890919063ffffffff16565b9050600081111561375f5761375e600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead83612a1e565b5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156137ce57600080fd5b505af11580156137e2573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836138349190614c10565b905092915050565b6000600267ffffffffffffffff81111561385957613858615007565b5b6040519080825280602002602001820160405280156138875781602001602082028036833780820191505090505b509050308160008151811061389f5761389e615036565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613946573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061396a919061507a565b8160018151811061397e5761397d615036565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139e530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611eea565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a499594939291906151a0565b600060405180830381600087803b158015613a6357600080fd5b505af1158015613a77573d6000803e3d6000fd5b505050505050565b613aac30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611eea565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613b15969594939291906151fa565b60606040518083038185885af1158015613b33573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b58919061525b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b99578082015181840152602081019050613b7e565b60008484015250505050565b6000601f19601f8301169050919050565b6000613bc182613b5f565b613bcb8185613b6a565b9350613bdb818560208601613b7b565b613be481613ba5565b840191505092915050565b60006020820190508181036000830152613c098184613bb6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c4182613c16565b9050919050565b613c5181613c36565b8114613c5c57600080fd5b50565b600081359050613c6e81613c48565b92915050565b6000819050919050565b613c8781613c74565b8114613c9257600080fd5b50565b600081359050613ca481613c7e565b92915050565b60008060408385031215613cc157613cc0613c11565b5b6000613ccf85828601613c5f565b9250506020613ce085828601613c95565b9150509250929050565b60008115159050919050565b613cff81613cea565b82525050565b6000602082019050613d1a6000830184613cf6565b92915050565b600060208284031215613d3657613d35613c11565b5b6000613d4484828501613c5f565b91505092915050565b6000819050919050565b6000613d72613d6d613d6884613c16565b613d4d565b613c16565b9050919050565b6000613d8482613d57565b9050919050565b6000613d9682613d79565b9050919050565b613da681613d8b565b82525050565b6000602082019050613dc16000830184613d9d565b92915050565b613dd081613c74565b82525050565b6000602082019050613deb6000830184613dc7565b92915050565b600060208284031215613e0757613e06613c11565b5b6000613e1584828501613c95565b91505092915050565b600080600060608486031215613e3757613e36613c11565b5b6000613e4586828701613c5f565b9350506020613e5686828701613c5f565b9250506040613e6786828701613c95565b9150509250925092565b600060ff82169050919050565b613e8781613e71565b82525050565b6000602082019050613ea26000830184613e7e565b92915050565b613eb181613c36565b82525050565b6000602082019050613ecc6000830184613ea8565b92915050565b613edb81613cea565b8114613ee657600080fd5b50565b600081359050613ef881613ed2565b92915050565b600080600060608486031215613f1757613f16613c11565b5b6000613f2586828701613c95565b9350506020613f3686828701613c95565b9250506040613f4786828701613ee9565b9150509250925092565b60008060408385031215613f6857613f67613c11565b5b6000613f7685828601613c5f565b9250506020613f8785828601613ee9565b9150509250929050565b600080600060608486031215613faa57613fa9613c11565b5b6000613fb886828701613c95565b9350506020613fc986828701613c95565b9250506040613fda86828701613c95565b9150509250925092565b600060208284031215613ffa57613ff9613c11565b5b600061400884828501613ee9565b91505092915050565b6000806040838503121561402857614027613c11565b5b600061403685828601613c5f565b925050602061404785828601613c5f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061409857607f821691505b6020821081036140ab576140aa614051565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140eb82613c74565b91506140f683613c74565b925082820261410481613c74565b9150828204841483151761411b5761411a6140b1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061415c82613c74565b915061416783613c74565b92508261417757614176614122565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006141de602f83613b6a565b91506141e982614182565b604082019050919050565b6000602082019050818103600083015261420d816141d1565b9050919050565b600061421f82613c74565b915061422a83613c74565b9250828201905080821115614242576142416140b1565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006142a4603383613b6a565b91506142af82614248565b604082019050919050565b600060208201905081810360008301526142d381614297565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614336603083613b6a565b9150614341826142da565b604082019050919050565b6000602082019050818103600083015261436581614329565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b60006143a2601d83613b6a565b91506143ad8261436c565b602082019050919050565b600060208201905081810360008301526143d181614395565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614434603983613b6a565b915061443f826143d8565b604082019050919050565b6000602082019050818103600083015261446381614427565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006144c6602583613b6a565b91506144d18261446a565b604082019050919050565b600060208201905081810360008301526144f5816144b9565b9050919050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000614532601d83613b6a565b915061453d826144fc565b602082019050919050565b6000602082019050818103600083015261456181614525565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006145c4602483613b6a565b91506145cf82614568565b604082019050919050565b600060208201905081810360008301526145f3816145b7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614656603583613b6a565b9150614661826145fa565b604082019050919050565b6000602082019050818103600083015261468581614649565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006146e8603483613b6a565b91506146f38261468c565b604082019050919050565b60006020820190508181036000830152614717816146db565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061477a602683613b6a565b91506147858261471e565b604082019050919050565b600060208201905081810360008301526147a98161476d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006147e6602083613b6a565b91506147f1826147b0565b602082019050919050565b60006020820190508181036000830152614815816147d9565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614878602a83613b6a565b91506148838261481c565b604082019050919050565b600060208201905081810360008301526148a78161486b565b9050919050565b6000815190506148bd81613c7e565b92915050565b6000602082840312156148d9576148d8613c11565b5b60006148e7848285016148ae565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061494c602483613b6a565b9150614957826148f0565b604082019050919050565b6000602082019050818103600083015261497b8161493f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149de602283613b6a565b91506149e982614982565b604082019050919050565b60006020820190508181036000830152614a0d816149d1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a4a602083613b6a565b9150614a5582614a14565b602082019050919050565b60006020820190508181036000830152614a7981614a3d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614ab6601d83613b6a565b9150614ac182614a80565b602082019050919050565b60006020820190508181036000830152614ae581614aa9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b48602583613b6a565b9150614b5382614aec565b604082019050919050565b60006020820190508181036000830152614b7781614b3b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614bda602383613b6a565b9150614be582614b7e565b604082019050919050565b60006020820190508181036000830152614c0981614bcd565b9050919050565b6000614c1b82613c74565b9150614c2683613c74565b9250828203905081811115614c3e57614c3d6140b1565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614ca0602683613b6a565b9150614cab82614c44565b604082019050919050565b60006020820190508181036000830152614ccf81614c93565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614d0c601683613b6a565b9150614d1782614cd6565b602082019050919050565b60006020820190508181036000830152614d3b81614cff565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614dc4604983613b6a565b9150614dcf82614d42565b606082019050919050565b60006020820190508181036000830152614df381614db7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614e56603583613b6a565b9150614e6182614dfa565b604082019050919050565b60006020820190508181036000830152614e8581614e49565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614ec2601383613b6a565b9150614ecd82614e8c565b602082019050919050565b60006020820190508181036000830152614ef181614eb5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614f54603683613b6a565b9150614f5f82614ef8565b604082019050919050565b60006020820190508181036000830152614f8381614f47565b9050919050565b600081905092915050565b50565b6000614fa5600083614f8a565b9150614fb082614f95565b600082019050919050565b6000614fc682614f98565b9150819050919050565b6000606082019050614fe56000830186613dc7565b614ff26020830185613dc7565b614fff6040830184613dc7565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061507481613c48565b92915050565b6000602082840312156150905761508f613c11565b5b600061509e84828501615065565b91505092915050565b6000819050919050565b60006150cc6150c76150c2846150a7565b613d4d565b613c74565b9050919050565b6150dc816150b1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61511781613c36565b82525050565b6000615129838361510e565b60208301905092915050565b6000602082019050919050565b600061514d826150e2565b61515781856150ed565b9350615162836150fe565b8060005b8381101561519357815161517a888261511d565b975061518583615135565b925050600181019050615166565b5085935050505092915050565b600060a0820190506151b56000830188613dc7565b6151c260208301876150d3565b81810360408301526151d48186615142565b90506151e36060830185613ea8565b6151f06080830184613dc7565b9695505050505050565b600060c08201905061520f6000830189613ea8565b61521c6020830188613dc7565b61522960408301876150d3565b61523660608301866150d3565b6152436080830185613ea8565b61525060a0830184613dc7565b979650505050505050565b60008060006060848603121561527457615273613c11565b5b6000615282868287016148ae565b9350506020615293868287016148ae565b92505060406152a4868287016148ae565b915050925092509256fea2646970667358221220bd011f750734379001419c7fbd21f56b92f5bcc67dcb9735d71bf108ab70674464736f6c63430008110033
Deployed Bytecode
0x6080604052600436106103a65760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610dcd578063f637434214610df6578063f8b45b0514610e21578063fe72b27a14610e4c576103ad565b8063dd62ed3e14610d0f578063e2f4560514610d4c578063e884f26014610d77578063f11a24d314610da2576103ad565b8063c876d0b9116100dc578063c876d0b914610c51578063c8c8ebe414610c7c578063d257b34f14610ca7578063d85ba06314610ce4576103ad565b8063bbc0c74214610bab578063c024666814610bd6578063c17b5b8c14610bff578063c18bc19514610c28576103ad565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610add578063a9059cbb14610b08578063aacebbe314610b45578063b62496f514610b6e576103ad565b80639ec22c0e14610a1f5780639fccce3214610a4a578063a0d82dc514610a75578063a457c2d714610aa0576103ad565b8063924de9b7116101c1578063924de9b71461097757806395d89b41146109a05780639a7a23d6146109cb5780639c3b4fdc146109f4576103ad565b80638da5cb5b146108f65780638ea5220f14610921578063921369131461094c576103ad565b806339509351116102cc578063715018a61161026a57806375f0a8741161023957806375f0a874146108605780637bce5a041461088b5780638095d564146108b65780638a8c523c146108df576103ad565b8063715018a6146107cc578063730c1888146107e3578063751039fc1461080c5780637571336a14610837576103ad565b80634fbee193116102a65780634fbee193146106fc5780636a486a8e146107395780636ddd17131461076457806370a082311461078f576103ad565b8063395093511461066957806349bd5a5e146106a65780634a62bb65146106d1576103ad565b8063199ffc721161034457806323b872dd1161031357806323b872dd146105ab5780632c3e486c146105e85780632e82f1a014610613578063313ce5671461063e576103ad565b8063199ffc72146105015780631a8145bb1461052c5780631f3fed8f14610557578063203e727e14610582576103ad565b80631694505e116103805780631694505e1461045757806318160ddd146104825780631816467f146104ad578063184c16c5146104d6576103ad565b806306fdde03146103b2578063095ea7b3146103dd5780631597f55d1461041a576103ad565b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7610e89565b6040516103d49190613bef565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190613caa565b610f1b565b6040516104119190613d05565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190613d20565b610f3e565b60405161044e9190613d05565b60405180910390f35b34801561046357600080fd5b5061046c610f5d565b6040516104799190613dac565b60405180910390f35b34801561048e57600080fd5b50610497610f83565b6040516104a49190613dd6565b60405180910390f35b3480156104b957600080fd5b506104d460048036038101906104cf9190613d20565b610f8d565b005b3480156104e257600080fd5b506104eb611055565b6040516104f89190613dd6565b60405180910390f35b34801561050d57600080fd5b5061051661105b565b6040516105239190613dd6565b60405180910390f35b34801561053857600080fd5b50610541611061565b60405161054e9190613dd6565b60405180910390f35b34801561056357600080fd5b5061056c611067565b6040516105799190613dd6565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a49190613df1565b61106d565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190613e1e565b611108565b6040516105df9190613d05565b60405180910390f35b3480156105f457600080fd5b506105fd611137565b60405161060a9190613dd6565b60405180910390f35b34801561061f57600080fd5b5061062861113d565b6040516106359190613d05565b60405180910390f35b34801561064a57600080fd5b50610653611150565b6040516106609190613e8d565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b9190613caa565b611159565b60405161069d9190613d05565b60405180910390f35b3480156106b257600080fd5b506106bb611190565b6040516106c89190613eb7565b60405180910390f35b3480156106dd57600080fd5b506106e66111b6565b6040516106f39190613d05565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190613d20565b6111c9565b6040516107309190613d05565b60405180910390f35b34801561074557600080fd5b5061074e61121f565b60405161075b9190613dd6565b60405180910390f35b34801561077057600080fd5b50610779611225565b6040516107869190613d05565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190613d20565b611238565b6040516107c39190613dd6565b60405180910390f35b3480156107d857600080fd5b506107e1611280565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190613efe565b611294565b005b34801561081857600080fd5b50610821611360565b60405161082e9190613d05565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613f51565b61138c565b005b34801561086c57600080fd5b506108756113ef565b6040516108829190613eb7565b60405180910390f35b34801561089757600080fd5b506108a0611415565b6040516108ad9190613dd6565b60405180910390f35b3480156108c257600080fd5b506108dd60048036038101906108d89190613f91565b61141b565b005b3480156108eb57600080fd5b506108f46114a6565b005b34801561090257600080fd5b5061090b6114ed565b6040516109189190613eb7565b60405180910390f35b34801561092d57600080fd5b50610936611517565b6040516109439190613eb7565b60405180910390f35b34801561095857600080fd5b5061096161153d565b60405161096e9190613dd6565b60405180910390f35b34801561098357600080fd5b5061099e60048036038101906109999190613fe4565b611543565b005b3480156109ac57600080fd5b506109b5611568565b6040516109c29190613bef565b60405180910390f35b3480156109d757600080fd5b506109f260048036038101906109ed9190613f51565b6115fa565b005b348015610a0057600080fd5b50610a096116a0565b604051610a169190613dd6565b60405180910390f35b348015610a2b57600080fd5b50610a346116a6565b604051610a419190613dd6565b60405180910390f35b348015610a5657600080fd5b50610a5f6116ac565b604051610a6c9190613dd6565b60405180910390f35b348015610a8157600080fd5b50610a8a6116b2565b604051610a979190613dd6565b60405180910390f35b348015610aac57600080fd5b50610ac76004803603810190610ac29190613caa565b6116b8565b604051610ad49190613d05565b60405180910390f35b348015610ae957600080fd5b50610af261172f565b604051610aff9190613dd6565b60405180910390f35b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190613caa565b611735565b604051610b3c9190613d05565b60405180910390f35b348015610b5157600080fd5b50610b6c6004803603810190610b679190613d20565b611758565b005b348015610b7a57600080fd5b50610b956004803603810190610b909190613d20565b611820565b604051610ba29190613d05565b60405180910390f35b348015610bb757600080fd5b50610bc0611840565b604051610bcd9190613d05565b60405180910390f35b348015610be257600080fd5b50610bfd6004803603810190610bf89190613f51565b611853565b005b348015610c0b57600080fd5b50610c266004803603810190610c219190613f91565b611904565b005b348015610c3457600080fd5b50610c4f6004803603810190610c4a9190613df1565b61198f565b005b348015610c5d57600080fd5b50610c66611a2a565b604051610c739190613d05565b60405180910390f35b348015610c8857600080fd5b50610c91611a3d565b604051610c9e9190613dd6565b60405180910390f35b348015610cb357600080fd5b50610cce6004803603810190610cc99190613df1565b611a43565b604051610cdb9190613d05565b60405180910390f35b348015610cf057600080fd5b50610cf9611b24565b604051610d069190613dd6565b60405180910390f35b348015610d1b57600080fd5b50610d366004803603810190610d319190614011565b611b2a565b604051610d439190613dd6565b60405180910390f35b348015610d5857600080fd5b50610d61611bb1565b604051610d6e9190613dd6565b60405180910390f35b348015610d8357600080fd5b50610d8c611bb7565b604051610d999190613d05565b60405180910390f35b348015610dae57600080fd5b50610db7611be3565b604051610dc49190613dd6565b60405180910390f35b348015610dd957600080fd5b50610df46004803603810190610def9190613d20565b611be9565b005b348015610e0257600080fd5b50610e0b611c6c565b604051610e189190613dd6565b60405180910390f35b348015610e2d57600080fd5b50610e36611c72565b604051610e439190613dd6565b60405180910390f35b348015610e5857600080fd5b50610e736004803603810190610e6e9190613df1565b611c78565b604051610e809190613d05565b60405180910390f35b606060038054610e9890614080565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec490614080565b8015610f115780601f10610ee657610100808354040283529160200191610f11565b820191906000526020600020905b815481529060010190602001808311610ef457829003601f168201915b5050505050905090565b600080610f26611ee2565b9050610f33818585611eea565b600191505092915050565b602080528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610f956120b3565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b600d5481565b601d5481565b601c5481565b6110756120b3565b670de0b6b3a76400006103e8600161108b610f83565b61109591906140e0565b61109f9190614151565b6110a99190614151565b8110156110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e2906141f4565b60405180910390fd5b670de0b6b3a7640000816110ff91906140e0565b600a8190555050565b600080611113611ee2565b9050611120858285612131565b61112b8585856121bd565b60019150509392505050565b600f5481565b600e60009054906101000a900460ff1681565b60006012905090565b600080611164611ee2565b90506111858185856111768589611b2a565b6111809190614214565b611eea565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601360029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112886120b3565b611292600061288b565b565b61129c6120b3565b6102588310156112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d8906142ba565b60405180910390fd5b6103e882111580156112f4575060008210155b611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a9061434c565b60405180910390fd5b82600f8190555081600d8190555080600e60006101000a81548160ff021916908315150217905550505050565b600061136a6120b3565b6000601360006101000a81548160ff0219169083151502179055506001905090565b6113946120b3565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6114236120b3565b82601581905550816016819055508060178190555060175460165460155461144b9190614214565b6114559190614214565b601481905550600b60145411156114a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611498906143b8565b60405180910390fd5b505050565b6114ae6120b3565b6001601360016101000a81548160ff0219169083151502179055506001601360026101000a81548160ff02191690831515021790555042601081905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b61154b6120b3565b80601360026101000a81548160ff02191690831515021790555050565b60606004805461157790614080565b80601f01602080910402602001604051908101604052809291908181526020018280546115a390614080565b80156115f05780601f106115c5576101008083540402835291602001916115f0565b820191906000526020600020905b8154815290600101906020018083116115d357829003601f168201915b5050505050905090565b6116026120b3565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611692576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116899061444a565b60405180910390fd5b61169c8282612951565b5050565b60175481565b60125481565b601e5481565b601b5481565b6000806116c3611ee2565b905060006116d18286611b2a565b905083811015611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d906144dc565b60405180910390fd5b6117238286868403611eea565b60019250505092915050565b60105481565b600080611740611ee2565b905061174d8185856121bd565b600191505092915050565b6117606120b3565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b601360019054906101000a900460ff1681565b61185b6120b3565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516118f89190613d05565b60405180910390a25050565b61190c6120b3565b8260198190555081601a8190555080601b81905550601b54601a546019546119349190614214565b61193e9190614214565b601881905550601e601854111561198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190614548565b60405180910390fd5b505050565b6119976120b3565b670de0b6b3a76400006103e860056119ad610f83565b6119b791906140e0565b6119c19190614151565b6119cb9190614151565b811015611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a04906145da565b60405180910390fd5b670de0b6b3a764000081611a2191906140e0565b600c8190555050565b601360039054906101000a900460ff1681565b600a5481565b6000611a4d6120b3565b620186a06001611a5b610f83565b611a6591906140e0565b611a6f9190614151565b821015611ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa89061466c565b60405180910390fd5b6103e86005611abe610f83565b611ac891906140e0565b611ad29190614151565b821115611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b906146fe565b60405180910390fd5b81600b8190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b6000611bc16120b3565b6000601360036101000a81548160ff0219169083151502179055506001905090565b60165481565b611bf16120b3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5790614790565b60405180910390fd5b611c698161288b565b50565b601a5481565b600c5481565b6000611c826120b3565b601154601254611c929190614214565b4211611cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cca906147fc565b60405180910390fd5b6103e8821115611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f9061488e565b60405180910390fd5b4260128190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401611d7c9190613eb7565b602060405180830381865afa158015611d99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dbd91906148c3565b90506000611de8612710611dda86856129f290919063ffffffff16565b612a0890919063ffffffff16565b90506000811115611e2357611e22600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead83612a1e565b5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611e9257600080fd5b505af1158015611ea6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5090614962565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf906149f4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120a69190613dd6565b60405180910390a3505050565b6120bb611ee2565b73ffffffffffffffffffffffffffffffffffffffff166120d96114ed565b73ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212690614a60565b60405180910390fd5b565b600061213d8484611b2a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146121b757818110156121a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a090614acc565b60405180910390fd5b6121b68484848403611eea565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361222c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222390614b5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361229b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229290614bf0565b60405180910390fd5b600081036122b4576122af83836000612a1e565b612886565b6122bf838383612c9d565b60006122ca30611238565b90506000600b5482101590508080156122ef5750601360029054906101000a900460ff165b80156123085750601360049054906101000a900460ff16155b801561235e5750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123b45750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561240a5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561244e576001601360046101000a81548160ff021916908315150217905550612432613369565b6000601360046101000a81548160ff0219169083151502179055505b601360049054906101000a900460ff161580156124b45750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156124cc5750600e60009054906101000a900460ff165b80156124e75750600f546010546124e39190614214565b4210155b801561253d5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561254c5761254a613650565b505b600060019050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125f35750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156125fd57600090505b6000811561287657602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561266057506000601854115b1561272d5761268d606461267f601854886129f290919063ffffffff16565b612a0890919063ffffffff16565b9050601854601a54826126a091906140e0565b6126aa9190614151565b601d60008282546126bb9190614214565b92505081905550601854601b54826126d391906140e0565b6126dd9190614151565b601e60008282546126ee9190614214565b925050819055506018546019548261270691906140e0565b6127109190614151565b601c60008282546127219190614214565b92505081905550612852565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561278857506000601454115b15612851576127b560646127a7601454886129f290919063ffffffff16565b612a0890919063ffffffff16565b9050601454601654826127c891906140e0565b6127d29190614151565b601d60008282546127e39190614214565b92505081905550601454601754826127fb91906140e0565b6128059190614151565b601e60008282546128169190614214565b925050819055506014546015548261282e91906140e0565b6128389190614151565b601c60008282546128499190614214565b925050819055505b5b600081111561286757612866873083612a1e565b5b80856128739190614c10565b94505b612881878787612a1e565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183612a0091906140e0565b905092915050565b60008183612a169190614151565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8490614b5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af390614bf0565b60405180910390fd5b612b0783838361381c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8490614cb6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c209190614214565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612c849190613dd6565b60405180910390a3612c97848484613821565b50505050565b601360009054906101000a900460ff161561336457612cba6114ed565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612d285750612cf86114ed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d615750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d9b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612db45750601360049054906101000a900460ff16155b1561336357601360019054906101000a900460ff16612eae57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e6e5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea490614d22565b60405180910390fd5b5b601360039054906101000a900460ff161561307a57612ecb6114ed565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612f545750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612fae5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156130795743602160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410613034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302b90614dda565b60405180910390fd5b43602160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561311d5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131c457600a54811115613167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315e90614e6c565b60405180910390fd5b600c5461317383611238565b8261317e9190614214565b11156131bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b690614ed8565b60405180910390fd5b613362565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132675750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132b657600a548111156132b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a890614f6a565b60405180910390fd5b613361565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661336057600c5461331383611238565b8261331e9190614214565b111561335f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335690614ed8565b60405180910390fd5b5b5b5b5b5b505050565b600061337430611238565b90506000601e54601c54601d5461338b9190614214565b6133959190614214565b90506000808314806133a75750600082145b156133b45750505061364e565b6014600b546133c391906140e0565b8311156133dc576014600b546133d991906140e0565b92505b6000600283601d54866133ef91906140e0565b6133f99190614151565b6134039190614151565b9050600061341a828661382690919063ffffffff16565b9050600047905061342a8261383c565b600061343f824761382690919063ffffffff16565b9050600061346a8761345c601c54856129f290919063ffffffff16565b612a0890919063ffffffff16565b9050600061349588613487601e54866129f290919063ffffffff16565b612a0890919063ffffffff16565b905060008183856134a69190614c10565b6134b09190614c10565b90506000601d819055506000601c819055506000601e81905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161351090614fbb565b60006040518083038185875af1925050503d806000811461354d576040519150601f19603f3d011682016040523d82523d6000602084013e613552565b606091505b5050809850506000871180156135685750600081115b156135b5576135778782613a7f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516135ac93929190614fd0565b60405180910390a15b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516135fb90614fbb565b60006040518083038185875af1925050503d8060008114613638576040519150601f19603f3d011682016040523d82523d6000602084013e61363d565b606091505b505080985050505050505050505050505b565b60004260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a08231600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016136b69190613eb7565b602060405180830381865afa1580156136d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136f791906148c3565b90506000613724612710613716600d54856129f290919063ffffffff16565b612a0890919063ffffffff16565b9050600081111561375f5761375e600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661dead83612a1e565b5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156137ce57600080fd5b505af11580156137e2573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836138349190614c10565b905092915050565b6000600267ffffffffffffffff81111561385957613858615007565b5b6040519080825280602002602001820160405280156138875781602001602082028036833780820191505090505b509050308160008151811061389f5761389e615036565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613946573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061396a919061507a565b8160018151811061397e5761397d615036565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139e530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611eea565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a499594939291906151a0565b600060405180830381600087803b158015613a6357600080fd5b505af1158015613a77573d6000803e3d6000fd5b505050505050565b613aac30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611eea565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613b15969594939291906151fa565b60606040518083038185885af1158015613b33573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b58919061525b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b99578082015181840152602081019050613b7e565b60008484015250505050565b6000601f19601f8301169050919050565b6000613bc182613b5f565b613bcb8185613b6a565b9350613bdb818560208601613b7b565b613be481613ba5565b840191505092915050565b60006020820190508181036000830152613c098184613bb6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c4182613c16565b9050919050565b613c5181613c36565b8114613c5c57600080fd5b50565b600081359050613c6e81613c48565b92915050565b6000819050919050565b613c8781613c74565b8114613c9257600080fd5b50565b600081359050613ca481613c7e565b92915050565b60008060408385031215613cc157613cc0613c11565b5b6000613ccf85828601613c5f565b9250506020613ce085828601613c95565b9150509250929050565b60008115159050919050565b613cff81613cea565b82525050565b6000602082019050613d1a6000830184613cf6565b92915050565b600060208284031215613d3657613d35613c11565b5b6000613d4484828501613c5f565b91505092915050565b6000819050919050565b6000613d72613d6d613d6884613c16565b613d4d565b613c16565b9050919050565b6000613d8482613d57565b9050919050565b6000613d9682613d79565b9050919050565b613da681613d8b565b82525050565b6000602082019050613dc16000830184613d9d565b92915050565b613dd081613c74565b82525050565b6000602082019050613deb6000830184613dc7565b92915050565b600060208284031215613e0757613e06613c11565b5b6000613e1584828501613c95565b91505092915050565b600080600060608486031215613e3757613e36613c11565b5b6000613e4586828701613c5f565b9350506020613e5686828701613c5f565b9250506040613e6786828701613c95565b9150509250925092565b600060ff82169050919050565b613e8781613e71565b82525050565b6000602082019050613ea26000830184613e7e565b92915050565b613eb181613c36565b82525050565b6000602082019050613ecc6000830184613ea8565b92915050565b613edb81613cea565b8114613ee657600080fd5b50565b600081359050613ef881613ed2565b92915050565b600080600060608486031215613f1757613f16613c11565b5b6000613f2586828701613c95565b9350506020613f3686828701613c95565b9250506040613f4786828701613ee9565b9150509250925092565b60008060408385031215613f6857613f67613c11565b5b6000613f7685828601613c5f565b9250506020613f8785828601613ee9565b9150509250929050565b600080600060608486031215613faa57613fa9613c11565b5b6000613fb886828701613c95565b9350506020613fc986828701613c95565b9250506040613fda86828701613c95565b9150509250925092565b600060208284031215613ffa57613ff9613c11565b5b600061400884828501613ee9565b91505092915050565b6000806040838503121561402857614027613c11565b5b600061403685828601613c5f565b925050602061404785828601613c5f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061409857607f821691505b6020821081036140ab576140aa614051565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140eb82613c74565b91506140f683613c74565b925082820261410481613c74565b9150828204841483151761411b5761411a6140b1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061415c82613c74565b915061416783613c74565b92508261417757614176614122565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006141de602f83613b6a565b91506141e982614182565b604082019050919050565b6000602082019050818103600083015261420d816141d1565b9050919050565b600061421f82613c74565b915061422a83613c74565b9250828201905080821115614242576142416140b1565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006142a4603383613b6a565b91506142af82614248565b604082019050919050565b600060208201905081810360008301526142d381614297565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614336603083613b6a565b9150614341826142da565b604082019050919050565b6000602082019050818103600083015261436581614329565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b60006143a2601d83613b6a565b91506143ad8261436c565b602082019050919050565b600060208201905081810360008301526143d181614395565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614434603983613b6a565b915061443f826143d8565b604082019050919050565b6000602082019050818103600083015261446381614427565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006144c6602583613b6a565b91506144d18261446a565b604082019050919050565b600060208201905081810360008301526144f5816144b9565b9050919050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000614532601d83613b6a565b915061453d826144fc565b602082019050919050565b6000602082019050818103600083015261456181614525565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006145c4602483613b6a565b91506145cf82614568565b604082019050919050565b600060208201905081810360008301526145f3816145b7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614656603583613b6a565b9150614661826145fa565b604082019050919050565b6000602082019050818103600083015261468581614649565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006146e8603483613b6a565b91506146f38261468c565b604082019050919050565b60006020820190508181036000830152614717816146db565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061477a602683613b6a565b91506147858261471e565b604082019050919050565b600060208201905081810360008301526147a98161476d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006147e6602083613b6a565b91506147f1826147b0565b602082019050919050565b60006020820190508181036000830152614815816147d9565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614878602a83613b6a565b91506148838261481c565b604082019050919050565b600060208201905081810360008301526148a78161486b565b9050919050565b6000815190506148bd81613c7e565b92915050565b6000602082840312156148d9576148d8613c11565b5b60006148e7848285016148ae565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061494c602483613b6a565b9150614957826148f0565b604082019050919050565b6000602082019050818103600083015261497b8161493f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149de602283613b6a565b91506149e982614982565b604082019050919050565b60006020820190508181036000830152614a0d816149d1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a4a602083613b6a565b9150614a5582614a14565b602082019050919050565b60006020820190508181036000830152614a7981614a3d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614ab6601d83613b6a565b9150614ac182614a80565b602082019050919050565b60006020820190508181036000830152614ae581614aa9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b48602583613b6a565b9150614b5382614aec565b604082019050919050565b60006020820190508181036000830152614b7781614b3b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614bda602383613b6a565b9150614be582614b7e565b604082019050919050565b60006020820190508181036000830152614c0981614bcd565b9050919050565b6000614c1b82613c74565b9150614c2683613c74565b9250828203905081811115614c3e57614c3d6140b1565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614ca0602683613b6a565b9150614cab82614c44565b604082019050919050565b60006020820190508181036000830152614ccf81614c93565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614d0c601683613b6a565b9150614d1782614cd6565b602082019050919050565b60006020820190508181036000830152614d3b81614cff565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614dc4604983613b6a565b9150614dcf82614d42565b606082019050919050565b60006020820190508181036000830152614df381614db7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614e56603583613b6a565b9150614e6182614dfa565b604082019050919050565b60006020820190508181036000830152614e8581614e49565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614ec2601383613b6a565b9150614ecd82614e8c565b602082019050919050565b60006020820190508181036000830152614ef181614eb5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614f54603683613b6a565b9150614f5f82614ef8565b604082019050919050565b60006020820190508181036000830152614f8381614f47565b9050919050565b600081905092915050565b50565b6000614fa5600083614f8a565b9150614fb082614f95565b600082019050919050565b6000614fc682614f98565b9150819050919050565b6000606082019050614fe56000830186613dc7565b614ff26020830185613dc7565b614fff6040830184613dc7565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061507481613c48565b92915050565b6000602082840312156150905761508f613c11565b5b600061509e84828501615065565b91505092915050565b6000819050919050565b60006150cc6150c76150c2846150a7565b613d4d565b613c74565b9050919050565b6150dc816150b1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61511781613c36565b82525050565b6000615129838361510e565b60208301905092915050565b6000602082019050919050565b600061514d826150e2565b61515781856150ed565b9350615162836150fe565b8060005b8381101561519357815161517a888261511d565b975061518583615135565b925050600181019050615166565b5085935050505092915050565b600060a0820190506151b56000830188613dc7565b6151c260208301876150d3565b81810360408301526151d48186615142565b90506151e36060830185613ea8565b6151f06080830184613dc7565b9695505050505050565b600060c08201905061520f6000830189613ea8565b61521c6020830188613dc7565b61522960408301876150d3565b61523660608301866150d3565b6152436080830185613ea8565b61525060a0830184613dc7565b979650505050505050565b60008060006060848603121561527457615273613c11565b5b6000615282868287016148ae565b9350506020615293868287016148ae565b92505060406152a4868287016148ae565b915050925092509256fea2646970667358221220bd011f750734379001419c7fbd21f56b92f5bcc67dcb9735d71bf108ab70674464736f6c63430008110033
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.