ERC-20
Overview
Max Total Supply
1,000,000,000 JEETF
Holders
160
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
5,287,520.212484286649552429 JEETFValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
JeetFighter
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity =0.8.19; /* JEETFIGHTER $JEETF Website: https://jeetfightercoin.com/ Twitter: https://twitter.com/jeetfightercoin Telegram: https://t.me/jeetfightercoin */ import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./interfaces/IUniswapV2Factory.sol"; import "./interfaces/IUniswapV2Router02.sol"; contract JeetFighter is IERC20, Ownable { using Address for address payable; mapping (address => uint) private _rOwned; mapping (address => uint) private _tOwned; mapping (address => mapping (address => uint)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; bool public swapEnabled; bool private swapping; bool public tradingEnabled; IUniswapV2Router02 public router; address public pair; address public buybackWallet; address public marketingWallet; uint8 private constant _decimals = 18; uint private constant MAX = ~uint(0); uint private _tTotal = 1_000_000_000 * 10**_decimals; uint private _rTotal = (MAX - (MAX % _tTotal)); uint public totalRfi; uint public swapThreshold = _tTotal / 1000; // 0.1% uint public maxTxAmount = 15 * _tTotal / 1000; // 1.5% uint public maxWalletAmount = 15 * _tTotal / 1000; // 1.5% uint public startBlock; uint public offlineBlocks = 20; uint public buyTax = 700; // 70% during offline blocks uint public maxSellTax = 200; // 20% max sell tax string private constant _name = "JEETFIGHTER"; string private constant _symbol = "JEETF"; struct TaxesPercentage { uint rfi; uint buyback; uint marketing; } TaxesPercentage public taxesPercentage = TaxesPercentage(40, 40, 20); struct valuesFromGetValues { uint rAmount; uint rTransferAmount; uint rRfi; uint rSwap; uint tTransferAmount; uint tRfi; uint tSwap; } modifier lockTheSwap { swapping = true; _; swapping = false; } constructor ( address _routerAddress, address _buybackWallet, address _marketingWallet ) { IUniswapV2Router02 _router = IUniswapV2Router02(_routerAddress); address _pair = IUniswapV2Factory(_router.factory()) .createPair(address(this), _router.WETH()); router = _router; pair = _pair; excludeFromReward(pair); excludeFromReward(address(0xdead)); _rOwned[msg.sender] = _rTotal; _isExcludedFromFee[msg.sender] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[address(0xdead)] = true; _isExcludedFromFee[_marketingWallet]=true; _isExcludedFromFee[_buybackWallet] = true; marketingWallet = _marketingWallet; buybackWallet = _buybackWallet; emit Transfer(address(0), msg.sender, _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint) { return _tTotal; } function balanceOf(address account) public view override returns (uint) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint) { return _allowances[owner][spender]; } function approve(address spender, uint amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } function increaseAllowance(address spender, uint addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } function decreaseAllowance(address spender, uint subtractedValue) public virtual returns (bool) { uint currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function tokenFromReflection(uint rAmount) public view returns(uint) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint currentRate = _getRate(); return rAmount / currentRate; } function excludeFromReward(address account) public onlyOwner { require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner { require(_isExcluded[account], "Account is not excluded"); for (uint i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function excludeFromFee(address account, bool status) public onlyOwner { _isExcludedFromFee[account] = status; } function isExcludedFromFee(address account) public view returns (bool) { return _isExcludedFromFee[account]; } function _reflectRfi(uint rRfi, uint tRfi) private { _rTotal -= rRfi; totalRfi += tRfi; } function _takeSwapFees(uint rValue, uint tValue) private { if (_isExcluded[address(this)]) { _tOwned[address(this)]+= tValue; } _rOwned[address(this)] += rValue; } function _getSellTax(address from, uint tAmount) private view returns (uint) { uint balance = balanceOf(from); uint percentage = tAmount * 1000 / balance; return uint(percentage * maxSellTax / 1000); } function _getValues(address sender, uint tAmount, bool takeFee, bool isSell) private view returns (valuesFromGetValues memory to_return) { to_return = _getTValues(sender, tAmount, takeFee, isSell); (to_return.rAmount, to_return.rTransferAmount, to_return.rRfi, to_return.rSwap) = _getRValues(to_return, tAmount, takeFee, _getRate()); return to_return; } function _getTValues(address sender, uint tAmount, bool takeFee, bool isSell) private view returns (valuesFromGetValues memory s) { if (!takeFee) { s.tTransferAmount = tAmount; return s; } uint tempTax = isSell ? _getSellTax(sender, tAmount) : buyTax; uint rfiTax = tempTax * taxesPercentage.rfi / 100; uint swapTax = tempTax * (100 - taxesPercentage.rfi) / 100; s.tRfi = tAmount * rfiTax / 1000; s.tSwap = tAmount * swapTax / 1000; s.tTransferAmount = tAmount - s.tRfi - s.tSwap; return s; } function _getRValues(valuesFromGetValues memory s, uint tAmount, bool takeFee, uint currentRate) private pure returns (uint rAmount, uint rTransferAmount, uint rRfi, uint rSwap) { rAmount = tAmount*currentRate; if (!takeFee) { return (rAmount, rAmount, 0, 0); } rRfi = s.tRfi * currentRate; rSwap = s.tSwap * currentRate; rTransferAmount = rAmount - rRfi - rSwap; return (rAmount, rTransferAmount, rRfi, rSwap); } function _getRate() private view returns (uint) { (uint rSupply, uint tSupply) = _getCurrentSupply(); return rSupply / tSupply; } function _getCurrentSupply() private view returns (uint, uint) { uint rSupply = _rTotal; uint tSupply = _tTotal; for (uint i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply-_rOwned[_excluded[i]]; tSupply = tSupply-_tOwned[_excluded[i]]; } if (rSupply < _rTotal / _tTotal) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _approve(address owner, address spender, uint amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); require(amount <= balanceOf(from), "You are trying to transfer more than your balance"); if (buyTax != 0 && tradingEnabled) { if (startBlock + offlineBlocks < block.number) buyTax = 0; } bool takeFee = false; if (!_isExcludedFromFee[from] && !_isExcludedFromFee[to]) { require(tradingEnabled, "Liquidity has not been added yet"); require(amount <= maxTxAmount, "You are exceeding maxTxAmount"); if (to != pair) require(balanceOf(to) + amount <= maxWalletAmount, "You are exceeding maxWalletAmount"); takeFee = true; if (from == pair && startBlock + offlineBlocks < block.number) takeFee = false; } bool canSwap = balanceOf(address(this)) >= swapThreshold; if (!swapping && swapEnabled && canSwap && from != pair && !_isExcludedFromFee[from] && !_isExcludedFromFee[to]) { swapTokensForFees(swapThreshold); } _tokenTransfer(from, to, amount, takeFee); } function _tokenTransfer(address sender, address recipient, uint tAmount, bool takeFee) private { bool isSell = recipient == pair ? true : false; valuesFromGetValues memory s = _getValues(sender, tAmount, takeFee, isSell); if (_isExcluded[sender] ) { _tOwned[sender] = _tOwned[sender] - tAmount; } if (_isExcluded[recipient]) { _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount; } _rOwned[sender] = _rOwned[sender] - s.rAmount; _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount; if (s.rRfi > 0 || s.tRfi > 0) _reflectRfi(s.rRfi, s.tRfi); if (s.rSwap > 0 || s.tSwap > 0) _takeSwapFees(s.rSwap, s.tSwap); emit Transfer(sender, recipient, s.tTransferAmount); emit Transfer(sender, address(this), s.tSwap); } function swapTokensForFees(uint tokens) private lockTheSwap { uint initialBalance = address(this).balance; swapTokensForETH(tokens); uint deltaBalance = address(this).balance - initialBalance; uint totalPercent = 100 - taxesPercentage.rfi; if (totalPercent == 0) return; uint marketingAmount = deltaBalance * taxesPercentage.marketing / totalPercent; if (marketingAmount > 0) payable(marketingWallet).sendValue(marketingAmount); uint buybackAmount = deltaBalance - marketingAmount; if (buybackAmount > 0) payable(buybackWallet).sendValue(buybackAmount); } function swapTokensForETH(uint tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), tokenAmount); router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function enableTrading() external onlyOwner { tradingEnabled = true; swapEnabled = true; startBlock = block.number; } function updateMarketingWallet(address newWallet) external onlyOwner { marketingWallet = newWallet; _isExcludedFromFee[marketingWallet] = true; } function updateBuybackWallet(address newWallet) external onlyOwner { buybackWallet = newWallet; _isExcludedFromFee[buybackWallet] = true; } function setTaxesPercentage(uint _rfi, uint _buyback, uint _marketing) external onlyOwner { require(_rfi + _buyback + _marketing == 100, "Total must be 100"); taxesPercentage = TaxesPercentage(_rfi, _buyback, _marketing); } function updateSwapThreshold(uint amount) external onlyOwner { swapThreshold = amount * 10**_decimals; } function updateSwapEnabled(bool _enabled) external onlyOwner { swapEnabled = _enabled; } function updateMaxSellTax(uint amount) external onlyOwner { maxSellTax = amount; } function updatePair(address newRouter, address newPair) external onlyOwner { router = IUniswapV2Router02(newRouter); pair = newPair; } function rescueETH() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } function rescueTokens(address _token) external onlyOwner { require(_token != address(this), "Can not rescue own token!"); IERC20(_token).transfer(owner(), IERC20(_token).balanceOf(address(this))); } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/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) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT 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, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns ( uint amountA, uint amountB, uint liquidity ); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns ( uint amountToken, uint amountETH, uint liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_routerAddress","type":"address"},{"internalType":"address","name":"_buybackWallet","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[{"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":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buybackWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"offlineBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rfi","type":"uint256"},{"internalType":"uint256","name":"_buyback","type":"uint256"},{"internalType":"uint256","name":"_marketing","type":"uint256"}],"name":"setTaxesPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"taxesPercentage","outputs":[{"internalType":"uint256","name":"rfi","type":"uint256"},{"internalType":"uint256","name":"buyback","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRfi","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateBuybackWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateMaxSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"},{"internalType":"address","name":"newPair","type":"address"}],"name":"updatePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526012600a62000014919062000f2d565b633b9aca0062000025919062000f7e565b600b55600b546000196200003a919062000ff8565b60001962000049919062001030565b600c556103e8600b546200005e91906200106b565b600e556103e8600b54600f62000075919062000f7e565b6200008191906200106b565b600f556103e8600b54600f62000098919062000f7e565b620000a491906200106b565b60105560146012556102bc60135560c8601455604051806060016040528060288152602001602881526020016014815250601560008201518160000155602082015181600101556040820151816002015550503480156200010457600080fd5b5060405162005d2938038062005d2983398181016040528101906200012a91906200110d565b6200014a6200013e6200067760201b60201c565b6200067f60201b60201c565b600083905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c3919062001169565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000251919062001169565b6040518363ffffffff1660e01b815260040162000270929190620011ac565b6020604051808303816000875af115801562000290573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b6919062001169565b905081600760036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200036d600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200074360201b60201c565b6200038061dead6200074360201b60201c565b600c54600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016004600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555082600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b54604051620006649190620011ea565b60405180910390a3505050505062001410565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007536200097e60201b60201c565b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615620007e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007da9062001268565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115620008c0576200087c600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000a0f60201b60201c565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6200098e6200067760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009b462000a8360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a0490620012da565b60405180910390fd5b565b6000600c5482111562000a59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a509062001372565b60405180910390fd5b600062000a6b62000aac60201b60201c565b9050808362000a7b91906200106b565b915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600062000ac162000ada60201b60201c565b91509150808262000ad391906200106b565b9250505090565b6000806000600c5490506000600b54905060005b60068054905081101562000d595782600160006006848154811062000b185762000b1762001394565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118062000c0a575081600260006006848154811062000ba25762000ba162001394565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1562000c2357600c54600b549450945050505062000d8f565b600160006006838154811062000c3e5762000c3d62001394565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548362000cb1919062001030565b9250600260006006838154811062000cce5762000ccd62001394565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548262000d41919062001030565b9150808062000d5090620013c3565b91505062000aee565b50600b54600c5462000d6c91906200106b565b82101562000d8657600c54600b5493509350505062000d8f565b81819350935050505b9091565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000e215780860481111562000df95762000df862000d93565b5b600185161562000e095780820291505b808102905062000e198562000dc2565b945062000dd9565b94509492505050565b60008262000e3c576001905062000f0f565b8162000e4c576000905062000f0f565b816001811462000e65576002811462000e705762000ea6565b600191505062000f0f565b60ff84111562000e855762000e8462000d93565b5b8360020a91508482111562000e9f5762000e9e62000d93565b5b5062000f0f565b5060208310610133831016604e8410600b841016171562000ee05782820a90508381111562000eda5762000ed962000d93565b5b62000f0f565b62000eef848484600162000dcf565b9250905081840481111562000f095762000f0862000d93565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000f3a8262000f16565b915062000f478362000f20565b925062000f767fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000e2a565b905092915050565b600062000f8b8262000f16565b915062000f988362000f16565b925082820262000fa88162000f16565b9150828204841483151762000fc25762000fc162000d93565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010058262000f16565b9150620010128362000f16565b92508262001025576200102462000fc9565b5b828206905092915050565b60006200103d8262000f16565b91506200104a8362000f16565b925082820390508181111562001065576200106462000d93565b5b92915050565b6000620010788262000f16565b9150620010858362000f16565b92508262001098576200109762000fc9565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010d582620010a8565b9050919050565b620010e781620010c8565b8114620010f357600080fd5b50565b6000815190506200110781620010dc565b92915050565b600080600060608486031215620011295762001128620010a3565b5b60006200113986828701620010f6565b93505060206200114c86828701620010f6565b92505060406200115f86828701620010f6565b9150509250925092565b600060208284031215620011825762001181620010a3565b5b60006200119284828501620010f6565b91505092915050565b620011a681620010c8565b82525050565b6000604082019050620011c360008301856200119b565b620011d260208301846200119b565b9392505050565b620011e48162000f16565b82525050565b6000602082019050620012016000830184620011d9565b92915050565b600082825260208201905092915050565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b600062001250601b8362001207565b91506200125d8262001218565b602082019050919050565b60006020820190508181036000830152620012838162001241565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620012c260208362001207565b9150620012cf826200128a565b602082019050919050565b60006020820190508181036000830152620012f581620012b3565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b60006200135a602a8362001207565b91506200136782620012fc565b604082019050919050565b600060208201905081810360008301526200138d816200134b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000620013d08262000f16565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362001405576200140462000d93565b5b600182019050919050565b61490980620014206000396000f3fe6080604052600436106102755760003560e01c80636ddd17131161014f578063a457c2d7116100c1578063cc274b291161007a578063cc274b2914610964578063dd62ed3e1461098d578063deab8aea146109ca578063df8408fe146109f5578063f2fde38b14610a1e578063f887ea4014610a475761027c565b8063a457c2d714610842578063a8aa1b311461087f578063a9059cbb146108aa578063aa4bde28146108e7578063aacebbe314610912578063c06901921461093b5761027c565b80638a8c523c116101135780638a8c523c146107565780638c0b5e221461076d5780638da5cb5b14610798578063924de9b7146107c357806395d89b41146107ec578063a411209a146108175761027c565b80636ddd17131461066f57806370a082311461069a578063715018a6146106d757806375f0a874146106ee57806388f82020146107195761027c565b806323b872dd116101e857806348cd4cb1116101ac57806348cd4cb11461055d5780634ada218b146105885780634f7041a5146105b357806352390c02146105de5780635342acb414610607578063649011c8146106445761027c565b806323b872dd146104525780632d8381191461048f578063313ce567146104cc5780633685d419146104f757806339509351146105205761027c565b8063079bf8671161023a578063079bf867146103565780630858fa351461037f578063095ea7b3146103a857806318160ddd146103e55780631a6611811461041057806320800a001461043b5761027c565b8062ae3bf814610281578063029514f7146102aa5780630445b667146102d757806304dacd501461030257806306fdde031461032b5761027c565b3661027c57005b600080fd5b34801561028d57600080fd5b506102a860048036038101906102a391906134a6565b610a72565b005b3480156102b657600080fd5b506102bf610bea565b6040516102ce939291906134ec565b60405180910390f35b3480156102e357600080fd5b506102ec610c02565b6040516102f99190613523565b60405180910390f35b34801561030e57600080fd5b50610329600480360381019061032491906134a6565b610c08565b005b34801561033757600080fd5b50610340610cce565b60405161034d91906135ce565b60405180910390f35b34801561036257600080fd5b5061037d6004803603810190610378919061361c565b610d0b565b005b34801561038b57600080fd5b506103a660048036038101906103a19190613649565b610d1d565b005b3480156103b457600080fd5b506103cf60048036038101906103ca919061369c565b610dc1565b6040516103dc91906136f7565b60405180910390f35b3480156103f157600080fd5b506103fa610ddf565b6040516104079190613523565b60405180910390f35b34801561041c57600080fd5b50610425610de9565b6040516104329190613523565b60405180910390f35b34801561044757600080fd5b50610450610def565b005b34801561045e57600080fd5b5061047960048036038101906104749190613712565b610e40565b60405161048691906136f7565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b1919061361c565b610f41565b6040516104c39190613523565b60405180910390f35b3480156104d857600080fd5b506104e1610fa8565b6040516104ee9190613781565b60405180910390f35b34801561050357600080fd5b5061051e600480360381019061051991906134a6565b610fb1565b005b34801561052c57600080fd5b506105476004803603810190610542919061369c565b611272565b60405161055491906136f7565b60405180910390f35b34801561056957600080fd5b5061057261131e565b60405161057f9190613523565b60405180910390f35b34801561059457600080fd5b5061059d611324565b6040516105aa91906136f7565b60405180910390f35b3480156105bf57600080fd5b506105c8611337565b6040516105d59190613523565b60405180910390f35b3480156105ea57600080fd5b50610605600480360381019061060091906134a6565b61133d565b005b34801561061357600080fd5b5061062e600480360381019061062991906134a6565b611564565b60405161063b91906136f7565b60405180910390f35b34801561065057600080fd5b506106596115ba565b6040516106669190613523565b60405180910390f35b34801561067b57600080fd5b506106846115c0565b60405161069191906136f7565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc91906134a6565b6115d3565b6040516106ce9190613523565b60405180910390f35b3480156106e357600080fd5b506106ec6116be565b005b3480156106fa57600080fd5b506107036116d2565b60405161071091906137ab565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b91906134a6565b6116f8565b60405161074d91906136f7565b60405180910390f35b34801561076257600080fd5b5061076b61174e565b005b34801561077957600080fd5b50610782611795565b60405161078f9190613523565b60405180910390f35b3480156107a457600080fd5b506107ad61179b565b6040516107ba91906137ab565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e591906137f2565b6117c4565b005b3480156107f857600080fd5b506108016117e9565b60405161080e91906135ce565b60405180910390f35b34801561082357600080fd5b5061082c611826565b6040516108399190613523565b60405180910390f35b34801561084e57600080fd5b506108696004803603810190610864919061369c565b61182c565b60405161087691906136f7565b60405180910390f35b34801561088b57600080fd5b50610894611920565b6040516108a191906137ab565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc919061369c565b611946565b6040516108de91906136f7565b60405180910390f35b3480156108f357600080fd5b506108fc611964565b6040516109099190613523565b60405180910390f35b34801561091e57600080fd5b50610939600480360381019061093491906134a6565b61196a565b005b34801561094757600080fd5b50610962600480360381019061095d919061381f565b611a30565b005b34801561097057600080fd5b5061098b6004803603810190610986919061361c565b611abe565b005b34801561099957600080fd5b506109b460048036038101906109af919061381f565b611ae8565b6040516109c19190613523565b60405180910390f35b3480156109d657600080fd5b506109df611b6f565b6040516109ec91906137ab565b60405180910390f35b348015610a0157600080fd5b50610a1c6004803603810190610a17919061385f565b611b95565b005b348015610a2a57600080fd5b50610a456004803603810190610a4091906134a6565b611bf8565b005b348015610a5357600080fd5b50610a5c611c7b565b604051610a6991906138fe565b60405180910390f35b610a7a611ca1565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adf90613965565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610b0c61179b565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b4591906137ab565b602060405180830381865afa158015610b62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b86919061399a565b6040518363ffffffff1660e01b8152600401610ba39291906139c7565b6020604051808303816000875af1158015610bc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be69190613a05565b5050565b60158060000154908060010154908060020154905083565b600e5481565b610c10611ca1565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160046000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60606040518060400160405280600b81526020017f4a45455446494748544552000000000000000000000000000000000000000000815250905090565b610d13611ca1565b8060148190555050565b610d25611ca1565b6064818385610d349190613a61565b610d3e9190613a61565b14610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590613ae1565b60405180910390fd5b6040518060600160405280848152602001838152602001828152506015600082015181600001556020820151816001015560408201518160020155905050505050565b6000610dd5610dce611d1f565b8484611d27565b6001905092915050565b6000600b54905090565b600d5481565b610df7611ca1565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e3d573d6000803e3d6000fd5b50565b6000610e4d848484611ef0565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e98611d1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f90613b73565b60405180910390fd5b610f3585610f24611d1f565b8584610f309190613b93565b611d27565b60019150509392505050565b6000600c54821115610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90613c39565b60405180910390fd5b6000610f92612407565b90508083610fa09190613c88565b915050919050565b60006012905090565b610fb9611ca1565b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90613d05565b60405180910390fd5b60005b60068054905081101561126e578173ffffffffffffffffffffffffffffffffffffffff16600682815481106110805761107f613d25565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361125b57600660016006805490506110da9190613b93565b815481106110eb576110ea613d25565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166006828154811061112a57611129613d25565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600680548061122157611220613d54565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561126e565b808061126690613d83565b915050611048565b5050565b600061131461127f611d1f565b84846003600061128d611d1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461130f9190613a61565b611d27565b6001905092915050565b60115481565b600760029054906101000a900460ff1681565b60135481565b611345611ca1565b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c990613e17565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156114a657611462600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f41565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600760009054906101000a900460ff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561166e57600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506116b9565b6116b6600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f41565b90505b919050565b6116c6611ca1565b6116d0600061242b565b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611756611ca1565b6001600760026101000a81548160ff0219169083151502179055506001600760006101000a81548160ff02191690831515021790555043601181905550565b600f5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117cc611ca1565b80600760006101000a81548160ff02191690831515021790555050565b60606040518060400160405280600581526020017f4a45455446000000000000000000000000000000000000000000000000000000815250905090565b60145481565b6000806003600061183b611d1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90613ea9565b60405180910390fd5b611915611903611d1f565b8585846119109190613b93565b611d27565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061195a611953611d1f565b8484611ef0565b6001905092915050565b60105481565b611972611ca1565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160046000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611a38611ca1565b81600760036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b611ac6611ca1565b6012600a611ad49190613ffc565b81611adf9190614047565b600e8190555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b9d611ca1565b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611c00611ca1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c66906140fb565b60405180910390fd5b611c788161242b565b50565b600760039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ca9611d1f565b73ffffffffffffffffffffffffffffffffffffffff16611cc761179b565b73ffffffffffffffffffffffffffffffffffffffff1614611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1490614167565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d906141f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfc9061428b565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611ee39190613523565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f569061431d565b60405180910390fd5b60008111611fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f99906143af565b60405180910390fd5b611fab836115d3565b811115611fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe490614441565b60405180910390fd5b60006013541415801561200c5750600760029054906101000a900460ff165b1561203257436012546011546120229190613a61565b10156120315760006013819055505b5b6000600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120d85750600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561229957600760029054906101000a900460ff1661212c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612123906144ad565b60405180910390fd5b600f54821115612171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216890614519565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461221f57601054826121d3856115d3565b6121dd9190613a61565b111561221e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612215906145ab565b60405180910390fd5b5b60019050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561228e57504360125460115461228c9190613a61565b105b1561229857600090505b5b6000600e546122a7306115d3565b10159050600760019054906101000a900460ff161580156122d45750600760009054906101000a900460ff165b80156122dd5750805b80156123375750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561238d5750600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123e35750600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156123f4576123f3600e546124ef565b5b6124008585858561264c565b5050505050565b6000806000612414612ae1565b9150915080826124249190613c88565b9250505090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600760016101000a81548160ff021916908315150217905550600047905061251882612d7f565b600081476125269190613b93565b90506000601560000154606461253c9190613b93565b90506000810361254e5750505061262e565b600081601560020154846125629190614047565b61256c9190613c88565b905060008111156125c3576125c281600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612fc290919063ffffffff16565b5b600081846125d19190613b93565b905060008111156126285761262781600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612fc290919063ffffffff16565b5b50505050505b6000600760016101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146126aa5760006126ad565b60015b905060006126bd868585856130b6565b9050600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156127a05783600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461275c9190613b93565b600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612885578060800151600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128419190613a61565b600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8060000151600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128d49190613b93565b600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060200151600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129669190613a61565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000816040015111806129c0575060008160a00151115b156129d8576129d781604001518260a0015161310b565b5b6000816060015111806129ef575060008160c00151115b15612a0757612a0681606001518260c00151613141565b5b8473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360800151604051612a689190613523565b60405180910390a33073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360c00151604051612ad19190613523565b60405180910390a3505050505050565b6000806000600c5490506000600b54905060005b600680549050811015612d4957826001600060068481548110612b1b57612b1a613d25565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180612c095750816002600060068481548110612ba157612ba0613d25565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15612c2057600c54600b5494509450505050612d7b565b6001600060068381548110612c3857612c37613d25565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612ca99190613b93565b92506002600060068381548110612cc357612cc2613d25565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482612d349190613b93565b91508080612d4190613d83565b915050612af5565b50600b54600c54612d5a9190613c88565b821015612d7257600c54600b54935093505050612d7b565b81819350935050505b9091565b6000600267ffffffffffffffff811115612d9c57612d9b6145cb565b5b604051908082528060200260200182016040528015612dca5781602001602082028036833780820191505090505b5090503081600081518110612de257612de1613d25565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ead919061460f565b81600181518110612ec157612ec0613d25565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612f2830600760039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611d27565b600760039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612f8c959493929190614735565b600060405180830381600087803b158015612fa657600080fd5b505af1158015612fba573d6000803e3d6000fd5b505050505050565b80471015613005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffc906147db565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161302b9061482c565b60006040518083038185875af1925050503d8060008114613068576040519150601f19603f3d011682016040523d82523d6000602084013e61306d565b606091505b50509050806130b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a8906148b3565b60405180910390fd5b505050565b6130be613406565b6130ca85858585613244565b90506130df8185856130da612407565b613342565b846000018560200186604001876060018481525084815250848152508481525050505050949350505050565b81600c600082825461311d9190613b93565b9250508190555080600d60008282546131369190613a61565b925050819055505050565b600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156131ea5780600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131e29190613a61565b925050819055505b81600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132399190613a61565b925050819055505050565b61324c613406565b82613260578381608001818152505061333a565b60008261326f5760135461327a565b61327986866133b6565b5b905060006064601560000154836132919190614047565b61329b9190613c88565b90506000606460156000015460646132b39190613b93565b846132be9190614047565b6132c89190613c88565b90506103e882886132d99190614047565b6132e39190613c88565b8460a00181815250506103e881886132fb9190614047565b6133059190613c88565b8460c00181815250508360c001518460a00151886133239190613b93565b61332d9190613b93565b8460800181815250505050505b949350505050565b60008060008084876133549190614047565b93508561336d57838460008093509350935093506133ab565b848860a0015161337d9190614047565b9150848860c0015161338f9190614047565b905080828561339e9190613b93565b6133a89190613b93565b92505b945094509450949050565b6000806133c2846115d3565b90506000816103e8856133d59190614047565b6133df9190613c88565b90506103e8601454826133f29190614047565b6133fc9190613c88565b9250505092915050565b6040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061347382613448565b9050919050565b61348381613468565b811461348e57600080fd5b50565b6000813590506134a08161347a565b92915050565b6000602082840312156134bc576134bb613443565b5b60006134ca84828501613491565b91505092915050565b6000819050919050565b6134e6816134d3565b82525050565b600060608201905061350160008301866134dd565b61350e60208301856134dd565b61351b60408301846134dd565b949350505050565b600060208201905061353860008301846134dd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561357857808201518184015260208101905061355d565b60008484015250505050565b6000601f19601f8301169050919050565b60006135a08261353e565b6135aa8185613549565b93506135ba81856020860161355a565b6135c381613584565b840191505092915050565b600060208201905081810360008301526135e88184613595565b905092915050565b6135f9816134d3565b811461360457600080fd5b50565b600081359050613616816135f0565b92915050565b60006020828403121561363257613631613443565b5b600061364084828501613607565b91505092915050565b60008060006060848603121561366257613661613443565b5b600061367086828701613607565b935050602061368186828701613607565b925050604061369286828701613607565b9150509250925092565b600080604083850312156136b3576136b2613443565b5b60006136c185828601613491565b92505060206136d285828601613607565b9150509250929050565b60008115159050919050565b6136f1816136dc565b82525050565b600060208201905061370c60008301846136e8565b92915050565b60008060006060848603121561372b5761372a613443565b5b600061373986828701613491565b935050602061374a86828701613491565b925050604061375b86828701613607565b9150509250925092565b600060ff82169050919050565b61377b81613765565b82525050565b60006020820190506137966000830184613772565b92915050565b6137a581613468565b82525050565b60006020820190506137c0600083018461379c565b92915050565b6137cf816136dc565b81146137da57600080fd5b50565b6000813590506137ec816137c6565b92915050565b60006020828403121561380857613807613443565b5b6000613816848285016137dd565b91505092915050565b6000806040838503121561383657613835613443565b5b600061384485828601613491565b925050602061385585828601613491565b9150509250929050565b6000806040838503121561387657613875613443565b5b600061388485828601613491565b9250506020613895858286016137dd565b9150509250929050565b6000819050919050565b60006138c46138bf6138ba84613448565b61389f565b613448565b9050919050565b60006138d6826138a9565b9050919050565b60006138e8826138cb565b9050919050565b6138f8816138dd565b82525050565b600060208201905061391360008301846138ef565b92915050565b7f43616e206e6f7420726573637565206f776e20746f6b656e2100000000000000600082015250565b600061394f601983613549565b915061395a82613919565b602082019050919050565b6000602082019050818103600083015261397e81613942565b9050919050565b600081519050613994816135f0565b92915050565b6000602082840312156139b0576139af613443565b5b60006139be84828501613985565b91505092915050565b60006040820190506139dc600083018561379c565b6139e960208301846134dd565b9392505050565b6000815190506139ff816137c6565b92915050565b600060208284031215613a1b57613a1a613443565b5b6000613a29848285016139f0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a6c826134d3565b9150613a77836134d3565b9250828201905080821115613a8f57613a8e613a32565b5b92915050565b7f546f74616c206d75737420626520313030000000000000000000000000000000600082015250565b6000613acb601183613549565b9150613ad682613a95565b602082019050919050565b60006020820190508181036000830152613afa81613abe565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613b5d602883613549565b9150613b6882613b01565b604082019050919050565b60006020820190508181036000830152613b8c81613b50565b9050919050565b6000613b9e826134d3565b9150613ba9836134d3565b9250828203905081811115613bc157613bc0613a32565b5b92915050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b6000613c23602a83613549565b9150613c2e82613bc7565b604082019050919050565b60006020820190508181036000830152613c5281613c16565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c93826134d3565b9150613c9e836134d3565b925082613cae57613cad613c59565b5b828204905092915050565b7f4163636f756e74206973206e6f74206578636c75646564000000000000000000600082015250565b6000613cef601783613549565b9150613cfa82613cb9565b602082019050919050565b60006020820190508181036000830152613d1e81613ce2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6000613d8e826134d3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613dc057613dbf613a32565b5b600182019050919050565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b6000613e01601b83613549565b9150613e0c82613dcb565b602082019050919050565b60006020820190508181036000830152613e3081613df4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613e93602583613549565b9150613e9e82613e37565b604082019050919050565b60006020820190508181036000830152613ec281613e86565b9050919050565b60008160011c9050919050565b6000808291508390505b6001851115613f2057808604811115613efc57613efb613a32565b5b6001851615613f0b5780820291505b8081029050613f1985613ec9565b9450613ee0565b94509492505050565b600082613f395760019050613ff5565b81613f475760009050613ff5565b8160018114613f5d5760028114613f6757613f96565b6001915050613ff5565b60ff841115613f7957613f78613a32565b5b8360020a915084821115613f9057613f8f613a32565b5b50613ff5565b5060208310610133831016604e8410600b8410161715613fcb5782820a905083811115613fc657613fc5613a32565b5b613ff5565b613fd88484846001613ed6565b92509050818404811115613fef57613fee613a32565b5b81810290505b9392505050565b6000614007826134d3565b915061401283613765565b925061403f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613f29565b905092915050565b6000614052826134d3565b915061405d836134d3565b925082820261406b816134d3565b9150828204841483151761408257614081613a32565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140e5602683613549565b91506140f082614089565b604082019050919050565b60006020820190508181036000830152614114816140d8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614151602083613549565b915061415c8261411b565b602082019050919050565b6000602082019050818103600083015261418081614144565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006141e3602483613549565b91506141ee82614187565b604082019050919050565b60006020820190508181036000830152614212816141d6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614275602283613549565b915061428082614219565b604082019050919050565b600060208201905081810360008301526142a481614268565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614307602583613549565b9150614312826142ab565b604082019050919050565b60006020820190508181036000830152614336816142fa565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000614399602983613549565b91506143a48261433d565b604082019050919050565b600060208201905081810360008301526143c88161438c565b9050919050565b7f596f752061726520747279696e6720746f207472616e73666572206d6f72652060008201527f7468616e20796f75722062616c616e6365000000000000000000000000000000602082015250565b600061442b603183613549565b9150614436826143cf565b604082019050919050565b6000602082019050818103600083015261445a8161441e565b9050919050565b7f4c697175696469747920686173206e6f74206265656e20616464656420796574600082015250565b6000614497602083613549565b91506144a282614461565b602082019050919050565b600060208201905081810360008301526144c68161448a565b9050919050565b7f596f752061726520657863656564696e67206d61785478416d6f756e74000000600082015250565b6000614503601d83613549565b915061450e826144cd565b602082019050919050565b60006020820190508181036000830152614532816144f6565b9050919050565b7f596f752061726520657863656564696e67206d617857616c6c6574416d6f756e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000614595602183613549565b91506145a082614539565b604082019050919050565b600060208201905081810360008301526145c481614588565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506146098161347a565b92915050565b60006020828403121561462557614624613443565b5b6000614633848285016145fa565b91505092915050565b6000819050919050565b600061466161465c6146578461463c565b61389f565b6134d3565b9050919050565b61467181614646565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146ac81613468565b82525050565b60006146be83836146a3565b60208301905092915050565b6000602082019050919050565b60006146e282614677565b6146ec8185614682565b93506146f783614693565b8060005b8381101561472857815161470f88826146b2565b975061471a836146ca565b9250506001810190506146fb565b5085935050505092915050565b600060a08201905061474a60008301886134dd565b6147576020830187614668565b818103604083015261476981866146d7565b9050614778606083018561379c565b61478560808301846134dd565b9695505050505050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006147c5601d83613549565b91506147d08261478f565b602082019050919050565b600060208201905081810360008301526147f4816147b8565b9050919050565b600081905092915050565b50565b60006148166000836147fb565b915061482182614806565b600082019050919050565b600061483782614809565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061489d603a83613549565b91506148a882614841565b604082019050919050565b600060208201905081810360008301526148cc81614890565b905091905056fea264697066735822122073b65b16d55cd745c036ca59cd18360422a966325f70519ecd8a4781fad48bb364736f6c634300081300330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000c407effce74a9b6251e802df552ab86ab7999c7d000000000000000000000000920648791e1ab44e86e789084cdaeabf13a6ab28
Deployed Bytecode
0x6080604052600436106102755760003560e01c80636ddd17131161014f578063a457c2d7116100c1578063cc274b291161007a578063cc274b2914610964578063dd62ed3e1461098d578063deab8aea146109ca578063df8408fe146109f5578063f2fde38b14610a1e578063f887ea4014610a475761027c565b8063a457c2d714610842578063a8aa1b311461087f578063a9059cbb146108aa578063aa4bde28146108e7578063aacebbe314610912578063c06901921461093b5761027c565b80638a8c523c116101135780638a8c523c146107565780638c0b5e221461076d5780638da5cb5b14610798578063924de9b7146107c357806395d89b41146107ec578063a411209a146108175761027c565b80636ddd17131461066f57806370a082311461069a578063715018a6146106d757806375f0a874146106ee57806388f82020146107195761027c565b806323b872dd116101e857806348cd4cb1116101ac57806348cd4cb11461055d5780634ada218b146105885780634f7041a5146105b357806352390c02146105de5780635342acb414610607578063649011c8146106445761027c565b806323b872dd146104525780632d8381191461048f578063313ce567146104cc5780633685d419146104f757806339509351146105205761027c565b8063079bf8671161023a578063079bf867146103565780630858fa351461037f578063095ea7b3146103a857806318160ddd146103e55780631a6611811461041057806320800a001461043b5761027c565b8062ae3bf814610281578063029514f7146102aa5780630445b667146102d757806304dacd501461030257806306fdde031461032b5761027c565b3661027c57005b600080fd5b34801561028d57600080fd5b506102a860048036038101906102a391906134a6565b610a72565b005b3480156102b657600080fd5b506102bf610bea565b6040516102ce939291906134ec565b60405180910390f35b3480156102e357600080fd5b506102ec610c02565b6040516102f99190613523565b60405180910390f35b34801561030e57600080fd5b50610329600480360381019061032491906134a6565b610c08565b005b34801561033757600080fd5b50610340610cce565b60405161034d91906135ce565b60405180910390f35b34801561036257600080fd5b5061037d6004803603810190610378919061361c565b610d0b565b005b34801561038b57600080fd5b506103a660048036038101906103a19190613649565b610d1d565b005b3480156103b457600080fd5b506103cf60048036038101906103ca919061369c565b610dc1565b6040516103dc91906136f7565b60405180910390f35b3480156103f157600080fd5b506103fa610ddf565b6040516104079190613523565b60405180910390f35b34801561041c57600080fd5b50610425610de9565b6040516104329190613523565b60405180910390f35b34801561044757600080fd5b50610450610def565b005b34801561045e57600080fd5b5061047960048036038101906104749190613712565b610e40565b60405161048691906136f7565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b1919061361c565b610f41565b6040516104c39190613523565b60405180910390f35b3480156104d857600080fd5b506104e1610fa8565b6040516104ee9190613781565b60405180910390f35b34801561050357600080fd5b5061051e600480360381019061051991906134a6565b610fb1565b005b34801561052c57600080fd5b506105476004803603810190610542919061369c565b611272565b60405161055491906136f7565b60405180910390f35b34801561056957600080fd5b5061057261131e565b60405161057f9190613523565b60405180910390f35b34801561059457600080fd5b5061059d611324565b6040516105aa91906136f7565b60405180910390f35b3480156105bf57600080fd5b506105c8611337565b6040516105d59190613523565b60405180910390f35b3480156105ea57600080fd5b50610605600480360381019061060091906134a6565b61133d565b005b34801561061357600080fd5b5061062e600480360381019061062991906134a6565b611564565b60405161063b91906136f7565b60405180910390f35b34801561065057600080fd5b506106596115ba565b6040516106669190613523565b60405180910390f35b34801561067b57600080fd5b506106846115c0565b60405161069191906136f7565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc91906134a6565b6115d3565b6040516106ce9190613523565b60405180910390f35b3480156106e357600080fd5b506106ec6116be565b005b3480156106fa57600080fd5b506107036116d2565b60405161071091906137ab565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b91906134a6565b6116f8565b60405161074d91906136f7565b60405180910390f35b34801561076257600080fd5b5061076b61174e565b005b34801561077957600080fd5b50610782611795565b60405161078f9190613523565b60405180910390f35b3480156107a457600080fd5b506107ad61179b565b6040516107ba91906137ab565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e591906137f2565b6117c4565b005b3480156107f857600080fd5b506108016117e9565b60405161080e91906135ce565b60405180910390f35b34801561082357600080fd5b5061082c611826565b6040516108399190613523565b60405180910390f35b34801561084e57600080fd5b506108696004803603810190610864919061369c565b61182c565b60405161087691906136f7565b60405180910390f35b34801561088b57600080fd5b50610894611920565b6040516108a191906137ab565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc919061369c565b611946565b6040516108de91906136f7565b60405180910390f35b3480156108f357600080fd5b506108fc611964565b6040516109099190613523565b60405180910390f35b34801561091e57600080fd5b50610939600480360381019061093491906134a6565b61196a565b005b34801561094757600080fd5b50610962600480360381019061095d919061381f565b611a30565b005b34801561097057600080fd5b5061098b6004803603810190610986919061361c565b611abe565b005b34801561099957600080fd5b506109b460048036038101906109af919061381f565b611ae8565b6040516109c19190613523565b60405180910390f35b3480156109d657600080fd5b506109df611b6f565b6040516109ec91906137ab565b60405180910390f35b348015610a0157600080fd5b50610a1c6004803603810190610a17919061385f565b611b95565b005b348015610a2a57600080fd5b50610a456004803603810190610a4091906134a6565b611bf8565b005b348015610a5357600080fd5b50610a5c611c7b565b604051610a6991906138fe565b60405180910390f35b610a7a611ca1565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adf90613965565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610b0c61179b565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b4591906137ab565b602060405180830381865afa158015610b62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b86919061399a565b6040518363ffffffff1660e01b8152600401610ba39291906139c7565b6020604051808303816000875af1158015610bc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be69190613a05565b5050565b60158060000154908060010154908060020154905083565b600e5481565b610c10611ca1565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160046000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60606040518060400160405280600b81526020017f4a45455446494748544552000000000000000000000000000000000000000000815250905090565b610d13611ca1565b8060148190555050565b610d25611ca1565b6064818385610d349190613a61565b610d3e9190613a61565b14610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590613ae1565b60405180910390fd5b6040518060600160405280848152602001838152602001828152506015600082015181600001556020820151816001015560408201518160020155905050505050565b6000610dd5610dce611d1f565b8484611d27565b6001905092915050565b6000600b54905090565b600d5481565b610df7611ca1565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e3d573d6000803e3d6000fd5b50565b6000610e4d848484611ef0565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e98611d1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f90613b73565b60405180910390fd5b610f3585610f24611d1f565b8584610f309190613b93565b611d27565b60019150509392505050565b6000600c54821115610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90613c39565b60405180910390fd5b6000610f92612407565b90508083610fa09190613c88565b915050919050565b60006012905090565b610fb9611ca1565b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90613d05565b60405180910390fd5b60005b60068054905081101561126e578173ffffffffffffffffffffffffffffffffffffffff16600682815481106110805761107f613d25565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361125b57600660016006805490506110da9190613b93565b815481106110eb576110ea613d25565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166006828154811061112a57611129613d25565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600680548061122157611220613d54565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561126e565b808061126690613d83565b915050611048565b5050565b600061131461127f611d1f565b84846003600061128d611d1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461130f9190613a61565b611d27565b6001905092915050565b60115481565b600760029054906101000a900460ff1681565b60135481565b611345611ca1565b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c990613e17565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156114a657611462600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f41565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600760009054906101000a900460ff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561166e57600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506116b9565b6116b6600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f41565b90505b919050565b6116c6611ca1565b6116d0600061242b565b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611756611ca1565b6001600760026101000a81548160ff0219169083151502179055506001600760006101000a81548160ff02191690831515021790555043601181905550565b600f5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117cc611ca1565b80600760006101000a81548160ff02191690831515021790555050565b60606040518060400160405280600581526020017f4a45455446000000000000000000000000000000000000000000000000000000815250905090565b60145481565b6000806003600061183b611d1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90613ea9565b60405180910390fd5b611915611903611d1f565b8585846119109190613b93565b611d27565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061195a611953611d1f565b8484611ef0565b6001905092915050565b60105481565b611972611ca1565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160046000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611a38611ca1565b81600760036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b611ac6611ca1565b6012600a611ad49190613ffc565b81611adf9190614047565b600e8190555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b9d611ca1565b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611c00611ca1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c66906140fb565b60405180910390fd5b611c788161242b565b50565b600760039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ca9611d1f565b73ffffffffffffffffffffffffffffffffffffffff16611cc761179b565b73ffffffffffffffffffffffffffffffffffffffff1614611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1490614167565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8d906141f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfc9061428b565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611ee39190613523565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f569061431d565b60405180910390fd5b60008111611fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f99906143af565b60405180910390fd5b611fab836115d3565b811115611fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe490614441565b60405180910390fd5b60006013541415801561200c5750600760029054906101000a900460ff165b1561203257436012546011546120229190613a61565b10156120315760006013819055505b5b6000600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120d85750600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561229957600760029054906101000a900460ff1661212c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612123906144ad565b60405180910390fd5b600f54821115612171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216890614519565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461221f57601054826121d3856115d3565b6121dd9190613a61565b111561221e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612215906145ab565b60405180910390fd5b5b60019050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561228e57504360125460115461228c9190613a61565b105b1561229857600090505b5b6000600e546122a7306115d3565b10159050600760019054906101000a900460ff161580156122d45750600760009054906101000a900460ff165b80156122dd5750805b80156123375750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561238d5750600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123e35750600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156123f4576123f3600e546124ef565b5b6124008585858561264c565b5050505050565b6000806000612414612ae1565b9150915080826124249190613c88565b9250505090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600760016101000a81548160ff021916908315150217905550600047905061251882612d7f565b600081476125269190613b93565b90506000601560000154606461253c9190613b93565b90506000810361254e5750505061262e565b600081601560020154846125629190614047565b61256c9190613c88565b905060008111156125c3576125c281600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612fc290919063ffffffff16565b5b600081846125d19190613b93565b905060008111156126285761262781600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612fc290919063ffffffff16565b5b50505050505b6000600760016101000a81548160ff02191690831515021790555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146126aa5760006126ad565b60015b905060006126bd868585856130b6565b9050600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156127a05783600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461275c9190613b93565b600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612885578060800151600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128419190613a61565b600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8060000151600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128d49190613b93565b600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060200151600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129669190613a61565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000816040015111806129c0575060008160a00151115b156129d8576129d781604001518260a0015161310b565b5b6000816060015111806129ef575060008160c00151115b15612a0757612a0681606001518260c00151613141565b5b8473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360800151604051612a689190613523565b60405180910390a33073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360c00151604051612ad19190613523565b60405180910390a3505050505050565b6000806000600c5490506000600b54905060005b600680549050811015612d4957826001600060068481548110612b1b57612b1a613d25565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180612c095750816002600060068481548110612ba157612ba0613d25565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15612c2057600c54600b5494509450505050612d7b565b6001600060068381548110612c3857612c37613d25565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483612ca99190613b93565b92506002600060068381548110612cc357612cc2613d25565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482612d349190613b93565b91508080612d4190613d83565b915050612af5565b50600b54600c54612d5a9190613c88565b821015612d7257600c54600b54935093505050612d7b565b81819350935050505b9091565b6000600267ffffffffffffffff811115612d9c57612d9b6145cb565b5b604051908082528060200260200182016040528015612dca5781602001602082028036833780820191505090505b5090503081600081518110612de257612de1613d25565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ead919061460f565b81600181518110612ec157612ec0613d25565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612f2830600760039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611d27565b600760039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612f8c959493929190614735565b600060405180830381600087803b158015612fa657600080fd5b505af1158015612fba573d6000803e3d6000fd5b505050505050565b80471015613005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffc906147db565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161302b9061482c565b60006040518083038185875af1925050503d8060008114613068576040519150601f19603f3d011682016040523d82523d6000602084013e61306d565b606091505b50509050806130b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a8906148b3565b60405180910390fd5b505050565b6130be613406565b6130ca85858585613244565b90506130df8185856130da612407565b613342565b846000018560200186604001876060018481525084815250848152508481525050505050949350505050565b81600c600082825461311d9190613b93565b9250508190555080600d60008282546131369190613a61565b925050819055505050565b600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156131ea5780600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131e29190613a61565b925050819055505b81600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132399190613a61565b925050819055505050565b61324c613406565b82613260578381608001818152505061333a565b60008261326f5760135461327a565b61327986866133b6565b5b905060006064601560000154836132919190614047565b61329b9190613c88565b90506000606460156000015460646132b39190613b93565b846132be9190614047565b6132c89190613c88565b90506103e882886132d99190614047565b6132e39190613c88565b8460a00181815250506103e881886132fb9190614047565b6133059190613c88565b8460c00181815250508360c001518460a00151886133239190613b93565b61332d9190613b93565b8460800181815250505050505b949350505050565b60008060008084876133549190614047565b93508561336d57838460008093509350935093506133ab565b848860a0015161337d9190614047565b9150848860c0015161338f9190614047565b905080828561339e9190613b93565b6133a89190613b93565b92505b945094509450949050565b6000806133c2846115d3565b90506000816103e8856133d59190614047565b6133df9190613c88565b90506103e8601454826133f29190614047565b6133fc9190613c88565b9250505092915050565b6040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061347382613448565b9050919050565b61348381613468565b811461348e57600080fd5b50565b6000813590506134a08161347a565b92915050565b6000602082840312156134bc576134bb613443565b5b60006134ca84828501613491565b91505092915050565b6000819050919050565b6134e6816134d3565b82525050565b600060608201905061350160008301866134dd565b61350e60208301856134dd565b61351b60408301846134dd565b949350505050565b600060208201905061353860008301846134dd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561357857808201518184015260208101905061355d565b60008484015250505050565b6000601f19601f8301169050919050565b60006135a08261353e565b6135aa8185613549565b93506135ba81856020860161355a565b6135c381613584565b840191505092915050565b600060208201905081810360008301526135e88184613595565b905092915050565b6135f9816134d3565b811461360457600080fd5b50565b600081359050613616816135f0565b92915050565b60006020828403121561363257613631613443565b5b600061364084828501613607565b91505092915050565b60008060006060848603121561366257613661613443565b5b600061367086828701613607565b935050602061368186828701613607565b925050604061369286828701613607565b9150509250925092565b600080604083850312156136b3576136b2613443565b5b60006136c185828601613491565b92505060206136d285828601613607565b9150509250929050565b60008115159050919050565b6136f1816136dc565b82525050565b600060208201905061370c60008301846136e8565b92915050565b60008060006060848603121561372b5761372a613443565b5b600061373986828701613491565b935050602061374a86828701613491565b925050604061375b86828701613607565b9150509250925092565b600060ff82169050919050565b61377b81613765565b82525050565b60006020820190506137966000830184613772565b92915050565b6137a581613468565b82525050565b60006020820190506137c0600083018461379c565b92915050565b6137cf816136dc565b81146137da57600080fd5b50565b6000813590506137ec816137c6565b92915050565b60006020828403121561380857613807613443565b5b6000613816848285016137dd565b91505092915050565b6000806040838503121561383657613835613443565b5b600061384485828601613491565b925050602061385585828601613491565b9150509250929050565b6000806040838503121561387657613875613443565b5b600061388485828601613491565b9250506020613895858286016137dd565b9150509250929050565b6000819050919050565b60006138c46138bf6138ba84613448565b61389f565b613448565b9050919050565b60006138d6826138a9565b9050919050565b60006138e8826138cb565b9050919050565b6138f8816138dd565b82525050565b600060208201905061391360008301846138ef565b92915050565b7f43616e206e6f7420726573637565206f776e20746f6b656e2100000000000000600082015250565b600061394f601983613549565b915061395a82613919565b602082019050919050565b6000602082019050818103600083015261397e81613942565b9050919050565b600081519050613994816135f0565b92915050565b6000602082840312156139b0576139af613443565b5b60006139be84828501613985565b91505092915050565b60006040820190506139dc600083018561379c565b6139e960208301846134dd565b9392505050565b6000815190506139ff816137c6565b92915050565b600060208284031215613a1b57613a1a613443565b5b6000613a29848285016139f0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a6c826134d3565b9150613a77836134d3565b9250828201905080821115613a8f57613a8e613a32565b5b92915050565b7f546f74616c206d75737420626520313030000000000000000000000000000000600082015250565b6000613acb601183613549565b9150613ad682613a95565b602082019050919050565b60006020820190508181036000830152613afa81613abe565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613b5d602883613549565b9150613b6882613b01565b604082019050919050565b60006020820190508181036000830152613b8c81613b50565b9050919050565b6000613b9e826134d3565b9150613ba9836134d3565b9250828203905081811115613bc157613bc0613a32565b5b92915050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b6000613c23602a83613549565b9150613c2e82613bc7565b604082019050919050565b60006020820190508181036000830152613c5281613c16565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c93826134d3565b9150613c9e836134d3565b925082613cae57613cad613c59565b5b828204905092915050565b7f4163636f756e74206973206e6f74206578636c75646564000000000000000000600082015250565b6000613cef601783613549565b9150613cfa82613cb9565b602082019050919050565b60006020820190508181036000830152613d1e81613ce2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6000613d8e826134d3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613dc057613dbf613a32565b5b600182019050919050565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b6000613e01601b83613549565b9150613e0c82613dcb565b602082019050919050565b60006020820190508181036000830152613e3081613df4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613e93602583613549565b9150613e9e82613e37565b604082019050919050565b60006020820190508181036000830152613ec281613e86565b9050919050565b60008160011c9050919050565b6000808291508390505b6001851115613f2057808604811115613efc57613efb613a32565b5b6001851615613f0b5780820291505b8081029050613f1985613ec9565b9450613ee0565b94509492505050565b600082613f395760019050613ff5565b81613f475760009050613ff5565b8160018114613f5d5760028114613f6757613f96565b6001915050613ff5565b60ff841115613f7957613f78613a32565b5b8360020a915084821115613f9057613f8f613a32565b5b50613ff5565b5060208310610133831016604e8410600b8410161715613fcb5782820a905083811115613fc657613fc5613a32565b5b613ff5565b613fd88484846001613ed6565b92509050818404811115613fef57613fee613a32565b5b81810290505b9392505050565b6000614007826134d3565b915061401283613765565b925061403f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613f29565b905092915050565b6000614052826134d3565b915061405d836134d3565b925082820261406b816134d3565b9150828204841483151761408257614081613a32565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140e5602683613549565b91506140f082614089565b604082019050919050565b60006020820190508181036000830152614114816140d8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614151602083613549565b915061415c8261411b565b602082019050919050565b6000602082019050818103600083015261418081614144565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006141e3602483613549565b91506141ee82614187565b604082019050919050565b60006020820190508181036000830152614212816141d6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614275602283613549565b915061428082614219565b604082019050919050565b600060208201905081810360008301526142a481614268565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614307602583613549565b9150614312826142ab565b604082019050919050565b60006020820190508181036000830152614336816142fa565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000614399602983613549565b91506143a48261433d565b604082019050919050565b600060208201905081810360008301526143c88161438c565b9050919050565b7f596f752061726520747279696e6720746f207472616e73666572206d6f72652060008201527f7468616e20796f75722062616c616e6365000000000000000000000000000000602082015250565b600061442b603183613549565b9150614436826143cf565b604082019050919050565b6000602082019050818103600083015261445a8161441e565b9050919050565b7f4c697175696469747920686173206e6f74206265656e20616464656420796574600082015250565b6000614497602083613549565b91506144a282614461565b602082019050919050565b600060208201905081810360008301526144c68161448a565b9050919050565b7f596f752061726520657863656564696e67206d61785478416d6f756e74000000600082015250565b6000614503601d83613549565b915061450e826144cd565b602082019050919050565b60006020820190508181036000830152614532816144f6565b9050919050565b7f596f752061726520657863656564696e67206d617857616c6c6574416d6f756e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000614595602183613549565b91506145a082614539565b604082019050919050565b600060208201905081810360008301526145c481614588565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000815190506146098161347a565b92915050565b60006020828403121561462557614624613443565b5b6000614633848285016145fa565b91505092915050565b6000819050919050565b600061466161465c6146578461463c565b61389f565b6134d3565b9050919050565b61467181614646565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146ac81613468565b82525050565b60006146be83836146a3565b60208301905092915050565b6000602082019050919050565b60006146e282614677565b6146ec8185614682565b93506146f783614693565b8060005b8381101561472857815161470f88826146b2565b975061471a836146ca565b9250506001810190506146fb565b5085935050505092915050565b600060a08201905061474a60008301886134dd565b6147576020830187614668565b818103604083015261476981866146d7565b9050614778606083018561379c565b61478560808301846134dd565b9695505050505050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006147c5601d83613549565b91506147d08261478f565b602082019050919050565b600060208201905081810360008301526147f4816147b8565b9050919050565b600081905092915050565b50565b60006148166000836147fb565b915061482182614806565b600082019050919050565b600061483782614809565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061489d603a83613549565b91506148a882614841565b604082019050919050565b600060208201905081810360008301526148cc81614890565b905091905056fea264697066735822122073b65b16d55cd745c036ca59cd18360422a966325f70519ecd8a4781fad48bb364736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000c407effce74a9b6251e802df552ab86ab7999c7d000000000000000000000000920648791e1ab44e86e789084cdaeabf13a6ab28
-----Decoded View---------------
Arg [0] : _routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _buybackWallet (address): 0xc407effcE74A9B6251e802dF552AB86aB7999C7D
Arg [2] : _marketingWallet (address): 0x920648791e1Ab44E86E789084cdAeABF13A6Ab28
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 000000000000000000000000c407effce74a9b6251e802df552ab86ab7999c7d
Arg [2] : 000000000000000000000000920648791e1ab44e86e789084cdaeabf13a6ab28
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.