ERC-20
Source Code
Overview
Max Total Supply
100,000,000,000 MXS
Holders
2,838
Transfers
-
0
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
MXSToken
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
import '@uniswap/v2-core/contracts/interfaces/IERC20.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';
contract MXSToken is Context, IERC20, Ownable {
using SafeMath for uint256;
using Address for address;
event ExcludeFromRewards(address indexed _address);
event IncludeInRewards(address indexed _address);
event ExcludeFromFee(address indexed _address);
event IncludeInFee(address indexed _address);
event ExcludeFromPreTrading(address indexed _address);
event IncludeInPreTrading(address indexed _address);
event TaxPercentUpdated(uint256 amount);
event CommunityPercentUpdated(uint256 amount);
event MaxTxUpdated(uint256 amount);
event CommunityWalletUpdated(address indexed _address);
mapping (address => uint256) private _rOwned;
mapping (address => uint256) private _tOwned;
mapping (address => mapping (address => uint256)) private _allowances;
mapping (address => bool) private _isExcludedFromFee;
mapping (address => bool) private _isExcludedFromReward;
address[] private _excluded;
uint256 private constant MAX = ~uint256(0);
uint256 private constant _tTotal = 100000000000 * 10 ** 18;
uint256 private _rTotal = (MAX - (MAX % _tTotal));
uint256 private _tFeeTotal;
uint256 private _tCommunityTotal;
string private constant _name = "Marketing Samurai";
string private constant _symbol = "MXS";
uint8 private constant _decimals = 18;
uint256 public _taxFee = 6;
uint256 private _previousTaxFee = _taxFee;
uint256 public _communityFee = 3;
uint256 private _previousCommunityFee = _communityFee;
uint256 public _maxTxAmount = 1000000 * 10 ** 18;
address public communityAddress = 0x94f6153EbfEB633E9321f9F31Ed19E649239d7DF;
IUniswapV2Router02 public uniswapV2Router;
address public uniswapV2Pair;
uint256 private tradingStartTime = 1640966414;
mapping(address => bool) private canTransferBeforeTradingIsEnabled;
constructor (address uniswapRouter) {
_rOwned[_msgSender()] = _rTotal;
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(uniswapRouter);
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
uniswapV2Router = _uniswapV2Router;
_isExcludedFromFee[owner()] = true;
_isExcludedFromFee[address(this)] = true;
_isExcludedFromFee[communityAddress] = true;
_isExcludedFromReward[uniswapV2Pair] = true;
canTransferBeforeTradingIsEnabled[owner()] = true;
emit Transfer(address(0), _msgSender(), _tTotal);
}
function name() external view override returns (string memory) {
return _name;
}
function symbol() external view override returns (string memory) {
return _symbol;
}
function decimals() external view override returns (uint8) {
return _decimals;
}
function totalSupply() external view override returns (uint256) {
return _tTotal;
}
function balanceOf(address account) external view override returns (uint256) {
if (_isExcludedFromReward[account]) return _tOwned[account];
return tokenFromReflection(_rOwned[account]);
}
function transfer(address recipient, uint256 amount) external override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
function allowance(address owner, address spender) external view override returns (uint256) {
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount) external override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
function increaseAllowance(address spender, uint256 addedValue) external virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValue) external virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
function isExcludedFromReward(address account) external view returns (bool) {
return _isExcludedFromReward[account];
}
function totalFees() external view returns (uint256) {
return _tFeeTotal;
}
function totalCommunityRewards() external view returns (uint256) {
return _tCommunityTotal;
}
function deliver(uint256 tAmount) external {
address sender = _msgSender();
require(!_isExcludedFromReward[sender], "Excluded addresses cannot call this function");
(uint256 rAmount,,,,,) = _getValues(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_rTotal = _rTotal.sub(rAmount);
_tFeeTotal = _tFeeTotal.add(tAmount);
}
function reflectionFromToken(uint256 tAmount, bool deductTransferFee) external view returns(uint256) {
require(tAmount <= _tTotal, "Amount must be less than supply");
if (!deductTransferFee) {
(uint256 rAmount,,,,,) = _getValues(tAmount);
return rAmount;
} else {
(,uint256 rTransferAmount,,,,) = _getValues(tAmount);
return rTransferAmount;
}
}
function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
require(rAmount <= _rTotal, "Amount must be less than total reflections");
uint256 currentRate = _getRate();
return rAmount.div(currentRate);
}
function excludeFromReward(address account) public onlyOwner() {
require(!_isExcludedFromReward[account], "Account is already excluded");
if(_rOwned[account] > 0) {
_tOwned[account] = tokenFromReflection(_rOwned[account]);
}
_isExcludedFromReward[account] = true;
_excluded.push(account);
}
function _approve(address owner, address spender, uint256 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,
uint256 amount
) private {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
require(amount > 0, "Transfer amount must be greater than zero");
// address must be permitted to transfer before tradingStartTime
if(tradingStartTime > block.timestamp) {
require(canTransferBeforeTradingIsEnabled[from], "This account cannot send tokens until trading is enabled");
}
if (from != owner() && to != owner()) {
require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
}
bool takeFee = true;
// if any account belongs to _isExcludedFromFee account then remove the fee
// do not take fee if wallet to wallet transfer ( to / from uniswap)
if ((_isExcludedFromFee[from] || _isExcludedFromFee[to]) || (to != uniswapV2Pair && from != uniswapV2Pair)) {
takeFee = false;
}
_tokenTransfer(from,to,amount,takeFee);
}
function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
if(!takeFee)
removeAllFee();
if (_isExcludedFromReward[sender] && !_isExcludedFromReward[recipient]) {
_transferFromExcluded(sender, recipient, amount);
} else if (!_isExcludedFromReward[sender] && _isExcludedFromReward[recipient]) {
_transferToExcluded(sender, recipient, amount);
} else if (_isExcludedFromReward[sender] && _isExcludedFromReward[recipient]) {
_transferBothExcluded(sender, recipient, amount);
} else {
_transferStandard(sender, recipient, amount);
}
if(!takeFee)
restoreAllFee();
}
function _transferStandard(address sender, address recipient, uint256 tAmount) private {
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tCommunity) = _getValues(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_takeCommunity(tCommunity);
_reflectFee(rFee, tFee);
emit Transfer(sender, recipient, tTransferAmount);
}
function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tCommunity) = _getValues(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_takeCommunity(tCommunity);
_reflectFee(rFee, tFee);
emit Transfer(sender, recipient, tTransferAmount);
}
function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tCommunity) = _getValues(tAmount);
_tOwned[sender] = _tOwned[sender].sub(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_takeCommunity(tCommunity);
_reflectFee(rFee, tFee);
emit Transfer(sender, recipient, tTransferAmount);
}
function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tCommunity) = _getValues(tAmount);
_tOwned[sender] = _tOwned[sender].sub(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_takeCommunity(tCommunity);
_reflectFee(rFee, tFee);
emit Transfer(sender, recipient, tTransferAmount);
}
function _reflectFee(uint256 rFee, uint256 tFee) private {
_rTotal = _rTotal.sub(rFee);
_tFeeTotal = _tFeeTotal.add(tFee);
}
function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
(uint256 tTransferAmount, uint256 tFee, uint256 tCommunity) = _getTValues(tAmount);
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tCommunity, _getRate());
return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tCommunity);
}
function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
uint256 tFee = calculateTaxFee(tAmount);
uint256 tCommunity = calculateCommunityFee(tAmount);
uint256 tTransferAmount = tAmount.sub(tFee).sub(tCommunity);
return (tTransferAmount, tFee, tCommunity);
}
function _getRValues(uint256 tAmount, uint256 tFee, uint256 tCommunity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
uint256 rAmount = tAmount.mul(currentRate);
uint256 rFee = tFee.mul(currentRate);
uint256 rCommunity = tCommunity.mul(currentRate);
uint256 rTransferAmount = rAmount.sub(rFee).sub(rCommunity);
return (rAmount, rTransferAmount, rFee);
}
function _getRate() private view returns(uint256) {
(uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
return rSupply.div(tSupply);
}
function _getCurrentSupply() private view returns(uint256, uint256) {
uint256 rSupply = _rTotal;
uint256 tSupply = _tTotal;
for (uint256 i = 0; i < _excluded.length; i++) {
if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
rSupply = rSupply.sub(_rOwned[_excluded[i]]);
tSupply = tSupply.sub(_tOwned[_excluded[i]]);
}
if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
return (rSupply, tSupply);
}
function _takeCommunity(uint256 tCommunity) private {
uint256 currentRate = _getRate();
uint256 rCommunity = tCommunity.mul(currentRate);
_rOwned[communityAddress] = _rOwned[communityAddress].add(rCommunity);
_tCommunityTotal = _tCommunityTotal.add(tCommunity);
if(_isExcludedFromReward[communityAddress])
_tOwned[communityAddress] = _tOwned[communityAddress].add(tCommunity);
}
function calculateTaxFee(uint256 _amount) private view returns (uint256) {
return _amount.mul(_taxFee).div(100);
}
function calculateCommunityFee(uint256 _amount) private view returns (uint256) {
return _amount.mul(_communityFee).div(100);
}
function removeAllFee() private {
if(_taxFee == 0 && _communityFee == 0) return;
_previousTaxFee = _taxFee;
_previousCommunityFee = _communityFee;
_taxFee = 0;
_communityFee = 0;
}
function restoreAllFee() private {
_taxFee = _previousTaxFee;
_communityFee = _previousCommunityFee;
}
function isExcludedFromFee(address account) external view returns(bool) {
return _isExcludedFromFee[account];
}
function excludeFromFee(address account) external onlyOwner {
_isExcludedFromFee[account] = true;
emit ExcludeFromFee(account);
}
function includeInFee(address account) external onlyOwner {
_isExcludedFromFee[account] = false;
emit IncludeInFee(account);
}
function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
require(taxFee < 20, "Invalid tax fee");
_taxFee = taxFee;
emit TaxPercentUpdated(taxFee);
}
function setCommunityFeePercent(uint256 communityFee) external onlyOwner() {
require(communityFee < 20, "Invalid community fee");
_communityFee = communityFee;
emit CommunityPercentUpdated(communityFee);
}
function setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
require(maxTxAmount > 0, "Invalid Max Transaction");
_maxTxAmount = maxTxAmount;
emit MaxTxUpdated(maxTxAmount);
}
function setCommunityWallet(address _address) external onlyOwner {
communityAddress = _address;
emit CommunityWalletUpdated(_address);
}
function setTradingStartTime(uint256 newStartTime) external onlyOwner {
require(tradingStartTime > block.timestamp, "Trading has already started");
require(newStartTime > block.timestamp, "Start time must be in the future");
tradingStartTime = newStartTime;
}
function allowPreTrading(address account, bool allowed) external onlyOwner {
// used for owner and pre sale addresses
require(canTransferBeforeTradingIsEnabled[account] != allowed, "Pre trading is already the value of 'excluded'");
canTransferBeforeTradingIsEnabled[account] = allowed;
if (allowed) {
emit ExcludeFromPreTrading(account);
} else {
emit IncludeInPreTrading(account);
}
}
}// SPDX-License-Identifier: MIT
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 no longer needed starting with Solidity 0.8. 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 substraction 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;
/**
* @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
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 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://diligence.consensys.net/posts/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.5.11/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 functionCall(target, data, "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");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return _verifyCallResult(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) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(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) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) private pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// 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
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
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() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(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");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}pragma solidity >=0.5.0;
interface IUniswapV2Pair {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint);
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
event Mint(address indexed sender, uint amount0, uint amount1);
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
event Swap(
address indexed sender,
uint amount0In,
uint amount1In,
uint amount0Out,
uint amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
function price0CumulativeLast() external view returns (uint);
function price1CumulativeLast() external view returns (uint);
function kLast() external view returns (uint);
function mint(address to) external returns (uint liquidity);
function burn(address to) external returns (uint amount0, uint amount1);
function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}pragma solidity >=0.5.0;
interface IERC20 {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external view returns (string memory);
function symbol() external view returns (string memory);
function decimals() external view returns (uint8);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
}pragma solidity >=0.5.0;
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB) external view returns (address pair);
function allPairs(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(address tokenA, address tokenB) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}pragma solidity >=0.6.2;
import './IUniswapV2Router01.sol';
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}pragma solidity >=0.6.2;
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountA, uint amountB);
function removeLiquidityETHWithPermit(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapTokensForExactTokens(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"uniswapRouter","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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CommunityPercentUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"CommunityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"ExcludeFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"ExcludeFromPreTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"ExcludeFromRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"IncludeInFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"IncludeInPreTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"IncludeInRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MaxTxUpdated","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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TaxPercentUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_communityFee","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":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"allowed","type":"bool"}],"name":"allowPreTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"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":"includeInFee","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"communityFee","type":"uint256"}],"name":"setCommunityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setCommunityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newStartTime","type":"uint256"}],"name":"setTradingStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"totalCommunityRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60806040526c01431e0fae6d7217caa00000006000196200002191906200083a565b600019620000309190620007c1565b6007556006600a55600a54600b556003600c55600c54600d5569d3c21bcecceda1000000600e557394f6153ebfeb633e9321f9f31ed19e649239d7df600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506361cf290e601255348015620000c157600080fd5b5060405162005116380380620051168339818101604052810190620000e7919062000729565b62000107620000fb6200061d60201b60201c565b6200062560201b60201c565b600754600160006200011e6200061d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008190508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001a857600080fd5b505afa158015620001bd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e3919062000729565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200024657600080fd5b505afa1580156200025b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000281919062000729565b6040518363ffffffff1660e01b8152600401620002a092919062000777565b602060405180830381600087803b158015620002bb57600080fd5b505af1158015620002d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f6919062000729565b601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600460006200038d620006e960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160046000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160056000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016013600062000540620006e960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005a16200061d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6c01431e0fae6d7217caa00000006040516200060d9190620007a4565b60405180910390a35050620008ea565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000815190506200072381620008d0565b92915050565b6000602082840312156200073c57600080fd5b60006200074c8482850162000712565b91505092915050565b6200076081620007fc565b82525050565b620007718162000830565b82525050565b60006040820190506200078e600083018562000755565b6200079d602083018462000755565b9392505050565b6000602082019050620007bb600083018462000766565b92915050565b6000620007ce8262000830565b9150620007db8362000830565b925082821015620007f157620007f062000872565b5b828203905092915050565b6000620008098262000810565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000620008478262000830565b9150620008548362000830565b925082620008675762000866620008a1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b620008db81620007fc565b8114620008e757600080fd5b50565b61481c80620008fa6000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c806352390c02116101255780638da5cb5b116100ad578063dc06f1ad1161007c578063dc06f1ad14610653578063dd62ed3e14610671578063ea2f0b37146106a1578063ec28438a146106bd578063f2fde38b146106d95761021c565b80638da5cb5b146105b757806395d89b41146105d5578063a457c2d7146105f3578063a9059cbb146106235761021c565b80637d1db4a5116100f45780637d1db4a51461051157806385d6bb811461052f57806386e476dd1461054b57806388f82020146105695780638c2b9dc4146105995761021c565b806352390c021461048b5780635342acb4146104a757806370a08231146104d7578063715018a6146105075761021c565b8063313ce567116101a8578063437823ec11610177578063437823ec146103e95780634549b0391461040557806349bd5a5e146104355780634ef901dc14610453578063515f16041461046f5761021c565b8063313ce56714610361578063395093511461037f5780633b124fe7146103af5780633bd5d173146103cd5761021c565b80631694505e116101ef5780631694505e146102a957806318160ddd146102c757806323b872dd146102e55780632d838119146103155780632f9c4569146103455761021c565b8063061c82d01461022157806306fdde031461023d578063095ea7b31461025b57806313114a9d1461028b575b600080fd5b61023b60048036038101906102369190613987565b6106f5565b005b6102456107f5565b6040516102529190613d5a565b60405180910390f35b6102756004803603810190610270919061394b565b610832565b6040516102829190613d24565b60405180910390f35b610293610850565b6040516102a09190613fdc565b60405180910390f35b6102b161085a565b6040516102be9190613d3f565b60405180910390f35b6102cf610880565b6040516102dc9190613fdc565b60405180910390f35b6102ff60048036038101906102fa91906138c0565b610895565b60405161030c9190613d24565b60405180910390f35b61032f600480360381019061032a9190613987565b61096e565b60405161033c9190613fdc565b60405180910390f35b61035f600480360381019061035a919061390f565b6109dc565b005b610369610bd7565b6040516103769190613ff7565b60405180910390f35b6103996004803603810190610394919061394b565b610be0565b6040516103a69190613d24565b60405180910390f35b6103b7610c93565b6040516103c49190613fdc565b60405180910390f35b6103e760048036038101906103e29190613987565b610c99565b005b61040360048036038101906103fe919061385b565b610e14565b005b61041f600480360381019061041a91906139b0565b610f2e565b60405161042c9190613fdc565b60405180910390f35b61043d610fbd565b60405161044a9190613d09565b60405180910390f35b61046d60048036038101906104689190613987565b610fe3565b005b61048960048036038101906104849190613987565b6110ef565b005b6104a560048036038101906104a0919061385b565b6111ef565b005b6104c160048036038101906104bc919061385b565b61148a565b6040516104ce9190613d24565b60405180910390f35b6104f160048036038101906104ec919061385b565b6114e0565b6040516104fe9190613fdc565b60405180910390f35b61050f6115cb565b005b610519611653565b6040516105269190613fdc565b60405180910390f35b6105496004803603810190610544919061385b565b611659565b005b61055361175c565b6040516105609190613d09565b60405180910390f35b610583600480360381019061057e919061385b565b611782565b6040516105909190613d24565b60405180910390f35b6105a16117d8565b6040516105ae9190613fdc565b60405180910390f35b6105bf6117e2565b6040516105cc9190613d09565b60405180910390f35b6105dd61180b565b6040516105ea9190613d5a565b60405180910390f35b61060d6004803603810190610608919061394b565b611848565b60405161061a9190613d24565b60405180910390f35b61063d6004803603810190610638919061394b565b611915565b60405161064a9190613d24565b60405180910390f35b61065b611933565b6040516106689190613fdc565b60405180910390f35b61068b60048036038101906106869190613884565b611939565b6040516106989190613fdc565b60405180910390f35b6106bb60048036038101906106b6919061385b565b6119c0565b005b6106d760048036038101906106d29190613987565b611ada565b005b6106f360048036038101906106ee919061385b565b611bda565b005b6106fd611cd2565b73ffffffffffffffffffffffffffffffffffffffff1661071b6117e2565b73ffffffffffffffffffffffffffffffffffffffff1614610771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076890613efc565b60405180910390fd5b601481106107b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ab90613ddc565b60405180910390fd5b80600a819055507fc892dd58854a363820e03263498ea588565c892c9e1750134019b8c4246b1c20816040516107ea9190613fdc565b60405180910390a150565b60606040518060400160405280601181526020017f4d61726b6574696e672053616d75726169000000000000000000000000000000815250905090565b600061084661083f611cd2565b8484611cda565b6001905092915050565b6000600854905090565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006c01431e0fae6d7217caa0000000905090565b60006108a2848484611ea5565b610963846108ae611cd2565b61095e8560405180606001604052806028815260200161479a60289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610914611cd2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122969092919063ffffffff16565b611cda565b600190509392505050565b60006007548211156109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90613e1c565b60405180910390fd5b60006109bf6122eb565b90506109d4818461231690919063ffffffff16565b915050919050565b6109e4611cd2565b73ffffffffffffffffffffffffffffffffffffffff16610a026117e2565b73ffffffffffffffffffffffffffffffffffffffff1614610a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4f90613efc565b60405180910390fd5b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae290613dfc565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015610b90578173ffffffffffffffffffffffffffffffffffffffff167f8d1cf48ab3beb131fd587c9e51779f185e2940c12957db8f2540ff40e37de22760405160405180910390a2610bd3565b8173ffffffffffffffffffffffffffffffffffffffff167e9ffab4e5af041d16677667cb541451b838350e784e229771d2a5952a96fddc60405160405180910390a25b5050565b60006012905090565b6000610c89610bed611cd2565b84610c848560036000610bfe611cd2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232c90919063ffffffff16565b611cda565b6001905092915050565b600a5481565b6000610ca3611cd2565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2990613f9c565b60405180910390fd5b6000610d3d83612342565b50505050509050610d9681600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461239e90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610dee8160075461239e90919063ffffffff16565b600781905550610e098360085461232c90919063ffffffff16565b600881905550505050565b610e1c611cd2565b73ffffffffffffffffffffffffffffffffffffffff16610e3a6117e2565b73ffffffffffffffffffffffffffffffffffffffff1614610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8790613efc565b60405180910390fd5b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f58c3e0504c69d3a92726966f152a771e0f8f6ad4daca1ae9055a38aba1fd2b6260405160405180910390a250565b60006c01431e0fae6d7217caa0000000831115610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790613e9c565b60405180910390fd5b81610fa0576000610f9084612342565b5050505050905080915050610fb7565b6000610fab84612342565b50505050915050809150505b92915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610feb611cd2565b73ffffffffffffffffffffffffffffffffffffffff166110096117e2565b73ffffffffffffffffffffffffffffffffffffffff161461105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690613efc565b60405180910390fd5b42601254116110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90613dbc565b60405180910390fd5b4281116110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90613edc565b60405180910390fd5b8060128190555050565b6110f7611cd2565b73ffffffffffffffffffffffffffffffffffffffff166111156117e2565b73ffffffffffffffffffffffffffffffffffffffff161461116b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290613efc565b60405180910390fd5b601481106111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590613fbc565b60405180910390fd5b80600c819055507f9dccbae9df8254194adad00a710419d7588690c9320b7e8eaf3f38412c5b3670816040516111e49190613fdc565b60405180910390a150565b6111f7611cd2565b73ffffffffffffffffffffffffffffffffffffffff166112156117e2565b73ffffffffffffffffffffffffffffffffffffffff161461126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290613efc565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90613e7c565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156113cc57611388600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461096e565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561157b57600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506115c6565b6115c3600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461096e565b90505b919050565b6115d3611cd2565b73ffffffffffffffffffffffffffffffffffffffff166115f16117e2565b73ffffffffffffffffffffffffffffffffffffffff1614611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e90613efc565b60405180910390fd5b61165160006123b4565b565b600e5481565b611661611cd2565b73ffffffffffffffffffffffffffffffffffffffff1661167f6117e2565b73ffffffffffffffffffffffffffffffffffffffff16146116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90613efc565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f02a8f844bb0223fab8f02ef2d2ca75fc9190bd966081622447f7e51a88d1e78860405160405180910390a250565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600954905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f4d58530000000000000000000000000000000000000000000000000000000000815250905090565b600061190b611855611cd2565b84611906856040518060600160405280602581526020016147c2602591396003600061187f611cd2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122969092919063ffffffff16565b611cda565b6001905092915050565b6000611929611922611cd2565b8484611ea5565b6001905092915050565b600c5481565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6119c8611cd2565b73ffffffffffffffffffffffffffffffffffffffff166119e66117e2565b73ffffffffffffffffffffffffffffffffffffffff1614611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3390613efc565b60405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f4f6a6b6efe34ec6478021aa9fb7f6980e78ea3a10c74074a8ce49d5d3ebf1f7e60405160405180910390a250565b611ae2611cd2565b73ffffffffffffffffffffffffffffffffffffffff16611b006117e2565b73ffffffffffffffffffffffffffffffffffffffff1614611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d90613efc565b60405180910390fd5b60008111611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9090613d7c565b60405180910390fd5b80600e819055507fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a81604051611bcf9190613fdc565b60405180910390a150565b611be2611cd2565b73ffffffffffffffffffffffffffffffffffffffff16611c006117e2565b73ffffffffffffffffffffffffffffffffffffffff1614611c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4d90613efc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd90613e3c565b60405180910390fd5b611ccf816123b4565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4190613f7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190613e5c565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611e989190613fdc565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c90613f3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c90613d9c565b60405180910390fd5b60008111611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf90613f1c565b60405180910390fd5b42601254111561205f57601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661205e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205590613f5c565b60405180910390fd5b5b6120676117e2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156120d557506120a56117e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561212057600e5481111561211f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211690613ebc565b60405180910390fd5b5b600060019050600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121c75750600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061227a5750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122795750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b5b1561228457600090505b61229084848484612478565b50505050565b60008383111582906122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d59190613d5a565b60405180910390fd5b5082840390509392505050565b60008060006122f86126cf565b9150915061230f818361231690919063ffffffff16565b9250505090565b600081836123249190614084565b905092915050565b6000818361233a919061402e565b905092915050565b60008060008060008060008060006123598a612a46565b92509250925060008060006123778d86866123726122eb565b612aa0565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b600081836123ac919061410f565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8061248657612485612b29565b5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125295750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561253e57612539848484612b6c565b6126bb565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125e15750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156125f6576125f1848484612dcc565b6126ba565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126985750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156126ad576126a884848461302c565b6126b9565b6126b8848484613321565b5b5b5b806126c9576126c86134ec565b5b50505050565b6000806000600754905060006c01431e0fae6d7217caa0000000905060005b6006805490508110156129f35782600160006006848154811061273a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061284e57508160026000600684815481106127e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15612870576007546c01431e0fae6d7217caa000000094509450505050612a42565b61292660016000600684815481106128b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461239e90919063ffffffff16565b92506129de6002600060068481548110612969577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361239e90919063ffffffff16565b915080806129eb906141ef565b9150506126ee565b50612a166c01431e0fae6d7217caa000000060075461231690919063ffffffff16565b821015612a39576007546c01431e0fae6d7217caa0000000935093505050612a42565b81819350935050505b9091565b600080600080612a5585613500565b90506000612a6286613531565b90506000612a8b82612a7d858a61239e90919063ffffffff16565b61239e90919063ffffffff16565b90508083839550955095505050509193909250565b600080600080612ab9858961356290919063ffffffff16565b90506000612ad0868961356290919063ffffffff16565b90506000612ae7878961356290919063ffffffff16565b90506000612b1082612b02858761239e90919063ffffffff16565b61239e90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6000600a54148015612b3d57506000600c54145b15612b4757612b6a565b600a54600b81905550600c54600d819055506000600a819055506000600c819055505b565b600080600080600080612b7e87612342565b955095509550955095509550612bdc87600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461239e90919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c7186600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461239e90919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d0685600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d5281613578565b612d5c84836137e2565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051612db99190613fdc565b60405180910390a3505050505050505050565b600080600080600080612dde87612342565b955095509550955095509550612e3c86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461239e90919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612ed183600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232c90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612f6685600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612fb281613578565b612fbc84836137e2565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516130199190613fdc565b60405180910390a3505050505050505050565b60008060008060008061303e87612342565b95509550955095509550955061309c87600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461239e90919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061313186600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461239e90919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506131c683600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232c90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061325b85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506132a781613578565b6132b184836137e2565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161330e9190613fdc565b60405180910390a3505050505050505050565b60008060008060008061333387612342565b95509550955095509550955061339186600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461239e90919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061342685600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061347281613578565b61347c84836137e2565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516134d99190613fdc565b60405180910390a3505050505050505050565b600b54600a81905550600d54600c81905550565b600061352a606461351c600a548561356290919063ffffffff16565b61231690919063ffffffff16565b9050919050565b600061355b606461354d600c548561356290919063ffffffff16565b61231690919063ffffffff16565b9050919050565b6000818361357091906140b5565b905092915050565b60006135826122eb565b90506000613599828461356290919063ffffffff16565b905061360f8160016000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232c90919063ffffffff16565b60016000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506136898360095461232c90919063ffffffff16565b60098190555060056000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137dd576137778360026000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232c90919063ffffffff16565b60026000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b6137f78260075461239e90919063ffffffff16565b6007819055506138128160085461232c90919063ffffffff16565b6008819055505050565b60008135905061382b81614754565b92915050565b6000813590506138408161476b565b92915050565b60008135905061385581614782565b92915050565b60006020828403121561386d57600080fd5b600061387b8482850161381c565b91505092915050565b6000806040838503121561389757600080fd5b60006138a58582860161381c565b92505060206138b68582860161381c565b9150509250929050565b6000806000606084860312156138d557600080fd5b60006138e38682870161381c565b93505060206138f48682870161381c565b925050604061390586828701613846565b9150509250925092565b6000806040838503121561392257600080fd5b60006139308582860161381c565b925050602061394185828601613831565b9150509250929050565b6000806040838503121561395e57600080fd5b600061396c8582860161381c565b925050602061397d85828601613846565b9150509250929050565b60006020828403121561399957600080fd5b60006139a784828501613846565b91505092915050565b600080604083850312156139c357600080fd5b60006139d185828601613846565b92505060206139e285828601613831565b9150509250929050565b6139f581614143565b82525050565b613a0481614155565b82525050565b613a1381614198565b82525050565b6000613a2482614012565b613a2e818561401d565b9350613a3e8185602086016141bc565b613a4781614296565b840191505092915050565b6000613a5f60178361401d565b9150613a6a826142a7565b602082019050919050565b6000613a8260238361401d565b9150613a8d826142d0565b604082019050919050565b6000613aa5601b8361401d565b9150613ab08261431f565b602082019050919050565b6000613ac8600f8361401d565b9150613ad382614348565b602082019050919050565b6000613aeb602e8361401d565b9150613af682614371565b604082019050919050565b6000613b0e602a8361401d565b9150613b19826143c0565b604082019050919050565b6000613b3160268361401d565b9150613b3c8261440f565b604082019050919050565b6000613b5460228361401d565b9150613b5f8261445e565b604082019050919050565b6000613b77601b8361401d565b9150613b82826144ad565b602082019050919050565b6000613b9a601f8361401d565b9150613ba5826144d6565b602082019050919050565b6000613bbd60288361401d565b9150613bc8826144ff565b604082019050919050565b6000613be060208361401d565b9150613beb8261454e565b602082019050919050565b6000613c0360208361401d565b9150613c0e82614577565b602082019050919050565b6000613c2660298361401d565b9150613c31826145a0565b604082019050919050565b6000613c4960258361401d565b9150613c54826145ef565b604082019050919050565b6000613c6c60388361401d565b9150613c778261463e565b604082019050919050565b6000613c8f60248361401d565b9150613c9a8261468d565b604082019050919050565b6000613cb2602c8361401d565b9150613cbd826146dc565b604082019050919050565b6000613cd560158361401d565b9150613ce08261472b565b602082019050919050565b613cf481614181565b82525050565b613d038161418b565b82525050565b6000602082019050613d1e60008301846139ec565b92915050565b6000602082019050613d3960008301846139fb565b92915050565b6000602082019050613d546000830184613a0a565b92915050565b60006020820190508181036000830152613d748184613a19565b905092915050565b60006020820190508181036000830152613d9581613a52565b9050919050565b60006020820190508181036000830152613db581613a75565b9050919050565b60006020820190508181036000830152613dd581613a98565b9050919050565b60006020820190508181036000830152613df581613abb565b9050919050565b60006020820190508181036000830152613e1581613ade565b9050919050565b60006020820190508181036000830152613e3581613b01565b9050919050565b60006020820190508181036000830152613e5581613b24565b9050919050565b60006020820190508181036000830152613e7581613b47565b9050919050565b60006020820190508181036000830152613e9581613b6a565b9050919050565b60006020820190508181036000830152613eb581613b8d565b9050919050565b60006020820190508181036000830152613ed581613bb0565b9050919050565b60006020820190508181036000830152613ef581613bd3565b9050919050565b60006020820190508181036000830152613f1581613bf6565b9050919050565b60006020820190508181036000830152613f3581613c19565b9050919050565b60006020820190508181036000830152613f5581613c3c565b9050919050565b60006020820190508181036000830152613f7581613c5f565b9050919050565b60006020820190508181036000830152613f9581613c82565b9050919050565b60006020820190508181036000830152613fb581613ca5565b9050919050565b60006020820190508181036000830152613fd581613cc8565b9050919050565b6000602082019050613ff16000830184613ceb565b92915050565b600060208201905061400c6000830184613cfa565b92915050565b600081519050919050565b600082825260208201905092915050565b600061403982614181565b915061404483614181565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561407957614078614238565b5b828201905092915050565b600061408f82614181565b915061409a83614181565b9250826140aa576140a9614267565b5b828204905092915050565b60006140c082614181565b91506140cb83614181565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561410457614103614238565b5b828202905092915050565b600061411a82614181565b915061412583614181565b92508282101561413857614137614238565b5b828203905092915050565b600061414e82614161565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006141a3826141aa565b9050919050565b60006141b582614161565b9050919050565b60005b838110156141da5780820151818401526020810190506141bf565b838111156141e9576000848401525b50505050565b60006141fa82614181565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561422d5761422c614238565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b7f496e76616c6964204d6178205472616e73616374696f6e000000000000000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f54726164696e672068617320616c726561647920737461727465640000000000600082015250565b7f496e76616c696420746178206665650000000000000000000000000000000000600082015250565b7f5072652074726164696e6720697320616c7265616479207468652076616c756560008201527f206f6620276578636c7564656427000000000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b7f53746172742074696d65206d75737420626520696e2074686520667574757265600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f54686973206163636f756e742063616e6e6f742073656e6420746f6b656e732060008201527f756e74696c2074726164696e6720697320656e61626c65640000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b7f496e76616c696420636f6d6d756e697479206665650000000000000000000000600082015250565b61475d81614143565b811461476857600080fd5b50565b61477481614155565b811461477f57600080fd5b50565b61478b81614181565b811461479657600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122012c4535d6a34774e4c91ed78fba6b9844def421b6de6afc5827a36784425d67264736f6c634300080400330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061021c5760003560e01c806352390c02116101255780638da5cb5b116100ad578063dc06f1ad1161007c578063dc06f1ad14610653578063dd62ed3e14610671578063ea2f0b37146106a1578063ec28438a146106bd578063f2fde38b146106d95761021c565b80638da5cb5b146105b757806395d89b41146105d5578063a457c2d7146105f3578063a9059cbb146106235761021c565b80637d1db4a5116100f45780637d1db4a51461051157806385d6bb811461052f57806386e476dd1461054b57806388f82020146105695780638c2b9dc4146105995761021c565b806352390c021461048b5780635342acb4146104a757806370a08231146104d7578063715018a6146105075761021c565b8063313ce567116101a8578063437823ec11610177578063437823ec146103e95780634549b0391461040557806349bd5a5e146104355780634ef901dc14610453578063515f16041461046f5761021c565b8063313ce56714610361578063395093511461037f5780633b124fe7146103af5780633bd5d173146103cd5761021c565b80631694505e116101ef5780631694505e146102a957806318160ddd146102c757806323b872dd146102e55780632d838119146103155780632f9c4569146103455761021c565b8063061c82d01461022157806306fdde031461023d578063095ea7b31461025b57806313114a9d1461028b575b600080fd5b61023b60048036038101906102369190613987565b6106f5565b005b6102456107f5565b6040516102529190613d5a565b60405180910390f35b6102756004803603810190610270919061394b565b610832565b6040516102829190613d24565b60405180910390f35b610293610850565b6040516102a09190613fdc565b60405180910390f35b6102b161085a565b6040516102be9190613d3f565b60405180910390f35b6102cf610880565b6040516102dc9190613fdc565b60405180910390f35b6102ff60048036038101906102fa91906138c0565b610895565b60405161030c9190613d24565b60405180910390f35b61032f600480360381019061032a9190613987565b61096e565b60405161033c9190613fdc565b60405180910390f35b61035f600480360381019061035a919061390f565b6109dc565b005b610369610bd7565b6040516103769190613ff7565b60405180910390f35b6103996004803603810190610394919061394b565b610be0565b6040516103a69190613d24565b60405180910390f35b6103b7610c93565b6040516103c49190613fdc565b60405180910390f35b6103e760048036038101906103e29190613987565b610c99565b005b61040360048036038101906103fe919061385b565b610e14565b005b61041f600480360381019061041a91906139b0565b610f2e565b60405161042c9190613fdc565b60405180910390f35b61043d610fbd565b60405161044a9190613d09565b60405180910390f35b61046d60048036038101906104689190613987565b610fe3565b005b61048960048036038101906104849190613987565b6110ef565b005b6104a560048036038101906104a0919061385b565b6111ef565b005b6104c160048036038101906104bc919061385b565b61148a565b6040516104ce9190613d24565b60405180910390f35b6104f160048036038101906104ec919061385b565b6114e0565b6040516104fe9190613fdc565b60405180910390f35b61050f6115cb565b005b610519611653565b6040516105269190613fdc565b60405180910390f35b6105496004803603810190610544919061385b565b611659565b005b61055361175c565b6040516105609190613d09565b60405180910390f35b610583600480360381019061057e919061385b565b611782565b6040516105909190613d24565b60405180910390f35b6105a16117d8565b6040516105ae9190613fdc565b60405180910390f35b6105bf6117e2565b6040516105cc9190613d09565b60405180910390f35b6105dd61180b565b6040516105ea9190613d5a565b60405180910390f35b61060d6004803603810190610608919061394b565b611848565b60405161061a9190613d24565b60405180910390f35b61063d6004803603810190610638919061394b565b611915565b60405161064a9190613d24565b60405180910390f35b61065b611933565b6040516106689190613fdc565b60405180910390f35b61068b60048036038101906106869190613884565b611939565b6040516106989190613fdc565b60405180910390f35b6106bb60048036038101906106b6919061385b565b6119c0565b005b6106d760048036038101906106d29190613987565b611ada565b005b6106f360048036038101906106ee919061385b565b611bda565b005b6106fd611cd2565b73ffffffffffffffffffffffffffffffffffffffff1661071b6117e2565b73ffffffffffffffffffffffffffffffffffffffff1614610771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076890613efc565b60405180910390fd5b601481106107b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ab90613ddc565b60405180910390fd5b80600a819055507fc892dd58854a363820e03263498ea588565c892c9e1750134019b8c4246b1c20816040516107ea9190613fdc565b60405180910390a150565b60606040518060400160405280601181526020017f4d61726b6574696e672053616d75726169000000000000000000000000000000815250905090565b600061084661083f611cd2565b8484611cda565b6001905092915050565b6000600854905090565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006c01431e0fae6d7217caa0000000905090565b60006108a2848484611ea5565b610963846108ae611cd2565b61095e8560405180606001604052806028815260200161479a60289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610914611cd2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122969092919063ffffffff16565b611cda565b600190509392505050565b60006007548211156109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90613e1c565b60405180910390fd5b60006109bf6122eb565b90506109d4818461231690919063ffffffff16565b915050919050565b6109e4611cd2565b73ffffffffffffffffffffffffffffffffffffffff16610a026117e2565b73ffffffffffffffffffffffffffffffffffffffff1614610a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4f90613efc565b60405180910390fd5b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae290613dfc565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015610b90578173ffffffffffffffffffffffffffffffffffffffff167f8d1cf48ab3beb131fd587c9e51779f185e2940c12957db8f2540ff40e37de22760405160405180910390a2610bd3565b8173ffffffffffffffffffffffffffffffffffffffff167e9ffab4e5af041d16677667cb541451b838350e784e229771d2a5952a96fddc60405160405180910390a25b5050565b60006012905090565b6000610c89610bed611cd2565b84610c848560036000610bfe611cd2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232c90919063ffffffff16565b611cda565b6001905092915050565b600a5481565b6000610ca3611cd2565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2990613f9c565b60405180910390fd5b6000610d3d83612342565b50505050509050610d9681600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461239e90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610dee8160075461239e90919063ffffffff16565b600781905550610e098360085461232c90919063ffffffff16565b600881905550505050565b610e1c611cd2565b73ffffffffffffffffffffffffffffffffffffffff16610e3a6117e2565b73ffffffffffffffffffffffffffffffffffffffff1614610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8790613efc565b60405180910390fd5b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f58c3e0504c69d3a92726966f152a771e0f8f6ad4daca1ae9055a38aba1fd2b6260405160405180910390a250565b60006c01431e0fae6d7217caa0000000831115610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790613e9c565b60405180910390fd5b81610fa0576000610f9084612342565b5050505050905080915050610fb7565b6000610fab84612342565b50505050915050809150505b92915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610feb611cd2565b73ffffffffffffffffffffffffffffffffffffffff166110096117e2565b73ffffffffffffffffffffffffffffffffffffffff161461105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690613efc565b60405180910390fd5b42601254116110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90613dbc565b60405180910390fd5b4281116110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90613edc565b60405180910390fd5b8060128190555050565b6110f7611cd2565b73ffffffffffffffffffffffffffffffffffffffff166111156117e2565b73ffffffffffffffffffffffffffffffffffffffff161461116b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290613efc565b60405180910390fd5b601481106111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590613fbc565b60405180910390fd5b80600c819055507f9dccbae9df8254194adad00a710419d7588690c9320b7e8eaf3f38412c5b3670816040516111e49190613fdc565b60405180910390a150565b6111f7611cd2565b73ffffffffffffffffffffffffffffffffffffffff166112156117e2565b73ffffffffffffffffffffffffffffffffffffffff161461126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290613efc565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90613e7c565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156113cc57611388600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461096e565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561157b57600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506115c6565b6115c3600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461096e565b90505b919050565b6115d3611cd2565b73ffffffffffffffffffffffffffffffffffffffff166115f16117e2565b73ffffffffffffffffffffffffffffffffffffffff1614611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e90613efc565b60405180910390fd5b61165160006123b4565b565b600e5481565b611661611cd2565b73ffffffffffffffffffffffffffffffffffffffff1661167f6117e2565b73ffffffffffffffffffffffffffffffffffffffff16146116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90613efc565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f02a8f844bb0223fab8f02ef2d2ca75fc9190bd966081622447f7e51a88d1e78860405160405180910390a250565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600954905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f4d58530000000000000000000000000000000000000000000000000000000000815250905090565b600061190b611855611cd2565b84611906856040518060600160405280602581526020016147c2602591396003600061187f611cd2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122969092919063ffffffff16565b611cda565b6001905092915050565b6000611929611922611cd2565b8484611ea5565b6001905092915050565b600c5481565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6119c8611cd2565b73ffffffffffffffffffffffffffffffffffffffff166119e66117e2565b73ffffffffffffffffffffffffffffffffffffffff1614611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3390613efc565b60405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f4f6a6b6efe34ec6478021aa9fb7f6980e78ea3a10c74074a8ce49d5d3ebf1f7e60405160405180910390a250565b611ae2611cd2565b73ffffffffffffffffffffffffffffffffffffffff16611b006117e2565b73ffffffffffffffffffffffffffffffffffffffff1614611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d90613efc565b60405180910390fd5b60008111611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9090613d7c565b60405180910390fd5b80600e819055507fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a81604051611bcf9190613fdc565b60405180910390a150565b611be2611cd2565b73ffffffffffffffffffffffffffffffffffffffff16611c006117e2565b73ffffffffffffffffffffffffffffffffffffffff1614611c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4d90613efc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd90613e3c565b60405180910390fd5b611ccf816123b4565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4190613f7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190613e5c565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611e989190613fdc565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c90613f3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c90613d9c565b60405180910390fd5b60008111611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf90613f1c565b60405180910390fd5b42601254111561205f57601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661205e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205590613f5c565b60405180910390fd5b5b6120676117e2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156120d557506120a56117e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561212057600e5481111561211f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211690613ebc565b60405180910390fd5b5b600060019050600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121c75750600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061227a5750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122795750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b5b1561228457600090505b61229084848484612478565b50505050565b60008383111582906122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d59190613d5a565b60405180910390fd5b5082840390509392505050565b60008060006122f86126cf565b9150915061230f818361231690919063ffffffff16565b9250505090565b600081836123249190614084565b905092915050565b6000818361233a919061402e565b905092915050565b60008060008060008060008060006123598a612a46565b92509250925060008060006123778d86866123726122eb565b612aa0565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b600081836123ac919061410f565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8061248657612485612b29565b5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125295750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561253e57612539848484612b6c565b6126bb565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125e15750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156125f6576125f1848484612dcc565b6126ba565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126985750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156126ad576126a884848461302c565b6126b9565b6126b8848484613321565b5b5b5b806126c9576126c86134ec565b5b50505050565b6000806000600754905060006c01431e0fae6d7217caa0000000905060005b6006805490508110156129f35782600160006006848154811061273a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061284e57508160026000600684815481106127e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15612870576007546c01431e0fae6d7217caa000000094509450505050612a42565b61292660016000600684815481106128b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461239e90919063ffffffff16565b92506129de6002600060068481548110612969577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361239e90919063ffffffff16565b915080806129eb906141ef565b9150506126ee565b50612a166c01431e0fae6d7217caa000000060075461231690919063ffffffff16565b821015612a39576007546c01431e0fae6d7217caa0000000935093505050612a42565b81819350935050505b9091565b600080600080612a5585613500565b90506000612a6286613531565b90506000612a8b82612a7d858a61239e90919063ffffffff16565b61239e90919063ffffffff16565b90508083839550955095505050509193909250565b600080600080612ab9858961356290919063ffffffff16565b90506000612ad0868961356290919063ffffffff16565b90506000612ae7878961356290919063ffffffff16565b90506000612b1082612b02858761239e90919063ffffffff16565b61239e90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6000600a54148015612b3d57506000600c54145b15612b4757612b6a565b600a54600b81905550600c54600d819055506000600a819055506000600c819055505b565b600080600080600080612b7e87612342565b955095509550955095509550612bdc87600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461239e90919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c7186600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461239e90919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d0685600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d5281613578565b612d5c84836137e2565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051612db99190613fdc565b60405180910390a3505050505050505050565b600080600080600080612dde87612342565b955095509550955095509550612e3c86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461239e90919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612ed183600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232c90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612f6685600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612fb281613578565b612fbc84836137e2565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516130199190613fdc565b60405180910390a3505050505050505050565b60008060008060008061303e87612342565b95509550955095509550955061309c87600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461239e90919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061313186600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461239e90919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506131c683600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232c90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061325b85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506132a781613578565b6132b184836137e2565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161330e9190613fdc565b60405180910390a3505050505050505050565b60008060008060008061333387612342565b95509550955095509550955061339186600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461239e90919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061342685600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061347281613578565b61347c84836137e2565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516134d99190613fdc565b60405180910390a3505050505050505050565b600b54600a81905550600d54600c81905550565b600061352a606461351c600a548561356290919063ffffffff16565b61231690919063ffffffff16565b9050919050565b600061355b606461354d600c548561356290919063ffffffff16565b61231690919063ffffffff16565b9050919050565b6000818361357091906140b5565b905092915050565b60006135826122eb565b90506000613599828461356290919063ffffffff16565b905061360f8160016000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232c90919063ffffffff16565b60016000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506136898360095461232c90919063ffffffff16565b60098190555060056000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137dd576137778360026000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461232c90919063ffffffff16565b60026000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b6137f78260075461239e90919063ffffffff16565b6007819055506138128160085461232c90919063ffffffff16565b6008819055505050565b60008135905061382b81614754565b92915050565b6000813590506138408161476b565b92915050565b60008135905061385581614782565b92915050565b60006020828403121561386d57600080fd5b600061387b8482850161381c565b91505092915050565b6000806040838503121561389757600080fd5b60006138a58582860161381c565b92505060206138b68582860161381c565b9150509250929050565b6000806000606084860312156138d557600080fd5b60006138e38682870161381c565b93505060206138f48682870161381c565b925050604061390586828701613846565b9150509250925092565b6000806040838503121561392257600080fd5b60006139308582860161381c565b925050602061394185828601613831565b9150509250929050565b6000806040838503121561395e57600080fd5b600061396c8582860161381c565b925050602061397d85828601613846565b9150509250929050565b60006020828403121561399957600080fd5b60006139a784828501613846565b91505092915050565b600080604083850312156139c357600080fd5b60006139d185828601613846565b92505060206139e285828601613831565b9150509250929050565b6139f581614143565b82525050565b613a0481614155565b82525050565b613a1381614198565b82525050565b6000613a2482614012565b613a2e818561401d565b9350613a3e8185602086016141bc565b613a4781614296565b840191505092915050565b6000613a5f60178361401d565b9150613a6a826142a7565b602082019050919050565b6000613a8260238361401d565b9150613a8d826142d0565b604082019050919050565b6000613aa5601b8361401d565b9150613ab08261431f565b602082019050919050565b6000613ac8600f8361401d565b9150613ad382614348565b602082019050919050565b6000613aeb602e8361401d565b9150613af682614371565b604082019050919050565b6000613b0e602a8361401d565b9150613b19826143c0565b604082019050919050565b6000613b3160268361401d565b9150613b3c8261440f565b604082019050919050565b6000613b5460228361401d565b9150613b5f8261445e565b604082019050919050565b6000613b77601b8361401d565b9150613b82826144ad565b602082019050919050565b6000613b9a601f8361401d565b9150613ba5826144d6565b602082019050919050565b6000613bbd60288361401d565b9150613bc8826144ff565b604082019050919050565b6000613be060208361401d565b9150613beb8261454e565b602082019050919050565b6000613c0360208361401d565b9150613c0e82614577565b602082019050919050565b6000613c2660298361401d565b9150613c31826145a0565b604082019050919050565b6000613c4960258361401d565b9150613c54826145ef565b604082019050919050565b6000613c6c60388361401d565b9150613c778261463e565b604082019050919050565b6000613c8f60248361401d565b9150613c9a8261468d565b604082019050919050565b6000613cb2602c8361401d565b9150613cbd826146dc565b604082019050919050565b6000613cd560158361401d565b9150613ce08261472b565b602082019050919050565b613cf481614181565b82525050565b613d038161418b565b82525050565b6000602082019050613d1e60008301846139ec565b92915050565b6000602082019050613d3960008301846139fb565b92915050565b6000602082019050613d546000830184613a0a565b92915050565b60006020820190508181036000830152613d748184613a19565b905092915050565b60006020820190508181036000830152613d9581613a52565b9050919050565b60006020820190508181036000830152613db581613a75565b9050919050565b60006020820190508181036000830152613dd581613a98565b9050919050565b60006020820190508181036000830152613df581613abb565b9050919050565b60006020820190508181036000830152613e1581613ade565b9050919050565b60006020820190508181036000830152613e3581613b01565b9050919050565b60006020820190508181036000830152613e5581613b24565b9050919050565b60006020820190508181036000830152613e7581613b47565b9050919050565b60006020820190508181036000830152613e9581613b6a565b9050919050565b60006020820190508181036000830152613eb581613b8d565b9050919050565b60006020820190508181036000830152613ed581613bb0565b9050919050565b60006020820190508181036000830152613ef581613bd3565b9050919050565b60006020820190508181036000830152613f1581613bf6565b9050919050565b60006020820190508181036000830152613f3581613c19565b9050919050565b60006020820190508181036000830152613f5581613c3c565b9050919050565b60006020820190508181036000830152613f7581613c5f565b9050919050565b60006020820190508181036000830152613f9581613c82565b9050919050565b60006020820190508181036000830152613fb581613ca5565b9050919050565b60006020820190508181036000830152613fd581613cc8565b9050919050565b6000602082019050613ff16000830184613ceb565b92915050565b600060208201905061400c6000830184613cfa565b92915050565b600081519050919050565b600082825260208201905092915050565b600061403982614181565b915061404483614181565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561407957614078614238565b5b828201905092915050565b600061408f82614181565b915061409a83614181565b9250826140aa576140a9614267565b5b828204905092915050565b60006140c082614181565b91506140cb83614181565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561410457614103614238565b5b828202905092915050565b600061411a82614181565b915061412583614181565b92508282101561413857614137614238565b5b828203905092915050565b600061414e82614161565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006141a3826141aa565b9050919050565b60006141b582614161565b9050919050565b60005b838110156141da5780820151818401526020810190506141bf565b838111156141e9576000848401525b50505050565b60006141fa82614181565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561422d5761422c614238565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b7f496e76616c6964204d6178205472616e73616374696f6e000000000000000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f54726164696e672068617320616c726561647920737461727465640000000000600082015250565b7f496e76616c696420746178206665650000000000000000000000000000000000600082015250565b7f5072652074726164696e6720697320616c7265616479207468652076616c756560008201527f206f6620276578636c7564656427000000000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b7f53746172742074696d65206d75737420626520696e2074686520667574757265600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f54686973206163636f756e742063616e6e6f742073656e6420746f6b656e732060008201527f756e74696c2074726164696e6720697320656e61626c65640000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b7f496e76616c696420636f6d6d756e697479206665650000000000000000000000600082015250565b61475d81614143565b811461476857600080fd5b50565b61477481614155565b811461477f57600080fd5b50565b61478b81614181565b811461479657600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122012c4535d6a34774e4c91ed78fba6b9844def421b6de6afc5827a36784425d67264736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
-----Decoded View---------------
Arg [0] : uniswapRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
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.
Add Token to MetaMask (Web3)