ERC-20
Overview
Max Total Supply
1,000,000 ALPHA
Holders
81
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
8,417.851935584 ALPHAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AlphaLabs
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Unlicensed // ██████╗ ██╗ ██╗ █████╗ ██╗ ██████╗ ██╗ ██╗ █████╗ ██╗ █████╗ ██████╗ ███████╗███████╗████████╗██╗ ██╗ // ██╔═████╗╚██╗██╔╝██╔══██╗██║ ██╔══██╗██║ ██║██╔══██╗██║ ██╔══██╗██╔══██╗██╔════╝██╔════╝╚══██╔══╝██║ ██║ // ██║██╔██║ ╚███╔╝ ███████║██║ ██████╔╝███████║███████║██║ ███████║██████╔╝███████╗█████╗ ██║ ███████║ // ████╔╝██║ ██╔██╗ ██╔══██║██║ ██╔═══╝ ██╔══██║██╔══██║██║ ██╔══██║██╔══██╗╚════██║██╔══╝ ██║ ██╔══██║ // ╚██████╔╝██╔╝ ██╗██║ ██║███████╗██║ ██║ ██║██║ ██║███████╗██║ ██║██████╔╝███████║███████╗ ██║ ██║ ██║ // ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚══════╝╚══════╝ ╚═╝ ╚═╝ ╚═╝ // Telegram: @AlphaLabs_Official // Website: https://AlphaLabsETH.co // 0xAlphaLabs is a technology-driven developers group that, thanks to deep Python knowledge, provides superior quality services in crypto space. // Our vision is set to enable teams to come directly to the supplier, avoiding expensive and fake crypto services. pragma solidity ^0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; return msg.data; } } 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; } 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; } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } interface IERC20Metadata is IERC20 { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); } contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function decimals() public view virtual override returns (uint8) { return 9; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } 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); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } function div(int256 a, int256 b) internal pure returns (int256) { require(b != -1 || a != MIN_INT256); return a / b; } function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } 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); } 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; } contract AlphaLabs is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public deployerAddress; address public researchWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public swapEnabled = true; uint256 public buyTotalFees; uint256 public buyresearchFee; uint256 public buyLiquidityFee; uint256 public buyBurnFee; uint256 public sellTotalFees; uint256 public sellresearchFee; uint256 public sellLiquidityFee; uint256 public sellBurnFee; uint256 public tokensForresearch; uint256 public tokensForLiquidity; uint256 public tokensForBurn; /******************/ mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTransactionAmount; 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 researchWalletUpdated(address indexed newWallet, address indexed oldWallet); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event BuyBackTriggered(uint256 amount); constructor() ERC20("0xAlphaLabs", "ALPHA") { address newOwner = address(owner()); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyresearchFee = 20; uint256 _buyLiquidityFee = 0; uint256 _buyBurnFee = 0; uint256 _sellresearchFee = 25; uint256 _sellLiquidityFee = 0; uint256 _sellBurnFee = 0; uint256 totalSupply = 1000000 * 1e9; maxTransactionAmount = totalSupply * 3 / 1000; // 0.3% maxTransactionAmountTxn swapTokensAtAmount = totalSupply * 1 / 10000; // 0.01% swap wallet maxWallet = 20000000000000; // 2% max wallet buyresearchFee = _buyresearchFee; buyLiquidityFee = _buyLiquidityFee; buyBurnFee = _buyBurnFee; buyTotalFees = buyresearchFee + buyLiquidityFee + buyBurnFee; sellresearchFee = _sellresearchFee; sellLiquidityFee = _sellLiquidityFee; sellBurnFee = _sellBurnFee; sellTotalFees = sellresearchFee + sellLiquidityFee + sellBurnFee; deployerAddress = address(0x08ad1512c2fE5B71054605f094604E67EEFDE48d); researchWallet = address(0x2985E22210536b4A0753aF15459D3343F9BF47CC); excludeFromFees(newOwner, true); // Owner address excludeFromFees(address(this), true); // CA excludeFromFees(address(0xdead), true); // Burn address excludeFromFees(researchWallet, true); // research wallet excludeFromFees(deployerAddress, true); // Deployer Address excludeFromMaxTransaction(newOwner, true); // Owner address excludeFromMaxTransaction(address(this), true); // CA excludeFromMaxTransaction(address(0xdead), true); // Burn address excludeFromMaxTransaction(researchWallet, true); // research wallet excludeFromMaxTransaction(deployerAddress, true); // Deployer Address /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(newOwner, totalSupply); transferOwnership(newOwner); } receive() external payable { } 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 updateMaxAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 5 / 1000)/1e9, "Cannot set maxTransactionAmount lower than 0.5%"); maxTransactionAmount = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } function updateBuyFees(uint256 _researchFee, uint256 _liquidityFee, uint256 _burnFee) external onlyOwner { buyresearchFee = _researchFee; buyLiquidityFee = _liquidityFee; buyBurnFee = _burnFee; buyTotalFees = buyresearchFee + buyLiquidityFee + buyBurnFee; require(buyTotalFees <= 25, "Must keep fees at 25% or less"); } function updateSellFees(uint256 _researchFee, uint256 _liquidityFee, uint256 _burnFee) external onlyOwner { sellresearchFee = _researchFee; sellLiquidityFee = _liquidityFee; sellBurnFee = _burnFee; sellTotalFees = sellresearchFee + sellLiquidityFee + sellBurnFee; require(sellTotalFees <= 25, "Must keep fees at 25% or less"); } function removeLimits() external onlyOwner { maxTransactionAmount = totalSupply(); maxWallet = 20000000000000; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateresearchWallet(address newresearchWallet) external onlyOwner { emit researchWalletUpdated(newresearchWallet, researchWallet); researchWallet = newresearchWallet; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(amount == 0) { super._transfer(from, to, 0); return; } if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } else if (!_isExcludedMaxTransactionAmount[to]){ require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if(takeFee){ if (automatedMarketMakerPairs[to] && sellTotalFees > 0){ fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees; tokensForresearch += fees * sellresearchFee / sellTotalFees; tokensForBurn += fees * sellBurnFee / sellTotalFees; } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; tokensForresearch += fees * buyresearchFee / buyTotalFees; tokensForBurn += fees * buyBurnFee / buyTotalFees; } if(fees > 0){ super._transfer(from, address(this), (fees - tokensForBurn)); } if(tokensForBurn > 0){ super._transfer(from, deadAddress, tokensForBurn); tokensForBurn = 0; } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForresearch; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} 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 ethForresearch = ethBalance.mul(tokensForresearch).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForresearch; tokensForLiquidity = 0; tokensForresearch = 0; (bool success,) = address(researchWallet).call{value: ethForresearch}(""); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(researchWallet).call{value: address(this).balance}(""); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BuyBackTriggered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"researchWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyresearchFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"researchWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellBurnFee","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":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellresearchFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBurn","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":"tokensForresearch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"_researchFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_researchFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","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"},{"inputs":[{"internalType":"address","name":"newresearchWallet","type":"address"}],"name":"updateresearchWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600b60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600b81526020017f3078416c7068614c6162730000000000000000000000000000000000000000008152506040518060400160405280600581526020017f414c5048410000000000000000000000000000000000000000000000000000008152508160039081620000aa919062001038565b508060049081620000bc919062001038565b5050506000620000d1620006b760201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600062000182620006bf60201b60201c565b90506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001b0816001620006e960201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000230573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000256919062001189565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e4919062001189565b6040518363ffffffff1660e01b815260040162000303929190620011cc565b6020604051808303816000875af115801562000323573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000349919062001189565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200039160a0516001620006e960201b60201c565b620003a660a0516001620007e660201b60201c565b600060149050600080600060199050600080600066038d7ea4c6800090506103e8600382620003d6919062001228565b620003e29190620012a2565b600881905550612710600182620003fa919062001228565b620004069190620012a2565b6009819055506512309ce54000600a8190555086600d8190555085600e8190555084600f81905550600f54600e54600d54620004439190620012da565b6200044f9190620012da565b600c819055508360118190555082601281905550816013819055506013546012546011546200047f9190620012da565b6200048b9190620012da565b6010819055507308ad1512c2fe5b71054605f094604e67eefde48d600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732985e22210536b4a0753af15459d3343f9bf47cc600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200054e8960016200088760201b60201c565b620005613060016200088760201b60201c565b6200057661dead60016200088760201b60201c565b620005ab600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200088760201b60201c565b620005e0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200088760201b60201c565b620005f3896001620006e960201b60201c565b62000606306001620006e960201b60201c565b6200061b61dead6001620006e960201b60201c565b62000650600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006e960201b60201c565b62000685600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006e960201b60201c565b620006978982620009d460201b60201c565b620006a88962000b8260201b60201c565b5050505050505050506200157c565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006f9620006b760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200078b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007829062001376565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b62000897620006b760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000929576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009209062001376565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009c89190620013b5565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a3d9062001422565b60405180910390fd5b62000a5a6000838362000d5660201b60201c565b62000a768160025462000d5b60201b62001f711790919060201c565b60028190555062000ad4816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000d5b60201b62001f711790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b76919062001455565b60405180910390a35050565b62000b92620006b760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000c24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c1b9062001376565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000c96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c8d90620014e8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600080828462000d6c9190620012da565b90508381101562000db4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000dab906200155a565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e4057607f821691505b60208210810362000e565762000e5562000df8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000ec07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000e81565b62000ecc868362000e81565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000f1962000f1362000f0d8462000ee4565b62000eee565b62000ee4565b9050919050565b6000819050919050565b62000f358362000ef8565b62000f4d62000f448262000f20565b84845462000e8e565b825550505050565b600090565b62000f6462000f55565b62000f7181848462000f2a565b505050565b5b8181101562000f995762000f8d60008262000f5a565b60018101905062000f77565b5050565b601f82111562000fe85762000fb28162000e5c565b62000fbd8462000e71565b8101602085101562000fcd578190505b62000fe562000fdc8562000e71565b83018262000f76565b50505b505050565b600082821c905092915050565b60006200100d6000198460080262000fed565b1980831691505092915050565b600062001028838362000ffa565b9150826002028217905092915050565b620010438262000dbe565b67ffffffffffffffff8111156200105f576200105e62000dc9565b5b6200106b825462000e27565b6200107882828562000f9d565b600060209050601f831160018114620010b057600084156200109b578287015190505b620010a785826200101a565b86555062001117565b601f198416620010c08662000e5c565b60005b82811015620010ea57848901518255600182019150602085019450602081019050620010c3565b868310156200110a578489015162001106601f89168262000ffa565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620011518262001124565b9050919050565b620011638162001144565b81146200116f57600080fd5b50565b600081519050620011838162001158565b92915050565b600060208284031215620011a257620011a16200111f565b5b6000620011b28482850162001172565b91505092915050565b620011c68162001144565b82525050565b6000604082019050620011e36000830185620011bb565b620011f26020830184620011bb565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620012358262000ee4565b9150620012428362000ee4565b9250828202620012528162000ee4565b915082820484148315176200126c576200126b620011f9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620012af8262000ee4565b9150620012bc8362000ee4565b925082620012cf57620012ce62001273565b5b828204905092915050565b6000620012e78262000ee4565b9150620012f48362000ee4565b92508282019050808211156200130f576200130e620011f9565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200135e60208362001315565b91506200136b8262001326565b602082019050919050565b6000602082019050818103600083015262001391816200134f565b9050919050565b60008115159050919050565b620013af8162001398565b82525050565b6000602082019050620013cc6000830184620013a4565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200140a601f8362001315565b91506200141782620013d2565b602082019050919050565b600060208201905081810360008301526200143d81620013fb565b9050919050565b6200144f8162000ee4565b82525050565b60006020820190506200146c600083018462001444565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000620014d060268362001315565b9150620014dd8262001472565b604082019050919050565b600060208201905081810360008301526200150381620014c1565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001542601b8362001315565b91506200154f826200150a565b602082019050919050565b60006020820190508181036000830152620015758162001533565b9050919050565b60805160a0516148ce620015cc60003960008181610ed6015261174d015260008181610d010152818161334f0152818161343001528181613457015281816134f3015261351a01526148ce6000f3fe60806040526004361061028c5760003560e01c80638da5cb5b1161015a578063d257b34f116100c1578063f11a24d31161007a578063f11a24d314610a09578063f2fde38b14610a34578063f637434214610a5d578063f7eabcde14610a88578063f8b45b0514610ab3578063f8e3cc8314610ade57610293565b8063d257b34f146108e3578063d85ba06314610920578063dd62ed3e1461094b578063e2f4560514610988578063e71dc3f5146109b3578063efdee94f146109de57610293565b8063adb873bd11610113578063adb873bd146107d3578063b62496f5146107fe578063c02466681461083b578063c17b5b8c14610864578063c8c8ebe41461088d578063cc6c4d89146108b857610293565b80638da5cb5b146106b1578063924de9b7146106dc57806395d89b41146107055780639a7a23d614610730578063a457c2d714610759578063a9059cbb1461079657610293565b806339509351116101fe5780636ddd1713116101b75780636ddd1713146105c957806370a08231146105f4578063715018a614610631578063751039fc146106485780637571336a1461065f5780638095d5641461068857610293565b806339509351146104a557806349bd5a5e146104e25780634cf838941461050d5780634fbee193146105365780636a486a8e146105735780636d2dda021461059e57610293565b806318160ddd1161025057806318160ddd146103915780631a8145bb146103bc5780631d777856146103e757806323b872dd1461041257806327c8f8351461044f578063313ce5671461047a57610293565b806306fdde0314610298578063095ea7b3146102c3578063106b5da11461030057806310d5de53146103295780631694505e1461036657610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610b09565b6040516102ba91906136bc565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190613777565b610b9b565b6040516102f791906137d2565b60405180910390f35b34801561030c57600080fd5b50610327600480360381019061032291906137ed565b610bb9565b005b34801561033557600080fd5b50610350600480360381019061034b919061381a565b610cdf565b60405161035d91906137d2565b60405180910390f35b34801561037257600080fd5b5061037b610cff565b60405161038891906138a6565b60405180910390f35b34801561039d57600080fd5b506103a6610d23565b6040516103b391906138d0565b60405180910390f35b3480156103c857600080fd5b506103d1610d2d565b6040516103de91906138d0565b60405180910390f35b3480156103f357600080fd5b506103fc610d33565b60405161040991906138d0565b60405180910390f35b34801561041e57600080fd5b50610439600480360381019061043491906138eb565b610d39565b60405161044691906137d2565b60405180910390f35b34801561045b57600080fd5b50610464610e12565b604051610471919061394d565b60405180910390f35b34801561048657600080fd5b5061048f610e18565b60405161049c9190613984565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190613777565b610e21565b6040516104d991906137d2565b60405180910390f35b3480156104ee57600080fd5b506104f7610ed4565b604051610504919061394d565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f919061381a565b610ef8565b005b34801561054257600080fd5b5061055d6004803603810190610558919061381a565b61104f565b60405161056a91906137d2565b60405180910390f35b34801561057f57600080fd5b506105886110a5565b60405161059591906138d0565b60405180910390f35b3480156105aa57600080fd5b506105b36110ab565b6040516105c0919061394d565b60405180910390f35b3480156105d557600080fd5b506105de6110d1565b6040516105eb91906137d2565b60405180910390f35b34801561060057600080fd5b5061061b6004803603810190610616919061381a565b6110e4565b60405161062891906138d0565b60405180910390f35b34801561063d57600080fd5b5061064661112c565b005b34801561065457600080fd5b5061065d611284565b005b34801561066b57600080fd5b50610686600480360381019061068191906139cb565b611338565b005b34801561069457600080fd5b506106af60048036038101906106aa9190613a0b565b61142a565b005b3480156106bd57600080fd5b506106c6611544565b6040516106d3919061394d565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613a5e565b61156e565b005b34801561071157600080fd5b5061071a611622565b60405161072791906136bc565b60405180910390f35b34801561073c57600080fd5b50610757600480360381019061075291906139cb565b6116b4565b005b34801561076557600080fd5b50610780600480360381019061077b9190613777565b6117e7565b60405161078d91906137d2565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b89190613777565b6118b4565b6040516107ca91906137d2565b60405180910390f35b3480156107df57600080fd5b506107e86118d2565b6040516107f591906138d0565b60405180910390f35b34801561080a57600080fd5b506108256004803603810190610820919061381a565b6118d8565b60405161083291906137d2565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d91906139cb565b6118f8565b005b34801561087057600080fd5b5061088b60048036038101906108869190613a0b565b611a38565b005b34801561089957600080fd5b506108a2611b52565b6040516108af91906138d0565b60405180910390f35b3480156108c457600080fd5b506108cd611b58565b6040516108da91906138d0565b60405180910390f35b3480156108ef57600080fd5b5061090a600480360381019061090591906137ed565b611b5e565b60405161091791906137d2565b60405180910390f35b34801561092c57600080fd5b50610935611cce565b60405161094291906138d0565b60405180910390f35b34801561095757600080fd5b50610972600480360381019061096d9190613a8b565b611cd4565b60405161097f91906138d0565b60405180910390f35b34801561099457600080fd5b5061099d611d5b565b6040516109aa91906138d0565b60405180910390f35b3480156109bf57600080fd5b506109c8611d61565b6040516109d591906138d0565b60405180910390f35b3480156109ea57600080fd5b506109f3611d67565b604051610a00919061394d565b60405180910390f35b348015610a1557600080fd5b50610a1e611d8d565b604051610a2b91906138d0565b60405180910390f35b348015610a4057600080fd5b50610a5b6004803603810190610a56919061381a565b611d93565b005b348015610a6957600080fd5b50610a72611f59565b604051610a7f91906138d0565b60405180910390f35b348015610a9457600080fd5b50610a9d611f5f565b604051610aaa91906138d0565b60405180910390f35b348015610abf57600080fd5b50610ac8611f65565b604051610ad591906138d0565b60405180910390f35b348015610aea57600080fd5b50610af3611f6b565b604051610b0091906138d0565b60405180910390f35b606060038054610b1890613afa565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4490613afa565b8015610b915780601f10610b6657610100808354040283529160200191610b91565b820191906000526020600020905b815481529060010190602001808311610b7457829003601f168201915b5050505050905090565b6000610baf610ba8611fcf565b8484611fd7565b6001905092915050565b610bc1611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4790613b77565b60405180910390fd5b633b9aca006103e86005610c62610d23565b610c6c9190613bc6565b610c769190613c37565b610c809190613c37565b811015610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb990613cda565b60405180910390fd5b670de0b6b3a764000081610cd69190613bc6565b60088190555050565b60186020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60155481565b60165481565b6000610d468484846121a0565b610e0784610d52611fcf565b610e028560405180606001604052806028815260200161484c60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610db8611fcf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b949092919063ffffffff16565b611fd7565b600190509392505050565b61dead81565b60006009905090565b6000610eca610e2e611fcf565b84610ec58560016000610e3f611fcf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f7190919063ffffffff16565b611fd7565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610f00611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8690613b77565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f631c1e96b7a2d55e05b72d7f394bbf55ec52b8b51c2f33b430c653b6a31d51c160405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60105481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611134611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba90613b77565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61128c611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131290613b77565b60405180910390fd5b611323610d23565b6008819055506512309ce54000600a81905550565b611340611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690613b77565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611432611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b890613b77565b60405180910390fd5b82600d8190555081600e8190555080600f81905550600f54600e54600d546114e99190613cfa565b6114f39190613cfa565b600c819055506019600c54111561153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690613d7a565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611576611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613b77565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60606004805461163190613afa565b80601f016020809104026020016040519081016040528092919081815260200182805461165d90613afa565b80156116aa5780601f1061167f576101008083540402835291602001916116aa565b820191906000526020600020905b81548152906001019060200180831161168d57829003601f168201915b5050505050905090565b6116bc611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613b77565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613e0c565b60405180910390fd5b6117e38282612bf8565b5050565b60006118aa6117f4611fcf565b846118a585604051806060016040528060258152602001614874602591396001600061181e611fcf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b949092919063ffffffff16565b611fd7565b6001905092915050565b60006118c86118c1611fcf565b84846121a0565b6001905092915050565b60135481565b60196020528060005260406000206000915054906101000a900460ff1681565b611900611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690613b77565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611a2c91906137d2565b60405180910390a25050565b611a40611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac690613b77565b60405180910390fd5b826011819055508160128190555080601381905550601354601254601154611af79190613cfa565b611b019190613cfa565b60108190555060196010541115611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4490613d7a565b60405180910390fd5b505050565b60085481565b60145481565b6000611b68611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bee90613b77565b60405180910390fd5b620186a06001611c05610d23565b611c0f9190613bc6565b611c199190613c37565b821015611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5290613e9e565b60405180910390fd5b6103e86005611c68610d23565b611c729190613bc6565b611c7c9190613c37565b821115611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb590613f30565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600f5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b611d9b611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2190613b77565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9090613fc2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b600d5481565b600a5481565b60115481565b6000808284611f809190613cfa565b905083811015611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc9061402e565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d906140c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac90614152565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161219391906138d0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361220f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612206906141e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361227e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227590614276565b60405180910390fd5b600081036122975761229283836000612c99565b612b8f565b61229f611544565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561230d57506122dd611544565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123465750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612380575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123995750600560149054906101000a900460ff16155b1561268757601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124415750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124e85760085481111561248b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248290614308565b60405180910390fd5b600a54612497836110e4565b826124a29190613cfa565b11156124e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124da90614374565b60405180910390fd5b612686565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561258b5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156125da576008548111156125d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cc90614406565b60405180910390fd5b612685565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661268457600a54612637836110e4565b826126429190613cfa565b1115612683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267a90614374565b60405180910390fd5b5b5b5b5b6000612692306110e4565b9050600060095482101590508080156126b75750600b60009054906101000a900460ff165b80156126d05750600560149054906101000a900460ff16155b80156127265750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561277c5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127d25750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612816576001600560146101000a81548160ff0219169083151502179055506127fa612f2c565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128cc5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156128d657600090505b60008115612b7f57601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561293957506000601054115b15612a065761296660646129586010548861319d90919063ffffffff16565b61321790919063ffffffff16565b9050601054601254826129799190613bc6565b6129839190613c37565b601560008282546129949190613cfa565b92505081905550601054601154826129ac9190613bc6565b6129b69190613c37565b601460008282546129c79190613cfa565b92505081905550601054601354826129df9190613bc6565b6129e99190613c37565b601660008282546129fa9190613cfa565b92505081905550612b2b565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a6157506000600c54115b15612b2a57612a8e6064612a80600c548861319d90919063ffffffff16565b61321790919063ffffffff16565b9050600c54600e5482612aa19190613bc6565b612aab9190613c37565b60156000828254612abc9190613cfa565b92505081905550600c54600d5482612ad49190613bc6565b612ade9190613c37565b60146000828254612aef9190613cfa565b92505081905550600c54600f5482612b079190613bc6565b612b119190613c37565b60166000828254612b229190613cfa565b925050819055505b5b6000811115612b4d57612b4c873060165484612b479190614426565b612c99565b5b60006016541115612b7057612b678761dead601654612c99565b60006016819055505b8085612b7c9190614426565b94505b612b8a878787612c99565b505050505b505050565b6000838311158290612bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd391906136bc565b60405180910390fd5b5060008385612beb9190614426565b9050809150509392505050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cff906141e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6e90614276565b60405180910390fd5b612d82838383613261565b612ded81604051806060016040528060268152602001614826602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b949092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612e80816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f7190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612f1f91906138d0565b60405180910390a3505050565b6000612f37306110e4565b90506000601454601554612f4b9190613cfa565b90506000821480612f5c5750600081145b15612f6857505061319b565b600060028260155485612f7b9190613bc6565b612f859190613c37565b612f8f9190613c37565b90506000612fa6828561326690919063ffffffff16565b90506000479050612fb6826132b0565b6000612fcb824761326690919063ffffffff16565b90506000612ff686612fe86014548561319d90919063ffffffff16565b61321790919063ffffffff16565b9050600081836130069190614426565b9050600060158190555060006014819055506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516130609061448b565b60006040518083038185875af1925050503d806000811461309d576040519150601f19603f3d011682016040523d82523d6000602084013e6130a2565b606091505b505090506000871180156130b65750600082115b15613103576130c587836134ed565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186836015546040516130fa939291906144a0565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516131499061448b565b60006040518083038185875af1925050503d8060008114613186576040519150601f19603f3d011682016040523d82523d6000602084013e61318b565b606091505b5050809150505050505050505050505b565b60008083036131af5760009050613211565b600082846131bd9190613bc6565b90508284826131cc9190613c37565b1461320c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320390614549565b60405180910390fd5b809150505b92915050565b600061325983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506135c9565b905092915050565b505050565b60006132a883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612b94565b905092915050565b6000600267ffffffffffffffff8111156132cd576132cc614569565b5b6040519080825280602002602001820160405280156132fb5781602001602082028036833780820191505090505b509050308160008151811061331357613312614598565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133dc91906145dc565b816001815181106133f0576133ef614598565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613455307f000000000000000000000000000000000000000000000000000000000000000084611fd7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016134b7959493929190614702565b600060405180830381600087803b1580156134d157600080fd5b505af11580156134e5573d6000803e3d6000fd5b505050505050565b613518307f000000000000000000000000000000000000000000000000000000000000000084611fd7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161357f9695949392919061475c565b60606040518083038185885af115801561359d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906135c291906147d2565b5050505050565b60008083118290613610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360791906136bc565b60405180910390fd5b506000838561361f9190613c37565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561366657808201518184015260208101905061364b565b60008484015250505050565b6000601f19601f8301169050919050565b600061368e8261362c565b6136988185613637565b93506136a8818560208601613648565b6136b181613672565b840191505092915050565b600060208201905081810360008301526136d68184613683565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061370e826136e3565b9050919050565b61371e81613703565b811461372957600080fd5b50565b60008135905061373b81613715565b92915050565b6000819050919050565b61375481613741565b811461375f57600080fd5b50565b6000813590506137718161374b565b92915050565b6000806040838503121561378e5761378d6136de565b5b600061379c8582860161372c565b92505060206137ad85828601613762565b9150509250929050565b60008115159050919050565b6137cc816137b7565b82525050565b60006020820190506137e760008301846137c3565b92915050565b600060208284031215613803576138026136de565b5b600061381184828501613762565b91505092915050565b6000602082840312156138305761382f6136de565b5b600061383e8482850161372c565b91505092915050565b6000819050919050565b600061386c613867613862846136e3565b613847565b6136e3565b9050919050565b600061387e82613851565b9050919050565b600061389082613873565b9050919050565b6138a081613885565b82525050565b60006020820190506138bb6000830184613897565b92915050565b6138ca81613741565b82525050565b60006020820190506138e560008301846138c1565b92915050565b600080600060608486031215613904576139036136de565b5b60006139128682870161372c565b93505060206139238682870161372c565b925050604061393486828701613762565b9150509250925092565b61394781613703565b82525050565b6000602082019050613962600083018461393e565b92915050565b600060ff82169050919050565b61397e81613968565b82525050565b60006020820190506139996000830184613975565b92915050565b6139a8816137b7565b81146139b357600080fd5b50565b6000813590506139c58161399f565b92915050565b600080604083850312156139e2576139e16136de565b5b60006139f08582860161372c565b9250506020613a01858286016139b6565b9150509250929050565b600080600060608486031215613a2457613a236136de565b5b6000613a3286828701613762565b9350506020613a4386828701613762565b9250506040613a5486828701613762565b9150509250925092565b600060208284031215613a7457613a736136de565b5b6000613a82848285016139b6565b91505092915050565b60008060408385031215613aa257613aa16136de565b5b6000613ab08582860161372c565b9250506020613ac18582860161372c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b1257607f821691505b602082108103613b2557613b24613acb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b61602083613637565b9150613b6c82613b2b565b602082019050919050565b60006020820190508181036000830152613b9081613b54565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bd182613741565b9150613bdc83613741565b9250828202613bea81613741565b91508282048414831517613c0157613c00613b97565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c4282613741565b9150613c4d83613741565b925082613c5d57613c5c613c08565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000613cc4602f83613637565b9150613ccf82613c68565b604082019050919050565b60006020820190508181036000830152613cf381613cb7565b9050919050565b6000613d0582613741565b9150613d1083613741565b9250828201905080821115613d2857613d27613b97565b5b92915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613d64601d83613637565b9150613d6f82613d2e565b602082019050919050565b60006020820190508181036000830152613d9381613d57565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613df6603983613637565b9150613e0182613d9a565b604082019050919050565b60006020820190508181036000830152613e2581613de9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613e88603583613637565b9150613e9382613e2c565b604082019050919050565b60006020820190508181036000830152613eb781613e7b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613f1a603483613637565b9150613f2582613ebe565b604082019050919050565b60006020820190508181036000830152613f4981613f0d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fac602683613637565b9150613fb782613f50565b604082019050919050565b60006020820190508181036000830152613fdb81613f9f565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614018601b83613637565b915061402382613fe2565b602082019050919050565b600060208201905081810360008301526140478161400b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006140aa602483613637565b91506140b58261404e565b604082019050919050565b600060208201905081810360008301526140d98161409d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061413c602283613637565b9150614147826140e0565b604082019050919050565b6000602082019050818103600083015261416b8161412f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006141ce602583613637565b91506141d982614172565b604082019050919050565b600060208201905081810360008301526141fd816141c1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614260602383613637565b915061426b82614204565b604082019050919050565b6000602082019050818103600083015261428f81614253565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006142f2603583613637565b91506142fd82614296565b604082019050919050565b60006020820190508181036000830152614321816142e5565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061435e601383613637565b915061436982614328565b602082019050919050565b6000602082019050818103600083015261438d81614351565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006143f0603683613637565b91506143fb82614394565b604082019050919050565b6000602082019050818103600083015261441f816143e3565b9050919050565b600061443182613741565b915061443c83613741565b925082820390508181111561445457614453613b97565b5b92915050565b600081905092915050565b50565b600061447560008361445a565b915061448082614465565b600082019050919050565b600061449682614468565b9150819050919050565b60006060820190506144b560008301866138c1565b6144c260208301856138c1565b6144cf60408301846138c1565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614533602183613637565b915061453e826144d7565b604082019050919050565b6000602082019050818103600083015261456281614526565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506145d681613715565b92915050565b6000602082840312156145f2576145f16136de565b5b6000614600848285016145c7565b91505092915050565b6000819050919050565b600061462e61462961462484614609565b613847565b613741565b9050919050565b61463e81614613565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61467981613703565b82525050565b600061468b8383614670565b60208301905092915050565b6000602082019050919050565b60006146af82614644565b6146b9818561464f565b93506146c483614660565b8060005b838110156146f55781516146dc888261467f565b97506146e783614697565b9250506001810190506146c8565b5085935050505092915050565b600060a08201905061471760008301886138c1565b6147246020830187614635565b818103604083015261473681866146a4565b9050614745606083018561393e565b61475260808301846138c1565b9695505050505050565b600060c082019050614771600083018961393e565b61477e60208301886138c1565b61478b6040830187614635565b6147986060830186614635565b6147a5608083018561393e565b6147b260a08301846138c1565b979650505050505050565b6000815190506147cc8161374b565b92915050565b6000806000606084860312156147eb576147ea6136de565b5b60006147f9868287016147bd565b935050602061480a868287016147bd565b925050604061481b868287016147bd565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204edb8ff844554bdf43c0b5babd1b053cccf4d7a7a62796e8a80cc08fe90df3db64736f6c63430008120033
Deployed Bytecode
0x60806040526004361061028c5760003560e01c80638da5cb5b1161015a578063d257b34f116100c1578063f11a24d31161007a578063f11a24d314610a09578063f2fde38b14610a34578063f637434214610a5d578063f7eabcde14610a88578063f8b45b0514610ab3578063f8e3cc8314610ade57610293565b8063d257b34f146108e3578063d85ba06314610920578063dd62ed3e1461094b578063e2f4560514610988578063e71dc3f5146109b3578063efdee94f146109de57610293565b8063adb873bd11610113578063adb873bd146107d3578063b62496f5146107fe578063c02466681461083b578063c17b5b8c14610864578063c8c8ebe41461088d578063cc6c4d89146108b857610293565b80638da5cb5b146106b1578063924de9b7146106dc57806395d89b41146107055780639a7a23d614610730578063a457c2d714610759578063a9059cbb1461079657610293565b806339509351116101fe5780636ddd1713116101b75780636ddd1713146105c957806370a08231146105f4578063715018a614610631578063751039fc146106485780637571336a1461065f5780638095d5641461068857610293565b806339509351146104a557806349bd5a5e146104e25780634cf838941461050d5780634fbee193146105365780636a486a8e146105735780636d2dda021461059e57610293565b806318160ddd1161025057806318160ddd146103915780631a8145bb146103bc5780631d777856146103e757806323b872dd1461041257806327c8f8351461044f578063313ce5671461047a57610293565b806306fdde0314610298578063095ea7b3146102c3578063106b5da11461030057806310d5de53146103295780631694505e1461036657610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610b09565b6040516102ba91906136bc565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190613777565b610b9b565b6040516102f791906137d2565b60405180910390f35b34801561030c57600080fd5b50610327600480360381019061032291906137ed565b610bb9565b005b34801561033557600080fd5b50610350600480360381019061034b919061381a565b610cdf565b60405161035d91906137d2565b60405180910390f35b34801561037257600080fd5b5061037b610cff565b60405161038891906138a6565b60405180910390f35b34801561039d57600080fd5b506103a6610d23565b6040516103b391906138d0565b60405180910390f35b3480156103c857600080fd5b506103d1610d2d565b6040516103de91906138d0565b60405180910390f35b3480156103f357600080fd5b506103fc610d33565b60405161040991906138d0565b60405180910390f35b34801561041e57600080fd5b50610439600480360381019061043491906138eb565b610d39565b60405161044691906137d2565b60405180910390f35b34801561045b57600080fd5b50610464610e12565b604051610471919061394d565b60405180910390f35b34801561048657600080fd5b5061048f610e18565b60405161049c9190613984565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190613777565b610e21565b6040516104d991906137d2565b60405180910390f35b3480156104ee57600080fd5b506104f7610ed4565b604051610504919061394d565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f919061381a565b610ef8565b005b34801561054257600080fd5b5061055d6004803603810190610558919061381a565b61104f565b60405161056a91906137d2565b60405180910390f35b34801561057f57600080fd5b506105886110a5565b60405161059591906138d0565b60405180910390f35b3480156105aa57600080fd5b506105b36110ab565b6040516105c0919061394d565b60405180910390f35b3480156105d557600080fd5b506105de6110d1565b6040516105eb91906137d2565b60405180910390f35b34801561060057600080fd5b5061061b6004803603810190610616919061381a565b6110e4565b60405161062891906138d0565b60405180910390f35b34801561063d57600080fd5b5061064661112c565b005b34801561065457600080fd5b5061065d611284565b005b34801561066b57600080fd5b50610686600480360381019061068191906139cb565b611338565b005b34801561069457600080fd5b506106af60048036038101906106aa9190613a0b565b61142a565b005b3480156106bd57600080fd5b506106c6611544565b6040516106d3919061394d565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613a5e565b61156e565b005b34801561071157600080fd5b5061071a611622565b60405161072791906136bc565b60405180910390f35b34801561073c57600080fd5b50610757600480360381019061075291906139cb565b6116b4565b005b34801561076557600080fd5b50610780600480360381019061077b9190613777565b6117e7565b60405161078d91906137d2565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b89190613777565b6118b4565b6040516107ca91906137d2565b60405180910390f35b3480156107df57600080fd5b506107e86118d2565b6040516107f591906138d0565b60405180910390f35b34801561080a57600080fd5b506108256004803603810190610820919061381a565b6118d8565b60405161083291906137d2565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d91906139cb565b6118f8565b005b34801561087057600080fd5b5061088b60048036038101906108869190613a0b565b611a38565b005b34801561089957600080fd5b506108a2611b52565b6040516108af91906138d0565b60405180910390f35b3480156108c457600080fd5b506108cd611b58565b6040516108da91906138d0565b60405180910390f35b3480156108ef57600080fd5b5061090a600480360381019061090591906137ed565b611b5e565b60405161091791906137d2565b60405180910390f35b34801561092c57600080fd5b50610935611cce565b60405161094291906138d0565b60405180910390f35b34801561095757600080fd5b50610972600480360381019061096d9190613a8b565b611cd4565b60405161097f91906138d0565b60405180910390f35b34801561099457600080fd5b5061099d611d5b565b6040516109aa91906138d0565b60405180910390f35b3480156109bf57600080fd5b506109c8611d61565b6040516109d591906138d0565b60405180910390f35b3480156109ea57600080fd5b506109f3611d67565b604051610a00919061394d565b60405180910390f35b348015610a1557600080fd5b50610a1e611d8d565b604051610a2b91906138d0565b60405180910390f35b348015610a4057600080fd5b50610a5b6004803603810190610a56919061381a565b611d93565b005b348015610a6957600080fd5b50610a72611f59565b604051610a7f91906138d0565b60405180910390f35b348015610a9457600080fd5b50610a9d611f5f565b604051610aaa91906138d0565b60405180910390f35b348015610abf57600080fd5b50610ac8611f65565b604051610ad591906138d0565b60405180910390f35b348015610aea57600080fd5b50610af3611f6b565b604051610b0091906138d0565b60405180910390f35b606060038054610b1890613afa565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4490613afa565b8015610b915780601f10610b6657610100808354040283529160200191610b91565b820191906000526020600020905b815481529060010190602001808311610b7457829003601f168201915b5050505050905090565b6000610baf610ba8611fcf565b8484611fd7565b6001905092915050565b610bc1611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4790613b77565b60405180910390fd5b633b9aca006103e86005610c62610d23565b610c6c9190613bc6565b610c769190613c37565b610c809190613c37565b811015610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb990613cda565b60405180910390fd5b670de0b6b3a764000081610cd69190613bc6565b60088190555050565b60186020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60155481565b60165481565b6000610d468484846121a0565b610e0784610d52611fcf565b610e028560405180606001604052806028815260200161484c60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610db8611fcf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b949092919063ffffffff16565b611fd7565b600190509392505050565b61dead81565b60006009905090565b6000610eca610e2e611fcf565b84610ec58560016000610e3f611fcf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f7190919063ffffffff16565b611fd7565b6001905092915050565b7f000000000000000000000000def31b37293dc45695dfc4cba977faba8f4bc1f181565b610f00611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8690613b77565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f631c1e96b7a2d55e05b72d7f394bbf55ec52b8b51c2f33b430c653b6a31d51c160405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60105481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611134611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba90613b77565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61128c611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131290613b77565b60405180910390fd5b611323610d23565b6008819055506512309ce54000600a81905550565b611340611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690613b77565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611432611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b890613b77565b60405180910390fd5b82600d8190555081600e8190555080600f81905550600f54600e54600d546114e99190613cfa565b6114f39190613cfa565b600c819055506019600c54111561153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690613d7a565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611576611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613b77565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60606004805461163190613afa565b80601f016020809104026020016040519081016040528092919081815260200182805461165d90613afa565b80156116aa5780601f1061167f576101008083540402835291602001916116aa565b820191906000526020600020905b81548152906001019060200180831161168d57829003601f168201915b5050505050905090565b6116bc611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613b77565b60405180910390fd5b7f000000000000000000000000def31b37293dc45695dfc4cba977faba8f4bc1f173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613e0c565b60405180910390fd5b6117e38282612bf8565b5050565b60006118aa6117f4611fcf565b846118a585604051806060016040528060258152602001614874602591396001600061181e611fcf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b949092919063ffffffff16565b611fd7565b6001905092915050565b60006118c86118c1611fcf565b84846121a0565b6001905092915050565b60135481565b60196020528060005260406000206000915054906101000a900460ff1681565b611900611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690613b77565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611a2c91906137d2565b60405180910390a25050565b611a40611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac690613b77565b60405180910390fd5b826011819055508160128190555080601381905550601354601254601154611af79190613cfa565b611b019190613cfa565b60108190555060196010541115611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4490613d7a565b60405180910390fd5b505050565b60085481565b60145481565b6000611b68611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bee90613b77565b60405180910390fd5b620186a06001611c05610d23565b611c0f9190613bc6565b611c199190613c37565b821015611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5290613e9e565b60405180910390fd5b6103e86005611c68610d23565b611c729190613bc6565b611c7c9190613c37565b821115611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb590613f30565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600f5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b611d9b611fcf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2190613b77565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9090613fc2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b600d5481565b600a5481565b60115481565b6000808284611f809190613cfa565b905083811015611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc9061402e565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d906140c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac90614152565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161219391906138d0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361220f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612206906141e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361227e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227590614276565b60405180910390fd5b600081036122975761229283836000612c99565b612b8f565b61229f611544565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561230d57506122dd611544565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123465750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612380575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123995750600560149054906101000a900460ff16155b1561268757601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124415750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124e85760085481111561248b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248290614308565b60405180910390fd5b600a54612497836110e4565b826124a29190613cfa565b11156124e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124da90614374565b60405180910390fd5b612686565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561258b5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156125da576008548111156125d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cc90614406565b60405180910390fd5b612685565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661268457600a54612637836110e4565b826126429190613cfa565b1115612683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267a90614374565b60405180910390fd5b5b5b5b5b6000612692306110e4565b9050600060095482101590508080156126b75750600b60009054906101000a900460ff165b80156126d05750600560149054906101000a900460ff16155b80156127265750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561277c5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127d25750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612816576001600560146101000a81548160ff0219169083151502179055506127fa612f2c565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128cc5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156128d657600090505b60008115612b7f57601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561293957506000601054115b15612a065761296660646129586010548861319d90919063ffffffff16565b61321790919063ffffffff16565b9050601054601254826129799190613bc6565b6129839190613c37565b601560008282546129949190613cfa565b92505081905550601054601154826129ac9190613bc6565b6129b69190613c37565b601460008282546129c79190613cfa565b92505081905550601054601354826129df9190613bc6565b6129e99190613c37565b601660008282546129fa9190613cfa565b92505081905550612b2b565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a6157506000600c54115b15612b2a57612a8e6064612a80600c548861319d90919063ffffffff16565b61321790919063ffffffff16565b9050600c54600e5482612aa19190613bc6565b612aab9190613c37565b60156000828254612abc9190613cfa565b92505081905550600c54600d5482612ad49190613bc6565b612ade9190613c37565b60146000828254612aef9190613cfa565b92505081905550600c54600f5482612b079190613bc6565b612b119190613c37565b60166000828254612b229190613cfa565b925050819055505b5b6000811115612b4d57612b4c873060165484612b479190614426565b612c99565b5b60006016541115612b7057612b678761dead601654612c99565b60006016819055505b8085612b7c9190614426565b94505b612b8a878787612c99565b505050505b505050565b6000838311158290612bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd391906136bc565b60405180910390fd5b5060008385612beb9190614426565b9050809150509392505050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cff906141e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6e90614276565b60405180910390fd5b612d82838383613261565b612ded81604051806060016040528060268152602001614826602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b949092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612e80816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f7190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612f1f91906138d0565b60405180910390a3505050565b6000612f37306110e4565b90506000601454601554612f4b9190613cfa565b90506000821480612f5c5750600081145b15612f6857505061319b565b600060028260155485612f7b9190613bc6565b612f859190613c37565b612f8f9190613c37565b90506000612fa6828561326690919063ffffffff16565b90506000479050612fb6826132b0565b6000612fcb824761326690919063ffffffff16565b90506000612ff686612fe86014548561319d90919063ffffffff16565b61321790919063ffffffff16565b9050600081836130069190614426565b9050600060158190555060006014819055506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516130609061448b565b60006040518083038185875af1925050503d806000811461309d576040519150601f19603f3d011682016040523d82523d6000602084013e6130a2565b606091505b505090506000871180156130b65750600082115b15613103576130c587836134ed565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186836015546040516130fa939291906144a0565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516131499061448b565b60006040518083038185875af1925050503d8060008114613186576040519150601f19603f3d011682016040523d82523d6000602084013e61318b565b606091505b5050809150505050505050505050505b565b60008083036131af5760009050613211565b600082846131bd9190613bc6565b90508284826131cc9190613c37565b1461320c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320390614549565b60405180910390fd5b809150505b92915050565b600061325983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506135c9565b905092915050565b505050565b60006132a883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612b94565b905092915050565b6000600267ffffffffffffffff8111156132cd576132cc614569565b5b6040519080825280602002602001820160405280156132fb5781602001602082028036833780820191505090505b509050308160008151811061331357613312614598565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133dc91906145dc565b816001815181106133f0576133ef614598565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613455307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611fd7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016134b7959493929190614702565b600060405180830381600087803b1580156134d157600080fd5b505af11580156134e5573d6000803e3d6000fd5b505050505050565b613518307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611fd7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161357f9695949392919061475c565b60606040518083038185885af115801561359d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906135c291906147d2565b5050505050565b60008083118290613610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360791906136bc565b60405180910390fd5b506000838561361f9190613c37565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561366657808201518184015260208101905061364b565b60008484015250505050565b6000601f19601f8301169050919050565b600061368e8261362c565b6136988185613637565b93506136a8818560208601613648565b6136b181613672565b840191505092915050565b600060208201905081810360008301526136d68184613683565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061370e826136e3565b9050919050565b61371e81613703565b811461372957600080fd5b50565b60008135905061373b81613715565b92915050565b6000819050919050565b61375481613741565b811461375f57600080fd5b50565b6000813590506137718161374b565b92915050565b6000806040838503121561378e5761378d6136de565b5b600061379c8582860161372c565b92505060206137ad85828601613762565b9150509250929050565b60008115159050919050565b6137cc816137b7565b82525050565b60006020820190506137e760008301846137c3565b92915050565b600060208284031215613803576138026136de565b5b600061381184828501613762565b91505092915050565b6000602082840312156138305761382f6136de565b5b600061383e8482850161372c565b91505092915050565b6000819050919050565b600061386c613867613862846136e3565b613847565b6136e3565b9050919050565b600061387e82613851565b9050919050565b600061389082613873565b9050919050565b6138a081613885565b82525050565b60006020820190506138bb6000830184613897565b92915050565b6138ca81613741565b82525050565b60006020820190506138e560008301846138c1565b92915050565b600080600060608486031215613904576139036136de565b5b60006139128682870161372c565b93505060206139238682870161372c565b925050604061393486828701613762565b9150509250925092565b61394781613703565b82525050565b6000602082019050613962600083018461393e565b92915050565b600060ff82169050919050565b61397e81613968565b82525050565b60006020820190506139996000830184613975565b92915050565b6139a8816137b7565b81146139b357600080fd5b50565b6000813590506139c58161399f565b92915050565b600080604083850312156139e2576139e16136de565b5b60006139f08582860161372c565b9250506020613a01858286016139b6565b9150509250929050565b600080600060608486031215613a2457613a236136de565b5b6000613a3286828701613762565b9350506020613a4386828701613762565b9250506040613a5486828701613762565b9150509250925092565b600060208284031215613a7457613a736136de565b5b6000613a82848285016139b6565b91505092915050565b60008060408385031215613aa257613aa16136de565b5b6000613ab08582860161372c565b9250506020613ac18582860161372c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b1257607f821691505b602082108103613b2557613b24613acb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b61602083613637565b9150613b6c82613b2b565b602082019050919050565b60006020820190508181036000830152613b9081613b54565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bd182613741565b9150613bdc83613741565b9250828202613bea81613741565b91508282048414831517613c0157613c00613b97565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c4282613741565b9150613c4d83613741565b925082613c5d57613c5c613c08565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000613cc4602f83613637565b9150613ccf82613c68565b604082019050919050565b60006020820190508181036000830152613cf381613cb7565b9050919050565b6000613d0582613741565b9150613d1083613741565b9250828201905080821115613d2857613d27613b97565b5b92915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613d64601d83613637565b9150613d6f82613d2e565b602082019050919050565b60006020820190508181036000830152613d9381613d57565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613df6603983613637565b9150613e0182613d9a565b604082019050919050565b60006020820190508181036000830152613e2581613de9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613e88603583613637565b9150613e9382613e2c565b604082019050919050565b60006020820190508181036000830152613eb781613e7b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613f1a603483613637565b9150613f2582613ebe565b604082019050919050565b60006020820190508181036000830152613f4981613f0d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fac602683613637565b9150613fb782613f50565b604082019050919050565b60006020820190508181036000830152613fdb81613f9f565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614018601b83613637565b915061402382613fe2565b602082019050919050565b600060208201905081810360008301526140478161400b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006140aa602483613637565b91506140b58261404e565b604082019050919050565b600060208201905081810360008301526140d98161409d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061413c602283613637565b9150614147826140e0565b604082019050919050565b6000602082019050818103600083015261416b8161412f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006141ce602583613637565b91506141d982614172565b604082019050919050565b600060208201905081810360008301526141fd816141c1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614260602383613637565b915061426b82614204565b604082019050919050565b6000602082019050818103600083015261428f81614253565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006142f2603583613637565b91506142fd82614296565b604082019050919050565b60006020820190508181036000830152614321816142e5565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061435e601383613637565b915061436982614328565b602082019050919050565b6000602082019050818103600083015261438d81614351565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006143f0603683613637565b91506143fb82614394565b604082019050919050565b6000602082019050818103600083015261441f816143e3565b9050919050565b600061443182613741565b915061443c83613741565b925082820390508181111561445457614453613b97565b5b92915050565b600081905092915050565b50565b600061447560008361445a565b915061448082614465565b600082019050919050565b600061449682614468565b9150819050919050565b60006060820190506144b560008301866138c1565b6144c260208301856138c1565b6144cf60408301846138c1565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614533602183613637565b915061453e826144d7565b604082019050919050565b6000602082019050818103600083015261456281614526565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506145d681613715565b92915050565b6000602082840312156145f2576145f16136de565b5b6000614600848285016145c7565b91505092915050565b6000819050919050565b600061462e61462961462484614609565b613847565b613741565b9050919050565b61463e81614613565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61467981613703565b82525050565b600061468b8383614670565b60208301905092915050565b6000602082019050919050565b60006146af82614644565b6146b9818561464f565b93506146c483614660565b8060005b838110156146f55781516146dc888261467f565b97506146e783614697565b9250506001810190506146c8565b5085935050505092915050565b600060a08201905061471760008301886138c1565b6147246020830187614635565b818103604083015261473681866146a4565b9050614745606083018561393e565b61475260808301846138c1565b9695505050505050565b600060c082019050614771600083018961393e565b61477e60208301886138c1565b61478b6040830187614635565b6147986060830186614635565b6147a5608083018561393e565b6147b260a08301846138c1565b979650505050505050565b6000815190506147cc8161374b565b92915050565b6000806000606084860312156147eb576147ea6136de565b5b60006147f9868287016147bd565b935050602061480a868287016147bd565b925050604061481b868287016147bd565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204edb8ff844554bdf43c0b5babd1b053cccf4d7a7a62796e8a80cc08fe90df3db64736f6c63430008120033
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.