Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Source Code
Overview
Max Total Supply
21,000,000,000 MELLSTROY
Holders
490
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
128.198915843097511695 MELLSTROYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
MELLSTROY
Compiler Version
v0.8.25+commit.b61c2a91
Optimization Enabled:
Yes with 999999 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
contract MELLSTROY is Context, IERC20, Ownable {
using SafeMath for uint256;
using Address for 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 _isExcluded;
address[] private _excluded;
uint256 private constant MAX = ~uint256(0);
uint256 private _tTotal = 21_000_000_000 * 10 ** 18;
uint256 private _rTotal = (MAX - (MAX % _tTotal));
uint256 private _tFeeTotal;
string private _name = "MELLSTROY";
string private _symbol = "MELLSTROY";
uint8 private _decimals = 18;
// Base Fees
uint256 public _taxFee = 1;
uint256 private _previousTaxFee = _taxFee;
uint256 public _liquidityFee = 1;
uint256 private _previousLiquidityFee = _liquidityFee;
uint256 public _burnFee = 1;
uint256 private _previousBurnFee = _burnFee;
uint256 public _marketingFee = 2;
address public marketingWallet;
uint256 private _previousMarketingFee = _marketingFee;
// Sell Fees
uint256 public _sellTaxFee = 2;
uint256 public _sellLiquidityFee = 2;
uint256 public _sellMarketingFee = 4;
uint256 public _sellBurnFee = 2;
// Anti whale
uint256 public constant MAX_HOLDING_PERCENTS_DIVISOR = 1000;
uint256 public _maxHoldingPercents = 5;
bool public antiWhaleEnabled;
// Anti manager
address public antiManager;
IUniswapV2Router02 public uniswapV2Router;
address public uniswapV2Pair;
address public universalRouter;
address public universalRouterFeeAddress;
bool inSwapAndLiquify;
bool public swapAndLiquifyEnabled = false;
uint256 public numTokensSellToAddToLiquidity = 5000000 * 10 ** 18;
uint256 public numTokensSellToMarketing = 10000000 * 10 ** 18;
bool public feePercentagesLocked;
mapping(address => bool) public antiWhaleWhitelist;
bool private firstTransferToPair;
bool public transferFromPairWhitelistEnabled = true;
uint256 public transferFromPairCounter;
mapping(address => bool) public firstTransferFromPairWhitelist;
mapping(address => bool) public secondTransferFromPairWhitelist;
event SwapAndLiquifyEnabledUpdated(bool enabled);
event SwapAndLiquify(
uint256 tokensSwapped,
uint256 ethReceived,
uint256 tokensIntoLiqudity
);
modifier lockTheSwap {
inSwapAndLiquify = true;
_;
inSwapAndLiquify = false;
}
modifier feePercentagesNotLocked {
require(!feePercentagesLocked, "Fee percentages are locked");
_;
}
constructor(IUniswapV2Router02 _uniswapV2Router, address _universalRouter, address _universalRouterFeeAddress, address _owner, address _marketingWallet, address _antiManager, address[] memory _emissionAddresses, uint256[] memory _emissionPercentages, address[] memory _firstWhitelist, address[] memory _secondWhitelist) {
_transferOwnership(_owner);
marketingWallet = _marketingWallet;
antiManager = _antiManager;
uint256 rSum;
uint256 tSum;
for (uint256 i; i < _emissionAddresses.length; i++) {
uint256 rAmount = (_rTotal / 100) * _emissionPercentages[i];
_rOwned[_emissionAddresses[i]] = rAmount;
rSum += rAmount;
uint256 tAmount = (_tTotal * _emissionPercentages[i]) / 100;
tSum += tAmount;
emit Transfer(address(0), _emissionAddresses[i], tAmount);
}
_rOwned[_owner] = _rTotal - rSum;
// Create a uniswap pair for this new token
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
.createPair(address(this), _uniswapV2Router.WETH());
// set the rest of the contract variables
uniswapV2Router = _uniswapV2Router;
universalRouter = _universalRouter;
universalRouterFeeAddress = _universalRouterFeeAddress;
//exclude owner, anti manager and this contract from fee
_isExcludedFromFee[owner()] = true;
_isExcludedFromFee[_antiManager] = true;
_isExcludedFromFee[address(this)] = true;
for (uint256 i; i < _firstWhitelist.length; i++) {
firstTransferFromPairWhitelist[_firstWhitelist[i]] = true;
}
firstTransferFromPairWhitelist[_universalRouter] = true;
firstTransferFromPairWhitelist[_universalRouterFeeAddress] = true;
for (uint256 i; i < _secondWhitelist.length; i++) {
secondTransferFromPairWhitelist[_secondWhitelist[i]] = true;
}
secondTransferFromPairWhitelist[_universalRouter] = true;
secondTransferFromPairWhitelist[_universalRouterFeeAddress] = true;
emit Transfer(address(0), _owner, _tTotal - tSum);
}
function name() public view returns (string memory) {
return _name;
}
function symbol() public view returns (string memory) {
return _symbol;
}
function decimals() public view returns (uint8) {
return _decimals;
}
function totalSupply() public view override returns (uint256) {
return _tTotal;
}
function balanceOf(address account) public view override returns (uint256) {
if (_isExcluded[account]) return _tOwned[account];
return tokenFromReflection(_rOwned[account]);
}
function transfer(address recipient, uint256 amount) public override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
function allowance(address owner, address spender) public view override returns (uint256) {
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount) public override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
function isExcludedFromReward(address account) public view returns (bool) {
return _isExcluded[account];
}
function totalFees() public view returns (uint256) {
return _tFeeTotal;
}
function deliver(uint256 tAmount) public {
address sender = _msgSender();
require(!_isExcluded[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) public 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(account != address(uniswapV2Router), 'We can not exclude Uniswap router.');
require(!_isExcluded[account], "Account is already excluded");
if (_rOwned[account] > 0) {
_tOwned[account] = tokenFromReflection(_rOwned[account]);
}
_isExcluded[account] = true;
_excluded.push(account);
}
function includeInReward(address account) external onlyOwner() {
require(_isExcluded[account], "Account is already excluded");
for (uint256 i = 0; i < _excluded.length; i++) {
if (_excluded[i] == account) {
_excluded[i] = _excluded[_excluded.length - 1];
_tOwned[account] = 0;
_isExcluded[account] = false;
_excluded.pop();
break;
}
}
}
function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _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);
_takeLiquidity(tLiquidity);
_reflectFee(rFee, tFee);
emit Transfer(sender, recipient, tTransferAmount);
}
//to receive ETH from uniswapV2Router when swapping
receive() external payable {}
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 tLiquidity) = _getTValues(tAmount);
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate());
return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity);
}
function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
uint256 tFee = calculateTaxFee(tAmount);
uint256 tLiquidity = calculateLiquidityFee(tAmount);
uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
return (tTransferAmount, tFee, tLiquidity);
}
function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
uint256 rAmount = tAmount.mul(currentRate);
uint256 rFee = tFee.mul(currentRate);
uint256 rLiquidity = tLiquidity.mul(currentRate);
uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity);
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 _takeLiquidity(uint256 tLiquidity) private {
uint256 currentRate = _getRate();
uint256 rLiquidity = tLiquidity.mul(currentRate);
_rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
if (_isExcluded[address(this)])
_tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
}
function calculateTaxFee(uint256 _amount) private view returns (uint256) {
return _amount.mul(_taxFee).div(10 ** 2);
}
function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
return _amount.mul(_liquidityFee).div(10 ** 2);
}
function activateSellFee() private {
_previousTaxFee = _taxFee;
_previousLiquidityFee = _liquidityFee;
_previousBurnFee = _burnFee;
_previousMarketingFee = _marketingFee;
_taxFee = _sellTaxFee;
_liquidityFee = _sellLiquidityFee;
_marketingFee = _sellMarketingFee;
_burnFee = _sellBurnFee;
}
function removeAllFee() private {
if (_taxFee == 0 && _liquidityFee == 0 && _marketingFee == 0 && _burnFee == 0) return;
_previousTaxFee = _taxFee;
_previousLiquidityFee = _liquidityFee;
_previousBurnFee = _burnFee;
_previousMarketingFee = _marketingFee;
_taxFee = 0;
_liquidityFee = 0;
_marketingFee = 0;
_burnFee = 0;
}
function restoreAllFee() private {
_taxFee = _previousTaxFee;
_liquidityFee = _previousLiquidityFee;
_burnFee = _previousBurnFee;
_marketingFee = _previousMarketingFee;
}
function isExcludedFromFee(address account) public view returns (bool) {
return _isExcludedFromFee[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(amount > 0, "Transfer amount must be greater than zero");
if (!firstTransferToPair && to == uniswapV2Pair) {
firstTransferToPair = true;
}
else if (firstTransferToPair && transferFromPairCounter < 88 && transferFromPairWhitelistEnabled && (from == uniswapV2Pair || from == universalRouter)) {
require((transferFromPairCounter > 19 && secondTransferFromPairWhitelist[to]) || (transferFromPairCounter < 20 && firstTransferFromPairWhitelist[to]), "Not in whitelist");
if (to != universalRouter && to != universalRouterFeeAddress) {
transferFromPairCounter++;
}
}
// is the token balance of this contract address over the min number of
// tokens that we need to initiate a swap + liquidity lock?
// also, don't get caught in a circular liquidity event.
// also, don't swap & liquify if sender is uniswap pair.
uint256 contractTokenBalance = balanceOf(address(this));
bool overMinTokenBalance = contractTokenBalance >= (numTokensSellToAddToLiquidity + numTokensSellToMarketing);
if (overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && to == uniswapV2Pair && swapAndLiquifyEnabled) {
//add liquidity
swapAndLiquify(numTokensSellToAddToLiquidity, numTokensSellToMarketing);
}
//transfer amount, it will take tax, burn, liquidity fee
_tokenTransfer(from, to, amount);
if (antiWhaleEnabled) {
uint maxAllowed = _tTotal * _maxHoldingPercents / MAX_HOLDING_PERCENTS_DIVISOR;
if (to == uniswapV2Pair) {
require(amount <= maxAllowed, "Transacted amount exceed the max allowed value");
} else {
require(balanceOf(to) <= maxAllowed || antiWhaleWhitelist[to], "Wallet balance exceeds the max limit");
}
}
}
function swapAndLiquify(uint256 liquidity, uint256 marketing) private lockTheSwap {
swapTokensForEth(marketing);
payable(marketingWallet).transfer(address(this).balance);
// split the contract balance into halves
uint256 half = liquidity.div(2);
uint256 otherHalf = liquidity.sub(half);
// capture the contract's current ETH balance.
// this is so that we can capture exactly the amount of ETH that the
// swap creates, and not make the liquidity event include any ETH that
// has been manually sent to the contract
uint256 initialBalance = address(this).balance;
// swap tokens for ETH
swapTokensForEth(half);
// <- this breaks the ETH -> HATE swap when swap+liquify is triggered
// how much ETH did we just swap into?
uint256 newBalance = address(this).balance.sub(initialBalance);
// add liquidity to uniswap
addLiquidity(otherHalf, newBalance);
emit SwapAndLiquify(half, newBalance, otherHalf);
}
function swapTokensForEth(uint256 tokenAmount) private {
// generate the uniswap pair path of token -> weth
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
_approve(address(this), address(uniswapV2Router), tokenAmount);
// make the swap
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of ETH
path,
address(this),
block.timestamp
);
}
function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
// approve token transfer to cover all possible scenarios
_approve(address(this), address(uniswapV2Router), tokenAmount);
// add the liquidity
uniswapV2Router.addLiquidityETH{value : ethAmount}(
address(this),
tokenAmount,
0, // slippage is unavoidable
0, // slippage is unavoidable
owner(),
block.timestamp
);
}
//this method is responsible for taking all fee, if takeFee is true
function _tokenTransfer(address sender, address recipient, uint256 amount) private {
if (_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]) {
removeAllFee();
} else if (recipient == uniswapV2Pair) {
activateSellFee();
}
//Calculate burn amount and marketing amount
uint256 burnAmt = amount.mul(_burnFee).div(100);
uint256 marketingAmt = amount.mul(_marketingFee).div(100);
if (_isExcluded[sender] && !_isExcluded[recipient]) {
_transferFromExcluded(sender, recipient, (amount.sub(burnAmt).sub(marketingAmt)));
} else if (!_isExcluded[sender] && _isExcluded[recipient]) {
_transferToExcluded(sender, recipient, (amount.sub(burnAmt).sub(marketingAmt)));
} else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
_transferStandard(sender, recipient, (amount.sub(burnAmt).sub(marketingAmt)));
} else if (_isExcluded[sender] && _isExcluded[recipient]) {
_transferBothExcluded(sender, recipient, (amount.sub(burnAmt).sub(marketingAmt)));
} else {
_transferStandard(sender, recipient, (amount.sub(burnAmt).sub(marketingAmt)));
}
//Temporarily remove fees to transfer to burn address and marketing wallet
_taxFee = 0;
_liquidityFee = 0;
_transferStandard(sender, address(0), burnAmt);
_transferStandard(sender, address(this), marketingAmt);
//Restore tax and liquidity fees
_taxFee = _previousTaxFee;
_liquidityFee = _previousLiquidityFee;
if (_isExcludedFromFee[sender] || _isExcludedFromFee[recipient] || recipient == uniswapV2Pair) {
restoreAllFee();
}
}
function _transferStandard(address sender, address recipient, uint256 tAmount) private {
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_takeLiquidity(tLiquidity);
_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 tLiquidity) = _getValues(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_takeLiquidity(tLiquidity);
_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 tLiquidity) = _getValues(tAmount);
_tOwned[sender] = _tOwned[sender].sub(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_takeLiquidity(tLiquidity);
_reflectFee(rFee, tFee);
emit Transfer(sender, recipient, tTransferAmount);
}
function excludeFromFee(address account) public onlyOwner {
_isExcludedFromFee[account] = true;
}
function includeInFee(address account) public onlyOwner {
_isExcludedFromFee[account] = false;
}
function setMarketingWallet(address newWallet) external onlyOwner() {
marketingWallet = newWallet;
}
function setTaxFeePercent(uint256 taxFee) external onlyOwner() feePercentagesNotLocked() {
require(taxFee <= 1, "Tax fee cannot be more than 1%");
_taxFee = taxFee;
}
function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() feePercentagesNotLocked() {
require(liquidityFee <= 1, "Liquidity fee cannot be more than 1%");
_liquidityFee = liquidityFee;
}
function setMarketingFeePercent(uint256 marketingFee) external onlyOwner() feePercentagesNotLocked() {
require(marketingFee <= 2, "Marketing fee cannot be more than 2%");
_marketingFee = marketingFee;
}
function setBurnFeePercent(uint256 burnFee) external onlyOwner() feePercentagesNotLocked() {
require(burnFee <= 1, "Burn fee cannot be more than 1%");
_burnFee = burnFee;
}
function setSellBurnFeePercent(uint256 sellBurnFee) external onlyOwner() feePercentagesNotLocked() {
require(sellBurnFee <= 2, "Sell burn fee cannot be more than 2%");
_sellBurnFee = sellBurnFee;
}
function setSellMarketingFeePercent(uint256 sellMarketingFee) external onlyOwner() feePercentagesNotLocked() {
require(sellMarketingFee <= 4, "Sell marketing fee cannot be more than 4%");
_sellMarketingFee = sellMarketingFee;
}
function setSellLiquidityFeePercent(uint256 sellLiquidityFee) external onlyOwner() feePercentagesNotLocked() {
require(sellLiquidityFee <= 2, "Sell liquidity fee cannot be more than 2%");
_sellLiquidityFee = sellLiquidityFee;
}
function setSellTaxFeePercent(uint256 sellTaxFee) external onlyOwner() feePercentagesNotLocked() {
require(sellTaxFee <= 2, "Sell tax fee cannot be more than 2%");
_sellTaxFee = sellTaxFee;
}
function setMaxHoldingPercents(uint256 maxHoldingPercents) external onlyOwner() {
require(maxHoldingPercents >= 1, "Max holding percents cannot be less than 0.1%");
require(maxHoldingPercents <= 30, "Max holding percents cannot be more than 3%");
_maxHoldingPercents = maxHoldingPercents;
}
function lockFeePercentages() external onlyOwner feePercentagesNotLocked {
feePercentagesLocked = true;
}
function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
swapAndLiquifyEnabled = _enabled;
emit SwapAndLiquifyEnabledUpdated(_enabled);
}
function setAntiWhale(bool enabled) external {
require(msg.sender == owner() || msg.sender == antiManager, "Only admin or anti manager allowed");
antiWhaleEnabled = enabled;
}
function editAntiWhaleWhitelist(address[] calldata account, bool[] calldata enabled) external onlyOwner {
require(account.length == enabled.length, "Non-matching length");
for (uint256 i; i < account.length; i++) {
antiWhaleWhitelist[account[i]] = enabled[i];
}
}
function editFirstTransferFromPairWhitelist(address[] calldata account, bool[] calldata enabled) external onlyOwner {
require(account.length == enabled.length, "Non-matching length");
for (uint256 i; i < account.length; i++) {
firstTransferFromPairWhitelist[account[i]] = enabled[i];
}
}
function editSecondTransferFromPairWhitelist(address[] calldata account, bool[] calldata enabled) external onlyOwner {
require(account.length == enabled.length, "Non-matching length");
for (uint256 i; i < account.length; i++) {
secondTransferFromPairWhitelist[account[i]] = enabled[i];
}
}
function setNumTokensSellToAddToLiquidity(uint256 _numTokensSellToAddToLiquidity) external onlyOwner {
require(_numTokensSellToAddToLiquidity > 0, "Cannot set zero");
numTokensSellToAddToLiquidity = _numTokensSellToAddToLiquidity;
}
function setNumTokensSellToMarketing(uint256 _numTokensSellToMarketing) external onlyOwner {
require(_numTokensSellToMarketing > 0, "Cannot set zero");
numTokensSellToMarketing = _numTokensSellToMarketing;
}
function getETHFromContract() external onlyOwner {
payable(_msgSender()).transfer(address(this).balance);
}
function setTransferFromPairWhitelistEnabled(bool enabled) external onlyOwner {
transferFromPairWhitelistEnabled = enabled;
}
}pragma solidity >=0.6.2;
import './IUniswapV2Router01.sol';
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}pragma solidity >=0.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);
}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 IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB) external view returns (address pair);
function allPairs(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(address tokenA, address tokenB) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}{
"remappings": [],
"optimizer": {
"enabled": true,
"runs": 999999
},
"evmVersion": "cancun",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IUniswapV2Router02","name":"_uniswapV2Router","type":"address"},{"internalType":"address","name":"_universalRouter","type":"address"},{"internalType":"address","name":"_universalRouterFeeAddress","type":"address"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_antiManager","type":"address"},{"internalType":"address[]","name":"_emissionAddresses","type":"address[]"},{"internalType":"uint256[]","name":"_emissionPercentages","type":"uint256[]"},{"internalType":"address[]","name":"_firstWhitelist","type":"address[]"},{"internalType":"address[]","name":"_secondWhitelist","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":"MAX_HOLDING_PERCENTS_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxHoldingPercents","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellTaxFee","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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiWhaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"antiWhaleWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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[]"},{"internalType":"bool[]","name":"enabled","type":"bool[]"}],"name":"editAntiWhaleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"},{"internalType":"bool[]","name":"enabled","type":"bool[]"}],"name":"editFirstTransferFromPairWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"},{"internalType":"bool[]","name":"enabled","type":"bool[]"}],"name":"editSecondTransferFromPairWhitelist","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":[],"name":"feePercentagesLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"firstTransferFromPairWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getETHFromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockFeePercentages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"","type":"address"}],"name":"secondTransferFromPairWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setAntiWhale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"setBurnFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"setMarketingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxHoldingPercents","type":"uint256"}],"name":"setMaxHoldingPercents","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokensSellToAddToLiquidity","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokensSellToMarketing","type":"uint256"}],"name":"setNumTokensSellToMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellBurnFee","type":"uint256"}],"name":"setSellBurnFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"}],"name":"setSellLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellMarketingFee","type":"uint256"}],"name":"setSellMarketingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellTaxFee","type":"uint256"}],"name":"setSellTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setTransferFromPairWhitelistEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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":[],"name":"transferFromPairCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transferFromPairWhitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"universalRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"universalRouterFeeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60806040526b43dacaf91c1a84ff080000006007819055610021905f196106a9565b61002c905f196106d0565b6008556040805180820190915260098152684d454c4c5354524f5960b81b6020820152600a9061005c9082610781565b506040805180820190915260098152684d454c4c5354524f5960b81b6020820152600b9061008a9082610781565b50600c805460ff191660129081179091556001600d819055600e819055600f8190556010819055601181905590556002601381905560158190556016819055601781905560046018556019556005601a55601f805460ff60a81b191690556a0422ca8b0a00a4250000006020556a084595161401484a0000006021556024805461ff001916610100179055348015610120575f80fd5b506040516150bf3803806150bf83398101604081905261013f9161098a565b61014833610646565b61015187610646565b601480546001600160a01b0319166001600160a01b0388811691909117909155601b8054610100600160a81b031916610100928816929092029190911790555f80805b86518110156102b7575f8682815181106101b0576101b0610a93565b602002602001015160646008546101c79190610aa7565b6101d19190610aba565b90508060015f8a85815181106101e9576101e9610a93565b6020908102919091018101516001600160a01b031682528101919091526040015f20556102168185610ad1565b93505f606488848151811061022d5761022d610a93565b60200260200101516007546102429190610aba565b61024c9190610aa7565b90506102588185610ad1565b935088838151811061026c5761026c610a93565b60200260200101516001600160a01b03165f6001600160a01b03165f8051602061509f833981519152836040516102a591815260200190565b60405180910390a35050600101610194565b50816008546102c691906106d0565b60015f8b6001600160a01b03166001600160a01b031681526020019081526020015f20819055508b6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610329573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061034d9190610ae4565b6001600160a01b031663c9c65396308e6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610398573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103bc9190610ae4565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610406573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061042a9190610ae4565b601d80546001600160a01b03199081166001600160a01b0393841617909155601c805482168f8416179055601e805482168e8416179055601f8054909116918c16919091179055600160045f6104875f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff19968716179055908b16815260049092528082208054841660019081179091553083529082208054909316179091555b845181101561053657600160265f8784815181106104fd576104fd610a93565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790556001016104dd565b506001600160a01b038b81165f908152602660205260408082208054600160ff199182168117909255938e1683529082208054909316179091555b83518110156105ca57600160275f86848151811061059157610591610a93565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff1916911515919091179055600101610571565b506001600160a01b038b81165f908152602760205260408082208054600160ff1991821681179092558e851684529183208054909216179055600754918b16915f8051602061509f833981519152906106249085906106d0565b60405190815260200160405180910390a3505050505050505050505050610b06565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b5f52601260045260245ffd5b5f826106b7576106b7610695565b500690565b634e487b7160e01b5f52601160045260245ffd5b818103818111156106e3576106e36106bc565b92915050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061071157607f821691505b60208210810361072f57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561077c57805f5260205f20601f840160051c8101602085101561075a5750805b601f840160051c820191505b81811015610779575f8155600101610766565b50505b505050565b81516001600160401b0381111561079a5761079a6106e9565b6107ae816107a884546106fd565b84610735565b602080601f8311600181146107e1575f84156107ca5750858301515b5f19600386901b1c1916600185901b178555610838565b5f85815260208120601f198616915b8281101561080f578886015182559484019460019091019084016107f0565b508582101561082c57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b6001600160a01b0381168114610854575f80fd5b50565b805161086281610840565b919050565b604051601f8201601f191681016001600160401b038111828210171561088f5761088f6106e9565b604052919050565b5f6001600160401b038211156108af576108af6106e9565b5060051b60200190565b5f82601f8301126108c8575f80fd5b815160206108dd6108d883610897565b610867565b8083825260208201915060208460051b8701019350868411156108fe575f80fd5b602086015b8481101561092357805161091681610840565b8352918301918301610903565b509695505050505050565b5f82601f83011261093d575f80fd5b8151602061094d6108d883610897565b8083825260208201915060208460051b87010193508684111561096e575f80fd5b602086015b848110156109235780518352918301918301610973565b5f805f805f805f805f806101408b8d0312156109a4575f80fd5b6109ad8b610857565b99506109bb60208c01610857565b98506109c960408c01610857565b97506109d760608c01610857565b96506109e560808c01610857565b95506109f360a08c01610857565b60c08c01519095506001600160401b0380821115610a0f575f80fd5b610a1b8e838f016108b9565b955060e08d0151915080821115610a30575f80fd5b610a3c8e838f0161092e565b94506101008d0151915080821115610a52575f80fd5b610a5e8e838f016108b9565b93506101208d0151915080821115610a74575f80fd5b50610a818d828e016108b9565b9150509295989b9194979a5092959850565b634e487b7160e01b5f52603260045260245ffd5b5f82610ab557610ab5610695565b500490565b80820281158282048414176106e3576106e36106bc565b808201808211156106e3576106e36106bc565b5f60208284031215610af4575f80fd5b8151610aff81610840565b9392505050565b61458c80610b135f395ff3fe608060405260043610610452575f3560e01c80636bc87c3a11610237578063ab6106321161013c578063d12a7688116100b7578063ebf7866311610087578063eed7eb8d1161006d578063eed7eb8d14610d1f578063f0f165af14610d33578063f2fde38b14610d52575f80fd5b8063ebf7866314610cd2578063ed21553214610cf1575f80fd5b8063d12a768814610c1c578063d5bde46c14610c31578063dd62ed3e14610c62578063ea2f0b3714610cb3575f80fd5b8063c1570e741161010c578063c8607952116100f2578063c860795214610bc9578063cea2695814610bde578063d0e0352314610bfd575f80fd5b8063c1570e7414610b8b578063c49b9a8014610baa575f80fd5b8063ab61063214610b15578063b9ebdf0e14610b43578063c0ac57eb14610b62578063c0b0fda214610b76575f80fd5b806388f82020116101cc5780639655cab51161019c578063a457c2d711610182578063a457c2d714610ab8578063a9059cbb14610ad7578063a928681c14610af6575f80fd5b80639655cab514610a845780639ff7795114610aa3575f80fd5b806388f82020146109e45780638da5cb5b14610a285780638ee88c5314610a5157806395d89b4114610a70575f80fd5b80637869830a116102075780637869830a1461096f5780637abdc1ca1461098e5780638656e3ad146109a357806388790a68146109cf575f80fd5b80636bc87c3a146108fb57806370a0823114610910578063715018a61461092f57806375f0a87414610943575f80fd5b80633bd5d173116103575780635342acb4116102d25780635d098b38116102a257806364a06e801161028857806364a06e80146108af578063686aaa0c146108c45780636bc79717146108dd575f80fd5b80635d098b38146108625780636332a99b14610881575f80fd5b80635342acb4146107c757806353e7c2ac1461080b57806357d87f0d1461082a5780635876ccc514610843575f80fd5b806349bd5a5e116103275780634a74bb021161030d5780634a74bb02146107575780634e67c52d1461078957806352390c02146107a8575f80fd5b806349bd5a5e1461070c5780634a5566bf14610738575f80fd5b80633bd5d17314610690578063437823ec146106af5780634549b039146106ce578063457c194c146106ed575f80fd5b806322976e0d116103e757806335a9e4df116103b75780633685d4191161039d5780633685d4191461063d578063395093511461065c5780633b124fe71461067b575f80fd5b806335a9e4df146105fc5780633622eca514610628575f80fd5b806322976e0d1461058857806323b872dd1461059d5780632d838119146105bc578063313ce567146105db575f80fd5b806313114a9d1161042257806313114a9d146104fa5780631694505e1461050e57806318160ddd1461055f578063200a692d14610573575f80fd5b8063061c82d01461045d57806306fdde031461047e578063095ea7b3146104a85780630a7d2d87146104d7575f80fd5b3661045957005b5f80fd5b348015610468575f80fd5b5061047c610477366004614069565b610d71565b005b348015610489575f80fd5b50610492610e5b565b60405161049f9190614080565b60405180910390f35b3480156104b3575f80fd5b506104c76104c23660046140f4565b610eeb565b604051901515815260200161049f565b3480156104e2575f80fd5b506104ec601a5481565b60405190815260200161049f565b348015610505575f80fd5b506009546104ec565b348015610519575f80fd5b50601c5461053a9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161049f565b34801561056a575f80fd5b506007546104ec565b34801561057e575f80fd5b506104ec60165481565b348015610593575f80fd5b506104ec60135481565b3480156105a8575f80fd5b506104c76105b736600461411e565b610f01565b3480156105c7575f80fd5b506104ec6105d6366004614069565b610f75565b3480156105e6575f80fd5b50600c5460405160ff909116815260200161049f565b348015610607575f80fd5b50601e5461053a9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610633575f80fd5b506104ec60255481565b348015610648575f80fd5b5061047c61065736600461415c565b611024565b348015610667575f80fd5b506104c76106763660046140f4565b61126f565b348015610686575f80fd5b506104ec600d5481565b34801561069b575f80fd5b5061047c6106aa366004614069565b6112b1565b3480156106ba575f80fd5b5061047c6106c936600461415c565b6113dc565b3480156106d9575f80fd5b506104ec6106e836600461418b565b611432565b3480156106f8575f80fd5b5061047c610707366004614069565b6114d6565b348015610717575f80fd5b50601d5461053a9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610743575f80fd5b5061047c6107523660046141b5565b6115e0565b348015610762575f80fd5b50601f546104c7907501000000000000000000000000000000000000000000900460ff1681565b348015610794575f80fd5b5061047c6107a3366004614216565b6116de565b3480156107b3575f80fd5b5061047c6107c236600461415c565b61180b565b3480156107d2575f80fd5b506104c76107e136600461415c565b73ffffffffffffffffffffffffffffffffffffffff165f9081526004602052604090205460ff1690565b348015610816575f80fd5b5061047c610825366004614216565b611a73565b348015610835575f80fd5b50601b546104c79060ff1681565b34801561084e575f80fd5b5061047c61085d366004614069565b611b99565b34801561086d575f80fd5b5061047c61087c36600461415c565b611ca4565b34801561088c575f80fd5b506104c761089b36600461415c565b60236020525f908152604090205460ff1681565b3480156108ba575f80fd5b506104ec6103e881565b3480156108cf575f80fd5b506022546104c79060ff1681565b3480156108e8575f80fd5b506024546104c790610100900460ff1681565b348015610906575f80fd5b506104ec600f5481565b34801561091b575f80fd5b506104ec61092a36600461415c565b611cf3565b34801561093a575f80fd5b5061047c611d76565b34801561094e575f80fd5b5060145461053a9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561097a575f80fd5b5061047c6109893660046141b5565b611d89565b348015610999575f80fd5b506104ec60195481565b3480156109ae575f80fd5b50601f5461053a9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156109da575f80fd5b506104ec60175481565b3480156109ef575f80fd5b506104c76109fe36600461415c565b73ffffffffffffffffffffffffffffffffffffffff165f9081526005602052604090205460ff1690565b348015610a33575f80fd5b505f5473ffffffffffffffffffffffffffffffffffffffff1661053a565b348015610a5c575f80fd5b5061047c610a6b366004614069565b611dc8565b348015610a7b575f80fd5b50610492611ed2565b348015610a8f575f80fd5b5061047c610a9e366004614069565b611ee1565b348015610aae575f80fd5b506104ec60215481565b348015610ac3575f80fd5b506104c7610ad23660046140f4565b612010565b348015610ae2575f80fd5b506104c7610af13660046140f4565b61206a565b348015610b01575f80fd5b5061047c610b10366004614069565b612076565b348015610b20575f80fd5b506104c7610b2f36600461415c565b60276020525f908152604090205460ff1681565b348015610b4e575f80fd5b5061047c610b5d366004614069565b612181565b348015610b6d575f80fd5b5061047c6121f7565b348015610b81575f80fd5b506104ec60115481565b348015610b96575f80fd5b5061047c610ba5366004614216565b61222b565b348015610bb5575f80fd5b5061047c610bc43660046141b5565b612351565b348015610bd4575f80fd5b506104ec60185481565b348015610be9575f80fd5b5061047c610bf8366004614069565b6123de565b348015610c08575f80fd5b5061047c610c17366004614069565b6124c3565b348015610c27575f80fd5b506104ec60205481565b348015610c3c575f80fd5b50601b5461053a90610100900473ffffffffffffffffffffffffffffffffffffffff1681565b348015610c6d575f80fd5b506104ec610c7c36600461427d565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260036020908152604080832093909416825291909152205490565b348015610cbe575f80fd5b5061047c610ccd36600461415c565b6125ce565b348015610cdd575f80fd5b5061047c610cec366004614069565b612621565b348015610cfc575f80fd5b506104c7610d0b36600461415c565b60266020525f908152604090205460ff1681565b348015610d2a575f80fd5b5061047c61272b565b348015610d3e575f80fd5b5061047c610d4d366004614069565b6127cd565b348015610d5d575f80fd5b5061047c610d6c36600461415c565b612843565b610d796128f7565b60225460ff1615610deb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b656400000000000060448201526064015b60405180910390fd5b6001811115610e56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f546178206665652063616e6e6f74206265206d6f7265207468616e20312500006044820152606401610de2565b600d55565b6060600a8054610e6a906142b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e96906142b4565b8015610ee15780601f10610eb857610100808354040283529160200191610ee1565b820191905f5260205f20905b815481529060010190602001808311610ec457829003601f168201915b5050505050905090565b5f610ef7338484612977565b5060015b92915050565b5f610f0d848484612b29565b610f6b8433610f668560405180606001604052806028815260200161450a6028913973ffffffffffffffffffffffffffffffffffffffff8a165f90815260036020908152604080832033845290915290205491906130f9565b612977565b5060019392505050565b5f600854821115611008576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e73000000000000000000000000000000000000000000006064820152608401610de2565b5f61101161313e565b905061101d838261315f565b9392505050565b61102c6128f7565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526005602052604090205460ff166110ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610de2565b5f5b60065481101561126b578173ffffffffffffffffffffffffffffffffffffffff16600682815481106110f0576110f0614305565b5f9182526020909120015473ffffffffffffffffffffffffffffffffffffffff160361126357600680546111269060019061435f565b8154811061113657611136614305565b5f918252602090912001546006805473ffffffffffffffffffffffffffffffffffffffff909216918390811061116e5761116e614305565b5f91825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918416815260028252604080822082905560059092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600680548061120857611208614372565b5f8281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190555050565b6001016110bc565b5050565b335f81815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610ef7918590610f66908661316a565b335f8181526005602052604090205460ff1615611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e00000000000000000000000000000000000000006064820152608401610de2565b5f61135a83613175565b5050505073ffffffffffffffffffffffffffffffffffffffff84165f90815260016020526040902054919250611392919050826131bd565b73ffffffffffffffffffffffffffffffffffffffff83165f908152600160205260409020556008546113c490826131bd565b6008556009546113d4908461316a565b600955505050565b6113e46128f7565b73ffffffffffffffffffffffffffffffffffffffff165f90815260046020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b5f60075483111561149f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610de2565b816114bd575f6114ae84613175565b50939550610efb945050505050565b5f6114c784613175565b50929550610efb945050505050565b6114de6128f7565b60225460ff161561154b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610de2565b60028111156115db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4d61726b6574696e67206665652063616e6e6f74206265206d6f72652074686160448201527f6e203225000000000000000000000000000000000000000000000000000000006064820152608401610de2565b601355565b5f5473ffffffffffffffffffffffffffffffffffffffff163314806116215750601b54610100900473ffffffffffffffffffffffffffffffffffffffff1633145b6116ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4f6e6c792061646d696e206f7220616e7469206d616e6167657220616c6c6f7760448201527f65640000000000000000000000000000000000000000000000000000000000006064820152608401610de2565b601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6116e66128f7565b82811461174f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6e2d6d61746368696e67206c656e677468000000000000000000000000006044820152606401610de2565b5f5b838110156118045782828281811061176b5761176b614305565b905060200201602081019061178091906141b5565b60265f87878581811061179557611795614305565b90506020020160208101906117aa919061415c565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040015f2080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055600101611751565b5050505050565b6118136128f7565b601c5473ffffffffffffffffffffffffffffffffffffffff908116908216036118be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f75746560448201527f722e0000000000000000000000000000000000000000000000000000000000006064820152608401610de2565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526005602052604090205460ff161561194d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610de2565b73ffffffffffffffffffffffffffffffffffffffff81165f90815260016020526040902054156119cb5773ffffffffffffffffffffffffffffffffffffffff81165f908152600160205260409020546119a590610f75565b73ffffffffffffffffffffffffffffffffffffffff82165f908152600260205260409020555b73ffffffffffffffffffffffffffffffffffffffff165f81815260056020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b611a7b6128f7565b828114611ae4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6e2d6d61746368696e67206c656e677468000000000000000000000000006044820152606401610de2565b5f5b8381101561180457828282818110611b0057611b00614305565b9050602002016020810190611b1591906141b5565b60235f878785818110611b2a57611b2a614305565b9050602002016020810190611b3f919061415c565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040015f2080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055600101611ae6565b611ba16128f7565b60225460ff1615611c0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610de2565b6002811115611c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f53656c6c206c6971756964697479206665652063616e6e6f74206265206d6f7260448201527f65207468616e20322500000000000000000000000000000000000000000000006064820152608401610de2565b601755565b611cac6128f7565b601480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526005602052604081205460ff1615611d48575073ffffffffffffffffffffffffffffffffffffffff165f9081526002602052604090205490565b73ffffffffffffffffffffffffffffffffffffffff82165f90815260016020526040902054610efb90610f75565b611d7e6128f7565b611d875f6131c8565b565b611d916128f7565b60248054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b611dd06128f7565b60225460ff1615611e3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610de2565b6001811115611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4c6971756964697479206665652063616e6e6f74206265206d6f72652074686160448201527f6e203125000000000000000000000000000000000000000000000000000000006064820152608401610de2565b600f55565b6060600b8054610e6a906142b4565b611ee96128f7565b6001811015611f7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4d617820686f6c64696e672070657263656e74732063616e6e6f74206265206c60448201527f657373207468616e20302e3125000000000000000000000000000000000000006064820152608401610de2565b601e81111561200b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4d617820686f6c64696e672070657263656e74732063616e6e6f74206265206d60448201527f6f7265207468616e2033250000000000000000000000000000000000000000006064820152608401610de2565b601a55565b5f610ef73384610f668560405180606001604052806025815260200161453260259139335f90815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d16845290915290205491906130f9565b5f610ef7338484612b29565b61207e6128f7565b60225460ff16156120eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610de2565b600481111561217c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f53656c6c206d61726b6574696e67206665652063616e6e6f74206265206d6f7260448201527f65207468616e20342500000000000000000000000000000000000000000000006064820152608401610de2565b601855565b6121896128f7565b5f81116121f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f43616e6e6f7420736574207a65726f00000000000000000000000000000000006044820152606401610de2565b602155565b6121ff6128f7565b60405133904780156108fc02915f818181858888f19350505050158015612228573d5f803e3d5ffd5b50565b6122336128f7565b82811461229c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6e2d6d61746368696e67206c656e677468000000000000000000000000006044820152606401610de2565b5f5b83811015611804578282828181106122b8576122b8614305565b90506020020160208101906122cd91906141b5565b60275f8787858181106122e2576122e2614305565b90506020020160208101906122f7919061415c565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040015f2080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905560010161229e565b6123596128f7565b601f80548215157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff9091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906123d390831515815260200190565b60405180910390a150565b6123e66128f7565b60225460ff1615612453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610de2565b60018111156124be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4275726e206665652063616e6e6f74206265206d6f7265207468616e203125006044820152606401610de2565b601155565b6124cb6128f7565b60225460ff1615612538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610de2565b60028111156125c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f53656c6c20746178206665652063616e6e6f74206265206d6f7265207468616e60448201527f20322500000000000000000000000000000000000000000000000000000000006064820152608401610de2565b601655565b6125d66128f7565b73ffffffffffffffffffffffffffffffffffffffff165f90815260046020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b6126296128f7565b60225460ff1615612696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610de2565b6002811115612726576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f53656c6c206275726e206665652063616e6e6f74206265206d6f72652074686160448201527f6e203225000000000000000000000000000000000000000000000000000000006064820152608401610de2565b601955565b6127336128f7565b60225460ff16156127a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610de2565b602280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6127d56128f7565b5f811161283e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f43616e6e6f7420736574207a65726f00000000000000000000000000000000006044820152606401610de2565b602055565b61284b6128f7565b73ffffffffffffffffffffffffffffffffffffffff81166128ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610de2565b612228816131c8565b5f5473ffffffffffffffffffffffffffffffffffffffff163314611d87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610de2565b73ffffffffffffffffffffffffffffffffffffffff8316612a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610de2565b73ffffffffffffffffffffffffffffffffffffffff8216612abc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610de2565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316612bcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610de2565b5f8111612c5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610de2565b60245460ff16158015612c885750601d5473ffffffffffffffffffffffffffffffffffffffff8381169116145b15612cbd57602480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055612e6b565b60245460ff168015612cd157506058602554105b8015612ce45750602454610100900460ff165b8015612d2e5750601d5473ffffffffffffffffffffffffffffffffffffffff84811691161480612d2e5750601e5473ffffffffffffffffffffffffffffffffffffffff8481169116145b15612e6b576013602554118015612d69575073ffffffffffffffffffffffffffffffffffffffff82165f9081526027602052604090205460ff165b80612da557506014602554108015612da5575073ffffffffffffffffffffffffffffffffffffffff82165f9081526026602052604090205460ff165b612e0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e6f7420696e2077686974656c697374000000000000000000000000000000006044820152606401610de2565b601e5473ffffffffffffffffffffffffffffffffffffffff838116911614801590612e515750601f5473ffffffffffffffffffffffffffffffffffffffff838116911614155b15612e6b5760258054905f612e658361439f565b91905055505b5f612e7530611cf3565b90505f602154602054612e8891906143d6565b8210159050808015612eb55750601f5474010000000000000000000000000000000000000000900460ff16155b8015612edc5750601d5473ffffffffffffffffffffffffffffffffffffffff868116911614155b8015612f025750601d5473ffffffffffffffffffffffffffffffffffffffff8581169116145b8015612f295750601f547501000000000000000000000000000000000000000000900460ff165b15612f3c57612f3c60205460215461323c565b612f47858585613375565b601b5460ff1615611804575f6103e8601a54600754612f6691906143e9565b612f709190614400565b601d5490915073ffffffffffffffffffffffffffffffffffffffff9081169086160361302b5780841115613026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5472616e73616374656420616d6f756e742065786365656420746865206d617860448201527f20616c6c6f7765642076616c75650000000000000000000000000000000000006064820152608401610de2565b6130f1565b8061303586611cf3565b111580613066575073ffffffffffffffffffffffffffffffffffffffff85165f9081526023602052604090205460ff165b6130f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f57616c6c65742062616c616e6365206578636565647320746865206d6178206c60448201527f696d6974000000000000000000000000000000000000000000000000000000006064820152608401610de2565b505050505050565b5f8184841115613136576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de29190614080565b505050900390565b5f805f61314961373c565b9092509050613158828261315f565b9250505090565b5f61101d8284614400565b5f61101d82846143d6565b5f805f805f805f805f6131878a6138df565b9250925092505f805f6131a38d868661319e61313e565b613917565b919f909e50909c50959a5093985091965092945050505050565b5f61101d828461435f565b5f805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000017905561328481613963565b60145460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02915f818181858888f193505050501580156132c7573d5f803e3d5ffd5b505f6132d483600261315f565b90505f6132e184836131bd565b9050476132ed83613963565b5f6132f847836131bd565b90506133048382613b04565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050601f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905550505050565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526004602052604090205460ff16806133cc575073ffffffffffffffffffffffffffffffffffffffff82165f9081526004602052604090205460ff165b156133de576133d9613c1a565b613439565b601d5473ffffffffffffffffffffffffffffffffffffffff9081169083160361343957613439600d8054600e55600f805460105560118054601255601380546015556016549093556017549091556018549091556019549055565b5f61345a606461345460115485613c7590919063ffffffff16565b9061315f565b90505f613477606461345460135486613c7590919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff86165f9081526005602052604090205490915060ff1680156134d3575073ffffffffffffffffffffffffffffffffffffffff84165f9081526005602052604090205460ff16155b156134fb576134f685856134f1846134eb88886131bd565b906131bd565b613c80565b613670565b73ffffffffffffffffffffffffffffffffffffffff85165f9081526005602052604090205460ff16158015613554575073ffffffffffffffffffffffffffffffffffffffff84165f9081526005602052604090205460ff165b15613571576134f6858561356c846134eb88886131bd565b613ded565b73ffffffffffffffffffffffffffffffffffffffff85165f9081526005602052604090205460ff161580156135cb575073ffffffffffffffffffffffffffffffffffffffff84165f9081526005602052604090205460ff16155b156135e8576134f685856135e3846134eb88886131bd565b613eb7565b73ffffffffffffffffffffffffffffffffffffffff85165f9081526005602052604090205460ff168015613640575073ffffffffffffffffffffffffffffffffffffffff84165f9081526005602052604090205460ff165b1561365d576134f68585613658846134eb88886131bd565b613f04565b61367085856135e3846134eb88886131bd565b5f600d819055600f81905561368790869084613eb7565b613692853083613eb7565b600e54600d55601054600f5573ffffffffffffffffffffffffffffffffffffffff85165f9081526004602052604090205460ff16806136f5575073ffffffffffffffffffffffffffffffffffffffff84165f9081526004602052604090205460ff165b8061371a5750601d5473ffffffffffffffffffffffffffffffffffffffff8581169116145b1561180457611804600e54600d55601054600f55601254601155601554601355565b6008546007545f918291825b6006548110156138af578260015f6006848154811061376957613769614305565b5f91825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205411806137eb57508160025f600684815481106137b8576137b8614305565b5f91825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b1561380157600854600754945094505050509091565b61385260015f6006848154811061381a5761381a614305565b5f91825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205484906131bd565b92506138a560025f6006848154811061386d5761386d614305565b5f91825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205483906131bd565b9150600101613748565b506007546008546138bf9161315f565b8210156138d6576008546007549350935050509091565b90939092509050565b5f805f806138ec85613f8c565b90505f6138f886613fa7565b90505f613909826134eb89866131bd565b979296509094509092505050565b5f8080806139258886613c75565b90505f6139328887613c75565b90505f61393f8888613c75565b90505f613950826134eb86866131bd565b939b939a50919850919650505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061399657613996614305565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601c54604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015613a13573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a379190614438565b81600181518110613a4a57613a4a614305565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152601c54613a7d9130911684612977565b601c546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac94790613adb9085905f90869030904290600401614453565b5f604051808303815f87803b158015613af2575f80fd5b505af11580156130f1573d5f803e3d5ffd5b601c54613b2990309073ffffffffffffffffffffffffffffffffffffffff1684612977565b601c5473ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80613b6a5f5473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015613bf5573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061180491906144de565b600d54158015613c2a5750600f54155b8015613c365750601354155b8015613c425750601154155b15613c4957565b600d8054600e55600f805460105560118054601255601380546015555f93849055918390559082905555565b5f61101d82846143e9565b5f805f805f80613c8f87613175565b73ffffffffffffffffffffffffffffffffffffffff8f165f90815260026020526040902054959b50939950919750955093509150613ccd90886131bd565b73ffffffffffffffffffffffffffffffffffffffff8a165f90815260026020908152604080832093909355600190522054613d0890876131bd565b73ffffffffffffffffffffffffffffffffffffffff808b165f9081526001602052604080822093909355908a1681522054613d43908661316a565b73ffffffffffffffffffffffffffffffffffffffff89165f90815260016020526040902055613d7181613fc2565b613d7b8483614045565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613dda91815260200190565b60405180910390a3505050505050505050565b5f805f805f80613dfc87613175565b73ffffffffffffffffffffffffffffffffffffffff8f165f90815260016020526040902054959b50939950919750955093509150613e3a90876131bd565b73ffffffffffffffffffffffffffffffffffffffff808b165f90815260016020908152604080832094909455918b16815260029091522054613e7c908461316a565b73ffffffffffffffffffffffffffffffffffffffff89165f90815260026020908152604080832093909355600190522054613d43908661316a565b5f805f805f80613ec687613175565b73ffffffffffffffffffffffffffffffffffffffff8f165f90815260016020526040902054959b50939950919750955093509150613d0890876131bd565b5f805f805f80613f1387613175565b73ffffffffffffffffffffffffffffffffffffffff8f165f90815260026020526040902054959b50939950919750955093509150613f5190886131bd565b73ffffffffffffffffffffffffffffffffffffffff8a165f90815260026020908152604080832093909355600190522054613e3a90876131bd565b5f610efb6064613454600d5485613c7590919063ffffffff16565b5f610efb6064613454600f5485613c7590919063ffffffff16565b5f613fcb61313e565b90505f613fd88383613c75565b305f90815260016020526040902054909150613ff4908261316a565b305f9081526001602090815260408083209390935560059052205460ff161561404057305f90815260026020526040902054614030908461316a565b305f908152600260205260409020555b505050565b60085461405290836131bd565b600855600954614062908261316a565b6009555050565b5f60208284031215614079575f80fd5b5035919050565b602081525f82518060208401528060208501604085015e5f6040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114612228575f80fd5b5f8060408385031215614105575f80fd5b8235614110816140d3565b946020939093013593505050565b5f805f60608486031215614130575f80fd5b833561413b816140d3565b9250602084013561414b816140d3565b929592945050506040919091013590565b5f6020828403121561416c575f80fd5b813561101d816140d3565b80358015158114614186575f80fd5b919050565b5f806040838503121561419c575f80fd5b823591506141ac60208401614177565b90509250929050565b5f602082840312156141c5575f80fd5b61101d82614177565b5f8083601f8401126141de575f80fd5b50813567ffffffffffffffff8111156141f5575f80fd5b6020830191508360208260051b850101111561420f575f80fd5b9250929050565b5f805f8060408587031215614229575f80fd5b843567ffffffffffffffff80821115614240575f80fd5b61424c888389016141ce565b90965094506020870135915080821115614264575f80fd5b50614271878288016141ce565b95989497509550505050565b5f806040838503121561428e575f80fd5b8235614299816140d3565b915060208301356142a9816140d3565b809150509250929050565b600181811c908216806142c857607f821691505b6020821081036142ff577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b81810381811115610efb57610efb614332565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036143cf576143cf614332565b5060010190565b80820180821115610efb57610efb614332565b8082028115828204841417610efb57610efb614332565b5f82614433577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b5f60208284031215614448575f80fd5b815161101d816140d3565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156144b057845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161447e565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b5f805f606084860312156144f0575f80fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208432d185e55b7598e652641a2ff8a105a87ec8af76331a6f88d7f4d0c0f3594d64736f6c63430008190033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad000000000000000000000000000000fee13a103a10d593b9ae06b3e05f2e7e1c000000000000000000000000365015e58ecb1c65a833da79c44dde10c298b745000000000000000000000000aabe29be63c0c90d3fddc450ca34f94229b62b73000000000000000000000000461e50b07ece7c2762011af91664fa0c3c1a5244000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000054000000000000000000000000000000000000000000000000000000000000000040000000000000000000000006b3e8954cc4935bbc289a1fe70d951d84b5e574a000000000000000000000000aef2cd818f9db4ada970c69621c815a21601ad4b0000000000000000000000007b3eae75d01bc26d706c07f7f871a4642cdbf05c0000000000000000000000007507aa43606861acfce4267b7904cd62eeced222000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000015000000000000000000000000e37d314da721e9fc0201843e110d94ddadc608c40000000000000000000000001a4a49eaa66b6a175b50af700a5b260664f48a8c0000000000000000000000001ec722e11660640cbadd94c697bf6eb1ed13fd560000000000000000000000007be4e09c12c17f5c9547b95c0914c1e866d5faee000000000000000000000000c4fb58be664e5b818d3315c709c651571fcf6600000000000000000000000000fdfff4d6b0def8f4b558d858470b64104b4c3889000000000000000000000000af24b531a74a6c6c91949f4c8b62c779c13d4f11000000000000000000000000d1512acab99e370fd12a826b277a1e8eafca615c00000000000000000000000090a484ee631aa0ab5bcfe62ed08df3678ed78c58000000000000000000000000179abac17df658e767b1183cf40ed68f1a66d74f00000000000000000000000057631eff7a085a5a5e97899e559fb40c5f82a1370000000000000000000000009e7c7fdbfa51968ab4c6b494783cdf049cb0287e00000000000000000000000080ed7684f4da8238bd32182516c7c8640b11facb000000000000000000000000b1ef9406eae928921bb4b221a62ff35f74f55501000000000000000000000000f620ac0e362fb9ffd85eb7cb260f40540fc6e579000000000000000000000000f78b228a5bc44d2c52a54a0186d09122bd768c71000000000000000000000000699840cc7b90d8399df98c1b899e97e0b3053c9f000000000000000000000000605f83692692e9651bb83f6c910198b73728e88900000000000000000000000034d97987ca9557de75a052e5adea55ca18114e800000000000000000000000006ac171dec0dc370fe75feab90598df23283f564200000000000000000000000078864d210bda3cf7455c9c4dac15089ff7a8926000000000000000000000000000000000000000000000000000000000000000440000000000000000000000006ae72f5e5c7f06e32e97c1b33a57233164cce71a0000000000000000000000006dfac3e96569a33763ea498e181fc37259f1d31e000000000000000000000000d0c7d887e0946a4bc77dfe2cec77b4bfebbedcb50000000000000000000000009660c254c60b9cae8baa1b273a448253528f0c3c000000000000000000000000b4f252a9448dca4b2ef175452851db80ed94761a000000000000000000000000b56345bfeefbd21514a7004cb360bb9613ea9d6c000000000000000000000000cb52f988cd541388cb958c70b4ea82db739b4b79000000000000000000000000d052901232f4d462776a23baf8504c4756d33e0c0000000000000000000000009b47c4221d73dd4e5f73478513390fbffc88acf600000000000000000000000089f6d08f3570e2c21ed3e2fe30f73ae36717df02000000000000000000000000e19dd3b5684f1de229c01e3fdd5498d94a364c9b0000000000000000000000003d8c667ee06fabbf662517a98505d309f46b2caf0000000000000000000000005650aeda18d73e843ed5ca671728f570ba3a753a0000000000000000000000001609cb65575b3ba6f038647745cac79fc54c10540000000000000000000000002d1b419f386b0b1af11724524f8cdab72cd69af100000000000000000000000015f165f131cc35d053ba18dadd4667ab885c1d530000000000000000000000004e25d23a22fef9714e0f1bafeec12c01c898285d000000000000000000000000e40e1381201f6d92636d824367938288845db56700000000000000000000000030a9ed02701d41bc9ea06a75ca129cccce4b80a000000000000000000000000031fc405ef70d529621e7b3c089ab4e48adce6a94000000000000000000000000797b91144d94a731462acb7413abd5922d801404000000000000000000000000e1d3f19d3388612bfcc2899d6ab6a778a4dc2eab000000000000000000000000f54c0fca8f67db9591206bb94fc91e29bebff3d80000000000000000000000005917c4b07471675238747f62f26069a8b33c2d1b00000000000000000000000011d4b5db0d9b5a1b3196cb4bddb4c4ac8430ae74000000000000000000000000a1e1e9cb3e8d5f54c30b2c40003b6b1fdbe228d5000000000000000000000000e672ec811ffbf958c111a204155f7e48dffbf112000000000000000000000000cdba63248a3f3d8197e9f5a69c21550e3b485bef000000000000000000000000ec6058f53fa1f578e72e7c547ed49794d2503f5d000000000000000000000000b801f2f9885695f2eb051c378304d608d546a51a000000000000000000000000b6af66356c7696e633dde6881ec244932fd48034000000000000000000000000327cdc20fe29013473cfa73ca9ecab7e8641e57500000000000000000000000017ba7724ae0b4cc4a23b93b838b8752ed31513bb000000000000000000000000ed71fdba2d7462c0bb5ac55af4a1166e113aaa09000000000000000000000000ddbd0d9fcd5e51210fbbaa64ad9d382a0e25f6a00000000000000000000000009fa2fabebd6c9f5aedf41de549159039e68a7fba0000000000000000000000002683c74e7ff796e65464de262868e936861b4d1900000000000000000000000056b19d2daa1046f6bb903ce7758a5231feceb1f9000000000000000000000000695af22904cb90ca212b7dc43533ea0bb839749d0000000000000000000000001fc26f5092992cc28eee43921f7217f7cb4aa0e6000000000000000000000000befed35972f386c081c83e598fc9f6b56e87a3320000000000000000000000000f282889c3a8d28eb1faa4c7e39d01f097f5ad8c000000000000000000000000eff1139d797f51287990b4132d759c0f5827af1d00000000000000000000000051bdf623d4ddb0a07060553b0424e823a09457af000000000000000000000000b9b95468acc6e22cc16e336a71db9e802b415425000000000000000000000000b450e15029b747f8736e359df530e616f26f25100000000000000000000000009b74dbf4cbbc189c7fb8570f8517b4d269eba333000000000000000000000000875404313af47d477b3a9432b3b7854eb88569fc00000000000000000000000025ef7e947c20ad551435faeb16fda36307d2fac900000000000000000000000084aa87de7704d5a600b9ac063a3e27eb531cc3fb000000000000000000000000de0d8ba7806870b68e7eb98a12d32cffdd8c4f9f00000000000000000000000070b4e8de9396a1a85d7f00f0898ff08191558eda000000000000000000000000c215cf49653cd1ec85e338e6b476be67a9ad2bb0000000000000000000000000fc805a533f0f75c052055ea1a18e9a69c3cb092500000000000000000000000013ee12bcb6a44724842b1f224c158ed2b00abd1100000000000000000000000023e2a6ed69ff8a9881a814cc1ed3ab6bc00c364a00000000000000000000000090bf57ec077c63e177962da4bf2cc91c0e1e13080000000000000000000000000e667793763e10a222814a463b72075fa39ef88b000000000000000000000000e65c3c5554635edb54d312e3cd31608bbc413f5c0000000000000000000000001b260e7f689235d9795f2feaf33046536dcea45d00000000000000000000000027b4f18996cfe912b5e310629565889c08a265b700000000000000000000000028dfc068daff04ecc757c43d7e79d145dfa304770000000000000000000000009c1e8e679ba2cd13a40fa82ba6380ee45e2347d30000000000000000000000007262fae62d5e3846a40015a3063ae80a95188884000000000000000000000000fa16a931a89959cec4950a8d9ceb57e856d826ee00000000000000000000000088804add56f7b66921ad61e2e4222028d9c9f4a1000000000000000000000000124f487cc5d9aae54c446d7aac08e0f2ad818691000000000000000000000000f8975801f90b749d04692ef51abc18e90220b7ea
Deployed Bytecode
0x608060405260043610610452575f3560e01c80636bc87c3a11610237578063ab6106321161013c578063d12a7688116100b7578063ebf7866311610087578063eed7eb8d1161006d578063eed7eb8d14610d1f578063f0f165af14610d33578063f2fde38b14610d52575f80fd5b8063ebf7866314610cd2578063ed21553214610cf1575f80fd5b8063d12a768814610c1c578063d5bde46c14610c31578063dd62ed3e14610c62578063ea2f0b3714610cb3575f80fd5b8063c1570e741161010c578063c8607952116100f2578063c860795214610bc9578063cea2695814610bde578063d0e0352314610bfd575f80fd5b8063c1570e7414610b8b578063c49b9a8014610baa575f80fd5b8063ab61063214610b15578063b9ebdf0e14610b43578063c0ac57eb14610b62578063c0b0fda214610b76575f80fd5b806388f82020116101cc5780639655cab51161019c578063a457c2d711610182578063a457c2d714610ab8578063a9059cbb14610ad7578063a928681c14610af6575f80fd5b80639655cab514610a845780639ff7795114610aa3575f80fd5b806388f82020146109e45780638da5cb5b14610a285780638ee88c5314610a5157806395d89b4114610a70575f80fd5b80637869830a116102075780637869830a1461096f5780637abdc1ca1461098e5780638656e3ad146109a357806388790a68146109cf575f80fd5b80636bc87c3a146108fb57806370a0823114610910578063715018a61461092f57806375f0a87414610943575f80fd5b80633bd5d173116103575780635342acb4116102d25780635d098b38116102a257806364a06e801161028857806364a06e80146108af578063686aaa0c146108c45780636bc79717146108dd575f80fd5b80635d098b38146108625780636332a99b14610881575f80fd5b80635342acb4146107c757806353e7c2ac1461080b57806357d87f0d1461082a5780635876ccc514610843575f80fd5b806349bd5a5e116103275780634a74bb021161030d5780634a74bb02146107575780634e67c52d1461078957806352390c02146107a8575f80fd5b806349bd5a5e1461070c5780634a5566bf14610738575f80fd5b80633bd5d17314610690578063437823ec146106af5780634549b039146106ce578063457c194c146106ed575f80fd5b806322976e0d116103e757806335a9e4df116103b75780633685d4191161039d5780633685d4191461063d578063395093511461065c5780633b124fe71461067b575f80fd5b806335a9e4df146105fc5780633622eca514610628575f80fd5b806322976e0d1461058857806323b872dd1461059d5780632d838119146105bc578063313ce567146105db575f80fd5b806313114a9d1161042257806313114a9d146104fa5780631694505e1461050e57806318160ddd1461055f578063200a692d14610573575f80fd5b8063061c82d01461045d57806306fdde031461047e578063095ea7b3146104a85780630a7d2d87146104d7575f80fd5b3661045957005b5f80fd5b348015610468575f80fd5b5061047c610477366004614069565b610d71565b005b348015610489575f80fd5b50610492610e5b565b60405161049f9190614080565b60405180910390f35b3480156104b3575f80fd5b506104c76104c23660046140f4565b610eeb565b604051901515815260200161049f565b3480156104e2575f80fd5b506104ec601a5481565b60405190815260200161049f565b348015610505575f80fd5b506009546104ec565b348015610519575f80fd5b50601c5461053a9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161049f565b34801561056a575f80fd5b506007546104ec565b34801561057e575f80fd5b506104ec60165481565b348015610593575f80fd5b506104ec60135481565b3480156105a8575f80fd5b506104c76105b736600461411e565b610f01565b3480156105c7575f80fd5b506104ec6105d6366004614069565b610f75565b3480156105e6575f80fd5b50600c5460405160ff909116815260200161049f565b348015610607575f80fd5b50601e5461053a9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610633575f80fd5b506104ec60255481565b348015610648575f80fd5b5061047c61065736600461415c565b611024565b348015610667575f80fd5b506104c76106763660046140f4565b61126f565b348015610686575f80fd5b506104ec600d5481565b34801561069b575f80fd5b5061047c6106aa366004614069565b6112b1565b3480156106ba575f80fd5b5061047c6106c936600461415c565b6113dc565b3480156106d9575f80fd5b506104ec6106e836600461418b565b611432565b3480156106f8575f80fd5b5061047c610707366004614069565b6114d6565b348015610717575f80fd5b50601d5461053a9073ffffffffffffffffffffffffffffffffffffffff1681565b348015610743575f80fd5b5061047c6107523660046141b5565b6115e0565b348015610762575f80fd5b50601f546104c7907501000000000000000000000000000000000000000000900460ff1681565b348015610794575f80fd5b5061047c6107a3366004614216565b6116de565b3480156107b3575f80fd5b5061047c6107c236600461415c565b61180b565b3480156107d2575f80fd5b506104c76107e136600461415c565b73ffffffffffffffffffffffffffffffffffffffff165f9081526004602052604090205460ff1690565b348015610816575f80fd5b5061047c610825366004614216565b611a73565b348015610835575f80fd5b50601b546104c79060ff1681565b34801561084e575f80fd5b5061047c61085d366004614069565b611b99565b34801561086d575f80fd5b5061047c61087c36600461415c565b611ca4565b34801561088c575f80fd5b506104c761089b36600461415c565b60236020525f908152604090205460ff1681565b3480156108ba575f80fd5b506104ec6103e881565b3480156108cf575f80fd5b506022546104c79060ff1681565b3480156108e8575f80fd5b506024546104c790610100900460ff1681565b348015610906575f80fd5b506104ec600f5481565b34801561091b575f80fd5b506104ec61092a36600461415c565b611cf3565b34801561093a575f80fd5b5061047c611d76565b34801561094e575f80fd5b5060145461053a9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561097a575f80fd5b5061047c6109893660046141b5565b611d89565b348015610999575f80fd5b506104ec60195481565b3480156109ae575f80fd5b50601f5461053a9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156109da575f80fd5b506104ec60175481565b3480156109ef575f80fd5b506104c76109fe36600461415c565b73ffffffffffffffffffffffffffffffffffffffff165f9081526005602052604090205460ff1690565b348015610a33575f80fd5b505f5473ffffffffffffffffffffffffffffffffffffffff1661053a565b348015610a5c575f80fd5b5061047c610a6b366004614069565b611dc8565b348015610a7b575f80fd5b50610492611ed2565b348015610a8f575f80fd5b5061047c610a9e366004614069565b611ee1565b348015610aae575f80fd5b506104ec60215481565b348015610ac3575f80fd5b506104c7610ad23660046140f4565b612010565b348015610ae2575f80fd5b506104c7610af13660046140f4565b61206a565b348015610b01575f80fd5b5061047c610b10366004614069565b612076565b348015610b20575f80fd5b506104c7610b2f36600461415c565b60276020525f908152604090205460ff1681565b348015610b4e575f80fd5b5061047c610b5d366004614069565b612181565b348015610b6d575f80fd5b5061047c6121f7565b348015610b81575f80fd5b506104ec60115481565b348015610b96575f80fd5b5061047c610ba5366004614216565b61222b565b348015610bb5575f80fd5b5061047c610bc43660046141b5565b612351565b348015610bd4575f80fd5b506104ec60185481565b348015610be9575f80fd5b5061047c610bf8366004614069565b6123de565b348015610c08575f80fd5b5061047c610c17366004614069565b6124c3565b348015610c27575f80fd5b506104ec60205481565b348015610c3c575f80fd5b50601b5461053a90610100900473ffffffffffffffffffffffffffffffffffffffff1681565b348015610c6d575f80fd5b506104ec610c7c36600461427d565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260036020908152604080832093909416825291909152205490565b348015610cbe575f80fd5b5061047c610ccd36600461415c565b6125ce565b348015610cdd575f80fd5b5061047c610cec366004614069565b612621565b348015610cfc575f80fd5b506104c7610d0b36600461415c565b60266020525f908152604090205460ff1681565b348015610d2a575f80fd5b5061047c61272b565b348015610d3e575f80fd5b5061047c610d4d366004614069565b6127cd565b348015610d5d575f80fd5b5061047c610d6c36600461415c565b612843565b610d796128f7565b60225460ff1615610deb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b656400000000000060448201526064015b60405180910390fd5b6001811115610e56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f546178206665652063616e6e6f74206265206d6f7265207468616e20312500006044820152606401610de2565b600d55565b6060600a8054610e6a906142b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e96906142b4565b8015610ee15780601f10610eb857610100808354040283529160200191610ee1565b820191905f5260205f20905b815481529060010190602001808311610ec457829003601f168201915b5050505050905090565b5f610ef7338484612977565b5060015b92915050565b5f610f0d848484612b29565b610f6b8433610f668560405180606001604052806028815260200161450a6028913973ffffffffffffffffffffffffffffffffffffffff8a165f90815260036020908152604080832033845290915290205491906130f9565b612977565b5060019392505050565b5f600854821115611008576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e73000000000000000000000000000000000000000000006064820152608401610de2565b5f61101161313e565b905061101d838261315f565b9392505050565b61102c6128f7565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526005602052604090205460ff166110ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610de2565b5f5b60065481101561126b578173ffffffffffffffffffffffffffffffffffffffff16600682815481106110f0576110f0614305565b5f9182526020909120015473ffffffffffffffffffffffffffffffffffffffff160361126357600680546111269060019061435f565b8154811061113657611136614305565b5f918252602090912001546006805473ffffffffffffffffffffffffffffffffffffffff909216918390811061116e5761116e614305565b5f91825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918416815260028252604080822082905560059092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600680548061120857611208614372565b5f8281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190555050565b6001016110bc565b5050565b335f81815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610ef7918590610f66908661316a565b335f8181526005602052604090205460ff1615611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e00000000000000000000000000000000000000006064820152608401610de2565b5f61135a83613175565b5050505073ffffffffffffffffffffffffffffffffffffffff84165f90815260016020526040902054919250611392919050826131bd565b73ffffffffffffffffffffffffffffffffffffffff83165f908152600160205260409020556008546113c490826131bd565b6008556009546113d4908461316a565b600955505050565b6113e46128f7565b73ffffffffffffffffffffffffffffffffffffffff165f90815260046020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b5f60075483111561149f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610de2565b816114bd575f6114ae84613175565b50939550610efb945050505050565b5f6114c784613175565b50929550610efb945050505050565b6114de6128f7565b60225460ff161561154b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610de2565b60028111156115db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4d61726b6574696e67206665652063616e6e6f74206265206d6f72652074686160448201527f6e203225000000000000000000000000000000000000000000000000000000006064820152608401610de2565b601355565b5f5473ffffffffffffffffffffffffffffffffffffffff163314806116215750601b54610100900473ffffffffffffffffffffffffffffffffffffffff1633145b6116ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4f6e6c792061646d696e206f7220616e7469206d616e6167657220616c6c6f7760448201527f65640000000000000000000000000000000000000000000000000000000000006064820152608401610de2565b601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6116e66128f7565b82811461174f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6e2d6d61746368696e67206c656e677468000000000000000000000000006044820152606401610de2565b5f5b838110156118045782828281811061176b5761176b614305565b905060200201602081019061178091906141b5565b60265f87878581811061179557611795614305565b90506020020160208101906117aa919061415c565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040015f2080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055600101611751565b5050505050565b6118136128f7565b601c5473ffffffffffffffffffffffffffffffffffffffff908116908216036118be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f75746560448201527f722e0000000000000000000000000000000000000000000000000000000000006064820152608401610de2565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526005602052604090205460ff161561194d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610de2565b73ffffffffffffffffffffffffffffffffffffffff81165f90815260016020526040902054156119cb5773ffffffffffffffffffffffffffffffffffffffff81165f908152600160205260409020546119a590610f75565b73ffffffffffffffffffffffffffffffffffffffff82165f908152600260205260409020555b73ffffffffffffffffffffffffffffffffffffffff165f81815260056020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b611a7b6128f7565b828114611ae4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6e2d6d61746368696e67206c656e677468000000000000000000000000006044820152606401610de2565b5f5b8381101561180457828282818110611b0057611b00614305565b9050602002016020810190611b1591906141b5565b60235f878785818110611b2a57611b2a614305565b9050602002016020810190611b3f919061415c565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040015f2080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055600101611ae6565b611ba16128f7565b60225460ff1615611c0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610de2565b6002811115611c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f53656c6c206c6971756964697479206665652063616e6e6f74206265206d6f7260448201527f65207468616e20322500000000000000000000000000000000000000000000006064820152608401610de2565b601755565b611cac6128f7565b601480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526005602052604081205460ff1615611d48575073ffffffffffffffffffffffffffffffffffffffff165f9081526002602052604090205490565b73ffffffffffffffffffffffffffffffffffffffff82165f90815260016020526040902054610efb90610f75565b611d7e6128f7565b611d875f6131c8565b565b611d916128f7565b60248054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b611dd06128f7565b60225460ff1615611e3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610de2565b6001811115611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4c6971756964697479206665652063616e6e6f74206265206d6f72652074686160448201527f6e203125000000000000000000000000000000000000000000000000000000006064820152608401610de2565b600f55565b6060600b8054610e6a906142b4565b611ee96128f7565b6001811015611f7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4d617820686f6c64696e672070657263656e74732063616e6e6f74206265206c60448201527f657373207468616e20302e3125000000000000000000000000000000000000006064820152608401610de2565b601e81111561200b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4d617820686f6c64696e672070657263656e74732063616e6e6f74206265206d60448201527f6f7265207468616e2033250000000000000000000000000000000000000000006064820152608401610de2565b601a55565b5f610ef73384610f668560405180606001604052806025815260200161453260259139335f90815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d16845290915290205491906130f9565b5f610ef7338484612b29565b61207e6128f7565b60225460ff16156120eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610de2565b600481111561217c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f53656c6c206d61726b6574696e67206665652063616e6e6f74206265206d6f7260448201527f65207468616e20342500000000000000000000000000000000000000000000006064820152608401610de2565b601855565b6121896128f7565b5f81116121f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f43616e6e6f7420736574207a65726f00000000000000000000000000000000006044820152606401610de2565b602155565b6121ff6128f7565b60405133904780156108fc02915f818181858888f19350505050158015612228573d5f803e3d5ffd5b50565b6122336128f7565b82811461229c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f6e2d6d61746368696e67206c656e677468000000000000000000000000006044820152606401610de2565b5f5b83811015611804578282828181106122b8576122b8614305565b90506020020160208101906122cd91906141b5565b60275f8787858181106122e2576122e2614305565b90506020020160208101906122f7919061415c565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040015f2080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905560010161229e565b6123596128f7565b601f80548215157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff9091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906123d390831515815260200190565b60405180910390a150565b6123e66128f7565b60225460ff1615612453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610de2565b60018111156124be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4275726e206665652063616e6e6f74206265206d6f7265207468616e203125006044820152606401610de2565b601155565b6124cb6128f7565b60225460ff1615612538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610de2565b60028111156125c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f53656c6c20746178206665652063616e6e6f74206265206d6f7265207468616e60448201527f20322500000000000000000000000000000000000000000000000000000000006064820152608401610de2565b601655565b6125d66128f7565b73ffffffffffffffffffffffffffffffffffffffff165f90815260046020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b6126296128f7565b60225460ff1615612696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610de2565b6002811115612726576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f53656c6c206275726e206665652063616e6e6f74206265206d6f72652074686160448201527f6e203225000000000000000000000000000000000000000000000000000000006064820152608401610de2565b601955565b6127336128f7565b60225460ff16156127a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4665652070657263656e746167657320617265206c6f636b65640000000000006044820152606401610de2565b602280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6127d56128f7565b5f811161283e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f43616e6e6f7420736574207a65726f00000000000000000000000000000000006044820152606401610de2565b602055565b61284b6128f7565b73ffffffffffffffffffffffffffffffffffffffff81166128ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610de2565b612228816131c8565b5f5473ffffffffffffffffffffffffffffffffffffffff163314611d87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610de2565b73ffffffffffffffffffffffffffffffffffffffff8316612a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610de2565b73ffffffffffffffffffffffffffffffffffffffff8216612abc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610de2565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316612bcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610de2565b5f8111612c5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610de2565b60245460ff16158015612c885750601d5473ffffffffffffffffffffffffffffffffffffffff8381169116145b15612cbd57602480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055612e6b565b60245460ff168015612cd157506058602554105b8015612ce45750602454610100900460ff165b8015612d2e5750601d5473ffffffffffffffffffffffffffffffffffffffff84811691161480612d2e5750601e5473ffffffffffffffffffffffffffffffffffffffff8481169116145b15612e6b576013602554118015612d69575073ffffffffffffffffffffffffffffffffffffffff82165f9081526027602052604090205460ff165b80612da557506014602554108015612da5575073ffffffffffffffffffffffffffffffffffffffff82165f9081526026602052604090205460ff165b612e0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4e6f7420696e2077686974656c697374000000000000000000000000000000006044820152606401610de2565b601e5473ffffffffffffffffffffffffffffffffffffffff838116911614801590612e515750601f5473ffffffffffffffffffffffffffffffffffffffff838116911614155b15612e6b5760258054905f612e658361439f565b91905055505b5f612e7530611cf3565b90505f602154602054612e8891906143d6565b8210159050808015612eb55750601f5474010000000000000000000000000000000000000000900460ff16155b8015612edc5750601d5473ffffffffffffffffffffffffffffffffffffffff868116911614155b8015612f025750601d5473ffffffffffffffffffffffffffffffffffffffff8581169116145b8015612f295750601f547501000000000000000000000000000000000000000000900460ff165b15612f3c57612f3c60205460215461323c565b612f47858585613375565b601b5460ff1615611804575f6103e8601a54600754612f6691906143e9565b612f709190614400565b601d5490915073ffffffffffffffffffffffffffffffffffffffff9081169086160361302b5780841115613026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5472616e73616374656420616d6f756e742065786365656420746865206d617860448201527f20616c6c6f7765642076616c75650000000000000000000000000000000000006064820152608401610de2565b6130f1565b8061303586611cf3565b111580613066575073ffffffffffffffffffffffffffffffffffffffff85165f9081526023602052604090205460ff165b6130f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f57616c6c65742062616c616e6365206578636565647320746865206d6178206c60448201527f696d6974000000000000000000000000000000000000000000000000000000006064820152608401610de2565b505050505050565b5f8184841115613136576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de29190614080565b505050900390565b5f805f61314961373c565b9092509050613158828261315f565b9250505090565b5f61101d8284614400565b5f61101d82846143d6565b5f805f805f805f805f6131878a6138df565b9250925092505f805f6131a38d868661319e61313e565b613917565b919f909e50909c50959a5093985091965092945050505050565b5f61101d828461435f565b5f805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000017905561328481613963565b60145460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02915f818181858888f193505050501580156132c7573d5f803e3d5ffd5b505f6132d483600261315f565b90505f6132e184836131bd565b9050476132ed83613963565b5f6132f847836131bd565b90506133048382613b04565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050601f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16905550505050565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526004602052604090205460ff16806133cc575073ffffffffffffffffffffffffffffffffffffffff82165f9081526004602052604090205460ff165b156133de576133d9613c1a565b613439565b601d5473ffffffffffffffffffffffffffffffffffffffff9081169083160361343957613439600d8054600e55600f805460105560118054601255601380546015556016549093556017549091556018549091556019549055565b5f61345a606461345460115485613c7590919063ffffffff16565b9061315f565b90505f613477606461345460135486613c7590919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff86165f9081526005602052604090205490915060ff1680156134d3575073ffffffffffffffffffffffffffffffffffffffff84165f9081526005602052604090205460ff16155b156134fb576134f685856134f1846134eb88886131bd565b906131bd565b613c80565b613670565b73ffffffffffffffffffffffffffffffffffffffff85165f9081526005602052604090205460ff16158015613554575073ffffffffffffffffffffffffffffffffffffffff84165f9081526005602052604090205460ff165b15613571576134f6858561356c846134eb88886131bd565b613ded565b73ffffffffffffffffffffffffffffffffffffffff85165f9081526005602052604090205460ff161580156135cb575073ffffffffffffffffffffffffffffffffffffffff84165f9081526005602052604090205460ff16155b156135e8576134f685856135e3846134eb88886131bd565b613eb7565b73ffffffffffffffffffffffffffffffffffffffff85165f9081526005602052604090205460ff168015613640575073ffffffffffffffffffffffffffffffffffffffff84165f9081526005602052604090205460ff165b1561365d576134f68585613658846134eb88886131bd565b613f04565b61367085856135e3846134eb88886131bd565b5f600d819055600f81905561368790869084613eb7565b613692853083613eb7565b600e54600d55601054600f5573ffffffffffffffffffffffffffffffffffffffff85165f9081526004602052604090205460ff16806136f5575073ffffffffffffffffffffffffffffffffffffffff84165f9081526004602052604090205460ff165b8061371a5750601d5473ffffffffffffffffffffffffffffffffffffffff8581169116145b1561180457611804600e54600d55601054600f55601254601155601554601355565b6008546007545f918291825b6006548110156138af578260015f6006848154811061376957613769614305565b5f91825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205411806137eb57508160025f600684815481106137b8576137b8614305565b5f91825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b1561380157600854600754945094505050509091565b61385260015f6006848154811061381a5761381a614305565b5f91825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205484906131bd565b92506138a560025f6006848154811061386d5761386d614305565b5f91825260208083209091015473ffffffffffffffffffffffffffffffffffffffff16835282019290925260400190205483906131bd565b9150600101613748565b506007546008546138bf9161315f565b8210156138d6576008546007549350935050509091565b90939092509050565b5f805f806138ec85613f8c565b90505f6138f886613fa7565b90505f613909826134eb89866131bd565b979296509094509092505050565b5f8080806139258886613c75565b90505f6139328887613c75565b90505f61393f8888613c75565b90505f613950826134eb86866131bd565b939b939a50919850919650505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061399657613996614305565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601c54604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015613a13573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a379190614438565b81600181518110613a4a57613a4a614305565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152601c54613a7d9130911684612977565b601c546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac94790613adb9085905f90869030904290600401614453565b5f604051808303815f87803b158015613af2575f80fd5b505af11580156130f1573d5f803e3d5ffd5b601c54613b2990309073ffffffffffffffffffffffffffffffffffffffff1684612977565b601c5473ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80613b6a5f5473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015613bf5573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061180491906144de565b600d54158015613c2a5750600f54155b8015613c365750601354155b8015613c425750601154155b15613c4957565b600d8054600e55600f805460105560118054601255601380546015555f93849055918390559082905555565b5f61101d82846143e9565b5f805f805f80613c8f87613175565b73ffffffffffffffffffffffffffffffffffffffff8f165f90815260026020526040902054959b50939950919750955093509150613ccd90886131bd565b73ffffffffffffffffffffffffffffffffffffffff8a165f90815260026020908152604080832093909355600190522054613d0890876131bd565b73ffffffffffffffffffffffffffffffffffffffff808b165f9081526001602052604080822093909355908a1681522054613d43908661316a565b73ffffffffffffffffffffffffffffffffffffffff89165f90815260016020526040902055613d7181613fc2565b613d7b8483614045565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613dda91815260200190565b60405180910390a3505050505050505050565b5f805f805f80613dfc87613175565b73ffffffffffffffffffffffffffffffffffffffff8f165f90815260016020526040902054959b50939950919750955093509150613e3a90876131bd565b73ffffffffffffffffffffffffffffffffffffffff808b165f90815260016020908152604080832094909455918b16815260029091522054613e7c908461316a565b73ffffffffffffffffffffffffffffffffffffffff89165f90815260026020908152604080832093909355600190522054613d43908661316a565b5f805f805f80613ec687613175565b73ffffffffffffffffffffffffffffffffffffffff8f165f90815260016020526040902054959b50939950919750955093509150613d0890876131bd565b5f805f805f80613f1387613175565b73ffffffffffffffffffffffffffffffffffffffff8f165f90815260026020526040902054959b50939950919750955093509150613f5190886131bd565b73ffffffffffffffffffffffffffffffffffffffff8a165f90815260026020908152604080832093909355600190522054613e3a90876131bd565b5f610efb6064613454600d5485613c7590919063ffffffff16565b5f610efb6064613454600f5485613c7590919063ffffffff16565b5f613fcb61313e565b90505f613fd88383613c75565b305f90815260016020526040902054909150613ff4908261316a565b305f9081526001602090815260408083209390935560059052205460ff161561404057305f90815260026020526040902054614030908461316a565b305f908152600260205260409020555b505050565b60085461405290836131bd565b600855600954614062908261316a565b6009555050565b5f60208284031215614079575f80fd5b5035919050565b602081525f82518060208401528060208501604085015e5f6040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114612228575f80fd5b5f8060408385031215614105575f80fd5b8235614110816140d3565b946020939093013593505050565b5f805f60608486031215614130575f80fd5b833561413b816140d3565b9250602084013561414b816140d3565b929592945050506040919091013590565b5f6020828403121561416c575f80fd5b813561101d816140d3565b80358015158114614186575f80fd5b919050565b5f806040838503121561419c575f80fd5b823591506141ac60208401614177565b90509250929050565b5f602082840312156141c5575f80fd5b61101d82614177565b5f8083601f8401126141de575f80fd5b50813567ffffffffffffffff8111156141f5575f80fd5b6020830191508360208260051b850101111561420f575f80fd5b9250929050565b5f805f8060408587031215614229575f80fd5b843567ffffffffffffffff80821115614240575f80fd5b61424c888389016141ce565b90965094506020870135915080821115614264575f80fd5b50614271878288016141ce565b95989497509550505050565b5f806040838503121561428e575f80fd5b8235614299816140d3565b915060208301356142a9816140d3565b809150509250929050565b600181811c908216806142c857607f821691505b6020821081036142ff577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b81810381811115610efb57610efb614332565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036143cf576143cf614332565b5060010190565b80820180821115610efb57610efb614332565b8082028115828204841417610efb57610efb614332565b5f82614433577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b5f60208284031215614448575f80fd5b815161101d816140d3565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156144b057845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161447e565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b5f805f606084860312156144f0575f80fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208432d185e55b7598e652641a2ff8a105a87ec8af76331a6f88d7f4d0c0f3594d64736f6c63430008190033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad000000000000000000000000000000fee13a103a10d593b9ae06b3e05f2e7e1c000000000000000000000000365015e58ecb1c65a833da79c44dde10c298b745000000000000000000000000aabe29be63c0c90d3fddc450ca34f94229b62b73000000000000000000000000461e50b07ece7c2762011af91664fa0c3c1a5244000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000054000000000000000000000000000000000000000000000000000000000000000040000000000000000000000006b3e8954cc4935bbc289a1fe70d951d84b5e574a000000000000000000000000aef2cd818f9db4ada970c69621c815a21601ad4b0000000000000000000000007b3eae75d01bc26d706c07f7f871a4642cdbf05c0000000000000000000000007507aa43606861acfce4267b7904cd62eeced222000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000015000000000000000000000000e37d314da721e9fc0201843e110d94ddadc608c40000000000000000000000001a4a49eaa66b6a175b50af700a5b260664f48a8c0000000000000000000000001ec722e11660640cbadd94c697bf6eb1ed13fd560000000000000000000000007be4e09c12c17f5c9547b95c0914c1e866d5faee000000000000000000000000c4fb58be664e5b818d3315c709c651571fcf6600000000000000000000000000fdfff4d6b0def8f4b558d858470b64104b4c3889000000000000000000000000af24b531a74a6c6c91949f4c8b62c779c13d4f11000000000000000000000000d1512acab99e370fd12a826b277a1e8eafca615c00000000000000000000000090a484ee631aa0ab5bcfe62ed08df3678ed78c58000000000000000000000000179abac17df658e767b1183cf40ed68f1a66d74f00000000000000000000000057631eff7a085a5a5e97899e559fb40c5f82a1370000000000000000000000009e7c7fdbfa51968ab4c6b494783cdf049cb0287e00000000000000000000000080ed7684f4da8238bd32182516c7c8640b11facb000000000000000000000000b1ef9406eae928921bb4b221a62ff35f74f55501000000000000000000000000f620ac0e362fb9ffd85eb7cb260f40540fc6e579000000000000000000000000f78b228a5bc44d2c52a54a0186d09122bd768c71000000000000000000000000699840cc7b90d8399df98c1b899e97e0b3053c9f000000000000000000000000605f83692692e9651bb83f6c910198b73728e88900000000000000000000000034d97987ca9557de75a052e5adea55ca18114e800000000000000000000000006ac171dec0dc370fe75feab90598df23283f564200000000000000000000000078864d210bda3cf7455c9c4dac15089ff7a8926000000000000000000000000000000000000000000000000000000000000000440000000000000000000000006ae72f5e5c7f06e32e97c1b33a57233164cce71a0000000000000000000000006dfac3e96569a33763ea498e181fc37259f1d31e000000000000000000000000d0c7d887e0946a4bc77dfe2cec77b4bfebbedcb50000000000000000000000009660c254c60b9cae8baa1b273a448253528f0c3c000000000000000000000000b4f252a9448dca4b2ef175452851db80ed94761a000000000000000000000000b56345bfeefbd21514a7004cb360bb9613ea9d6c000000000000000000000000cb52f988cd541388cb958c70b4ea82db739b4b79000000000000000000000000d052901232f4d462776a23baf8504c4756d33e0c0000000000000000000000009b47c4221d73dd4e5f73478513390fbffc88acf600000000000000000000000089f6d08f3570e2c21ed3e2fe30f73ae36717df02000000000000000000000000e19dd3b5684f1de229c01e3fdd5498d94a364c9b0000000000000000000000003d8c667ee06fabbf662517a98505d309f46b2caf0000000000000000000000005650aeda18d73e843ed5ca671728f570ba3a753a0000000000000000000000001609cb65575b3ba6f038647745cac79fc54c10540000000000000000000000002d1b419f386b0b1af11724524f8cdab72cd69af100000000000000000000000015f165f131cc35d053ba18dadd4667ab885c1d530000000000000000000000004e25d23a22fef9714e0f1bafeec12c01c898285d000000000000000000000000e40e1381201f6d92636d824367938288845db56700000000000000000000000030a9ed02701d41bc9ea06a75ca129cccce4b80a000000000000000000000000031fc405ef70d529621e7b3c089ab4e48adce6a94000000000000000000000000797b91144d94a731462acb7413abd5922d801404000000000000000000000000e1d3f19d3388612bfcc2899d6ab6a778a4dc2eab000000000000000000000000f54c0fca8f67db9591206bb94fc91e29bebff3d80000000000000000000000005917c4b07471675238747f62f26069a8b33c2d1b00000000000000000000000011d4b5db0d9b5a1b3196cb4bddb4c4ac8430ae74000000000000000000000000a1e1e9cb3e8d5f54c30b2c40003b6b1fdbe228d5000000000000000000000000e672ec811ffbf958c111a204155f7e48dffbf112000000000000000000000000cdba63248a3f3d8197e9f5a69c21550e3b485bef000000000000000000000000ec6058f53fa1f578e72e7c547ed49794d2503f5d000000000000000000000000b801f2f9885695f2eb051c378304d608d546a51a000000000000000000000000b6af66356c7696e633dde6881ec244932fd48034000000000000000000000000327cdc20fe29013473cfa73ca9ecab7e8641e57500000000000000000000000017ba7724ae0b4cc4a23b93b838b8752ed31513bb000000000000000000000000ed71fdba2d7462c0bb5ac55af4a1166e113aaa09000000000000000000000000ddbd0d9fcd5e51210fbbaa64ad9d382a0e25f6a00000000000000000000000009fa2fabebd6c9f5aedf41de549159039e68a7fba0000000000000000000000002683c74e7ff796e65464de262868e936861b4d1900000000000000000000000056b19d2daa1046f6bb903ce7758a5231feceb1f9000000000000000000000000695af22904cb90ca212b7dc43533ea0bb839749d0000000000000000000000001fc26f5092992cc28eee43921f7217f7cb4aa0e6000000000000000000000000befed35972f386c081c83e598fc9f6b56e87a3320000000000000000000000000f282889c3a8d28eb1faa4c7e39d01f097f5ad8c000000000000000000000000eff1139d797f51287990b4132d759c0f5827af1d00000000000000000000000051bdf623d4ddb0a07060553b0424e823a09457af000000000000000000000000b9b95468acc6e22cc16e336a71db9e802b415425000000000000000000000000b450e15029b747f8736e359df530e616f26f25100000000000000000000000009b74dbf4cbbc189c7fb8570f8517b4d269eba333000000000000000000000000875404313af47d477b3a9432b3b7854eb88569fc00000000000000000000000025ef7e947c20ad551435faeb16fda36307d2fac900000000000000000000000084aa87de7704d5a600b9ac063a3e27eb531cc3fb000000000000000000000000de0d8ba7806870b68e7eb98a12d32cffdd8c4f9f00000000000000000000000070b4e8de9396a1a85d7f00f0898ff08191558eda000000000000000000000000c215cf49653cd1ec85e338e6b476be67a9ad2bb0000000000000000000000000fc805a533f0f75c052055ea1a18e9a69c3cb092500000000000000000000000013ee12bcb6a44724842b1f224c158ed2b00abd1100000000000000000000000023e2a6ed69ff8a9881a814cc1ed3ab6bc00c364a00000000000000000000000090bf57ec077c63e177962da4bf2cc91c0e1e13080000000000000000000000000e667793763e10a222814a463b72075fa39ef88b000000000000000000000000e65c3c5554635edb54d312e3cd31608bbc413f5c0000000000000000000000001b260e7f689235d9795f2feaf33046536dcea45d00000000000000000000000027b4f18996cfe912b5e310629565889c08a265b700000000000000000000000028dfc068daff04ecc757c43d7e79d145dfa304770000000000000000000000009c1e8e679ba2cd13a40fa82ba6380ee45e2347d30000000000000000000000007262fae62d5e3846a40015a3063ae80a95188884000000000000000000000000fa16a931a89959cec4950a8d9ceb57e856d826ee00000000000000000000000088804add56f7b66921ad61e2e4222028d9c9f4a1000000000000000000000000124f487cc5d9aae54c446d7aac08e0f2ad818691000000000000000000000000f8975801f90b749d04692ef51abc18e90220b7ea
-----Decoded View---------------
Arg [0] : _uniswapV2Router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _universalRouter (address): 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD
Arg [2] : _universalRouterFeeAddress (address): 0x000000fee13a103A10D593b9AE06b3e05F2E7E1c
Arg [3] : _owner (address): 0x365015E58Ecb1C65A833dA79c44DDE10C298B745
Arg [4] : _marketingWallet (address): 0xAabE29BE63c0c90d3FddC450cA34F94229b62b73
Arg [5] : _antiManager (address): 0x461E50B07eCe7c2762011AF91664fA0c3C1a5244
Arg [6] : _emissionAddresses (address[]): 0x6b3e8954cc4935bBc289A1fe70d951d84b5E574a,0xAEF2cD818F9dB4ADA970C69621c815A21601Ad4b,0x7B3EAe75d01bC26D706C07F7f871A4642CdBF05c,0x7507aA43606861ACfCE4267b7904cd62EeCEd222
Arg [7] : _emissionPercentages (uint256[]): 1,2,3,2
Arg [8] : _firstWhitelist (address[]): 0xE37D314da721e9fC0201843e110d94DdADC608c4,0x1a4A49EAa66B6A175b50af700A5b260664F48A8C,0x1Ec722e11660640CbaDD94c697BF6eB1eD13fD56,0x7BE4e09c12c17F5C9547b95C0914c1E866D5fAeE,0xc4FB58bE664e5b818d3315C709C651571fcf6600,0xFdfff4D6b0dEF8F4B558D858470b64104b4c3889,0xAf24b531A74A6C6C91949f4C8B62c779c13D4F11,0xd1512ACaB99e370fd12A826b277A1e8Eafca615c,0x90a484ee631aA0Ab5Bcfe62eD08df3678ed78c58,0x179aBac17df658E767B1183Cf40Ed68F1A66D74F,0x57631EFF7A085A5A5E97899E559fb40c5F82A137,0x9e7c7FDBfA51968Ab4C6b494783cdf049CB0287e,0x80eD7684f4da8238Bd32182516C7c8640B11FaCB,0xB1eF9406eae928921bb4b221a62FF35F74F55501,0xF620aC0e362fb9fFD85EB7CB260f40540fC6E579,0xF78b228a5bC44D2c52A54A0186d09122bd768c71,0x699840Cc7b90d8399DF98c1B899e97e0b3053c9F,0x605f83692692E9651bb83f6c910198B73728E889,0x34D97987cA9557de75a052E5adea55ca18114e80,0x6aC171dEc0dc370fE75FeaB90598dF23283F5642,0x78864d210BDa3cF7455C9C4DAc15089fF7A89260
Arg [9] : _secondWhitelist (address[]): 0x6AE72F5e5C7F06E32E97c1B33A57233164CCE71a,0x6DfAc3E96569a33763ea498E181Fc37259F1D31e,0xd0C7d887E0946a4Bc77dFe2CeC77B4bfeBbedcB5,0x9660c254C60b9cae8bAa1b273a448253528F0C3C,0xB4F252a9448dcA4b2eF175452851DB80eD94761a,0xb56345BfeefBD21514a7004cb360bB9613EA9d6C,0xCB52f988cD541388CB958c70b4ea82dB739b4B79,0xd052901232f4D462776a23BAf8504c4756D33e0c,0x9B47C4221d73dd4e5f73478513390FBfFC88ACf6,0x89f6D08f3570E2c21Ed3e2fe30f73aE36717DF02,0xE19Dd3b5684f1DE229c01E3fDD5498D94A364c9b,0x3d8C667ee06FABBf662517A98505D309F46b2cAF,0x5650AedA18D73E843eD5CA671728F570BA3A753A,0x1609cb65575B3ba6F038647745cAc79FC54c1054,0x2d1B419F386b0B1aF11724524F8CdAB72cd69Af1,0x15f165F131CC35D053Ba18dadD4667Ab885c1D53,0x4E25d23A22feF9714E0f1bAfeEc12c01c898285d,0xe40E1381201F6D92636D824367938288845DB567,0x30a9eD02701d41bc9eA06a75ca129cCcce4b80a0,0x31Fc405eF70d529621E7b3C089ab4E48AdCE6A94,0x797b91144D94a731462AcB7413abD5922d801404,0xE1d3f19d3388612bfcc2899d6AB6a778a4DC2Eab,0xf54c0fCa8f67db9591206bB94fc91E29BeBff3d8,0x5917c4b07471675238747F62f26069a8b33c2d1B,0x11d4b5db0d9b5A1B3196cB4BDDb4C4ac8430ae74,0xA1E1e9cb3E8D5F54C30B2c40003B6B1fDBE228D5,0xE672eC811ffbf958c111A204155f7e48dFfBf112,0xCDBA63248a3f3D8197e9f5A69C21550e3B485bEF,0xec6058F53Fa1F578e72E7C547Ed49794D2503f5d,0xb801f2f9885695f2EB051C378304d608d546A51A,0xB6Af66356c7696e633Dde6881Ec244932FD48034,0x327cDC20fE29013473cFa73Ca9eCab7E8641e575,0x17BA7724ae0b4cc4a23B93B838b8752ed31513BB,0xeD71fDBa2D7462c0bB5aC55AF4a1166e113aaa09,0xDDbd0d9FCd5e51210FBbaA64Ad9D382a0e25F6A0,0x9fa2fABebd6c9F5AEDf41dE549159039e68A7FBa,0x2683c74E7fF796e65464DE262868e936861B4d19,0x56B19d2daA1046f6bb903cE7758A5231feCEb1F9,0x695AF22904CB90CA212B7dc43533Ea0Bb839749d,0x1Fc26F5092992CC28eEe43921f7217f7CB4aA0E6,0xBEFED35972F386C081C83e598fC9f6B56e87a332,0x0F282889c3a8d28eb1FAA4C7E39d01F097F5Ad8C,0xEFF1139D797f51287990B4132d759C0f5827AF1D,0x51BDf623d4ddB0a07060553b0424E823A09457aF,0xb9B95468acc6E22CC16e336a71DB9E802B415425,0xb450e15029b747f8736e359df530e616f26F2510,0x9b74DbF4CbBc189C7fb8570F8517b4D269ebA333,0x875404313aF47D477B3A9432B3B7854Eb88569Fc,0x25EF7e947c20AD551435faeb16fDA36307D2fac9,0x84Aa87de7704d5a600B9AC063A3E27Eb531CC3fB,0xde0D8Ba7806870B68e7Eb98A12D32cfFDd8C4f9F,0x70b4e8dE9396a1a85d7F00f0898Ff08191558EDa,0xC215cf49653Cd1Ec85E338e6B476BE67A9ad2bB0,0xFC805a533f0F75c052055Ea1A18E9A69c3CB0925,0x13EE12bcB6a44724842B1f224C158ED2b00ABd11,0x23E2A6Ed69ff8A9881A814cc1ED3AB6Bc00C364a,0x90bf57Ec077c63E177962dA4bF2cC91c0E1e1308,0x0e667793763E10a222814a463b72075fa39Ef88B,0xe65c3C5554635edb54D312e3cD31608BBC413F5C,0x1b260E7F689235D9795F2fEaf33046536dCeA45d,0x27B4F18996CFe912b5e310629565889C08a265b7,0x28dfc068Daff04ecC757C43d7e79D145dfA30477,0x9c1e8e679bA2CD13a40FA82ba6380EE45E2347d3,0x7262FAe62d5e3846A40015A3063ae80a95188884,0xfa16a931A89959CeC4950a8d9ceb57E856D826Ee,0x88804add56F7b66921Ad61e2e4222028d9c9f4A1,0x124F487Cc5D9aaE54C446D7aAC08E0f2ad818691,0xf8975801f90b749D04692ef51ABC18E90220b7eA
-----Encoded View---------------
111 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad
Arg [2] : 000000000000000000000000000000fee13a103a10d593b9ae06b3e05f2e7e1c
Arg [3] : 000000000000000000000000365015e58ecb1c65a833da79c44dde10c298b745
Arg [4] : 000000000000000000000000aabe29be63c0c90d3fddc450ca34f94229b62b73
Arg [5] : 000000000000000000000000461e50b07ece7c2762011af91664fa0c3c1a5244
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [7] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000280
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000540
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [11] : 0000000000000000000000006b3e8954cc4935bbc289a1fe70d951d84b5e574a
Arg [12] : 000000000000000000000000aef2cd818f9db4ada970c69621c815a21601ad4b
Arg [13] : 0000000000000000000000007b3eae75d01bc26d706c07f7f871a4642cdbf05c
Arg [14] : 0000000000000000000000007507aa43606861acfce4267b7904cd62eeced222
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [21] : 000000000000000000000000e37d314da721e9fc0201843e110d94ddadc608c4
Arg [22] : 0000000000000000000000001a4a49eaa66b6a175b50af700a5b260664f48a8c
Arg [23] : 0000000000000000000000001ec722e11660640cbadd94c697bf6eb1ed13fd56
Arg [24] : 0000000000000000000000007be4e09c12c17f5c9547b95c0914c1e866d5faee
Arg [25] : 000000000000000000000000c4fb58be664e5b818d3315c709c651571fcf6600
Arg [26] : 000000000000000000000000fdfff4d6b0def8f4b558d858470b64104b4c3889
Arg [27] : 000000000000000000000000af24b531a74a6c6c91949f4c8b62c779c13d4f11
Arg [28] : 000000000000000000000000d1512acab99e370fd12a826b277a1e8eafca615c
Arg [29] : 00000000000000000000000090a484ee631aa0ab5bcfe62ed08df3678ed78c58
Arg [30] : 000000000000000000000000179abac17df658e767b1183cf40ed68f1a66d74f
Arg [31] : 00000000000000000000000057631eff7a085a5a5e97899e559fb40c5f82a137
Arg [32] : 0000000000000000000000009e7c7fdbfa51968ab4c6b494783cdf049cb0287e
Arg [33] : 00000000000000000000000080ed7684f4da8238bd32182516c7c8640b11facb
Arg [34] : 000000000000000000000000b1ef9406eae928921bb4b221a62ff35f74f55501
Arg [35] : 000000000000000000000000f620ac0e362fb9ffd85eb7cb260f40540fc6e579
Arg [36] : 000000000000000000000000f78b228a5bc44d2c52a54a0186d09122bd768c71
Arg [37] : 000000000000000000000000699840cc7b90d8399df98c1b899e97e0b3053c9f
Arg [38] : 000000000000000000000000605f83692692e9651bb83f6c910198b73728e889
Arg [39] : 00000000000000000000000034d97987ca9557de75a052e5adea55ca18114e80
Arg [40] : 0000000000000000000000006ac171dec0dc370fe75feab90598df23283f5642
Arg [41] : 00000000000000000000000078864d210bda3cf7455c9c4dac15089ff7a89260
Arg [42] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [43] : 0000000000000000000000006ae72f5e5c7f06e32e97c1b33a57233164cce71a
Arg [44] : 0000000000000000000000006dfac3e96569a33763ea498e181fc37259f1d31e
Arg [45] : 000000000000000000000000d0c7d887e0946a4bc77dfe2cec77b4bfebbedcb5
Arg [46] : 0000000000000000000000009660c254c60b9cae8baa1b273a448253528f0c3c
Arg [47] : 000000000000000000000000b4f252a9448dca4b2ef175452851db80ed94761a
Arg [48] : 000000000000000000000000b56345bfeefbd21514a7004cb360bb9613ea9d6c
Arg [49] : 000000000000000000000000cb52f988cd541388cb958c70b4ea82db739b4b79
Arg [50] : 000000000000000000000000d052901232f4d462776a23baf8504c4756d33e0c
Arg [51] : 0000000000000000000000009b47c4221d73dd4e5f73478513390fbffc88acf6
Arg [52] : 00000000000000000000000089f6d08f3570e2c21ed3e2fe30f73ae36717df02
Arg [53] : 000000000000000000000000e19dd3b5684f1de229c01e3fdd5498d94a364c9b
Arg [54] : 0000000000000000000000003d8c667ee06fabbf662517a98505d309f46b2caf
Arg [55] : 0000000000000000000000005650aeda18d73e843ed5ca671728f570ba3a753a
Arg [56] : 0000000000000000000000001609cb65575b3ba6f038647745cac79fc54c1054
Arg [57] : 0000000000000000000000002d1b419f386b0b1af11724524f8cdab72cd69af1
Arg [58] : 00000000000000000000000015f165f131cc35d053ba18dadd4667ab885c1d53
Arg [59] : 0000000000000000000000004e25d23a22fef9714e0f1bafeec12c01c898285d
Arg [60] : 000000000000000000000000e40e1381201f6d92636d824367938288845db567
Arg [61] : 00000000000000000000000030a9ed02701d41bc9ea06a75ca129cccce4b80a0
Arg [62] : 00000000000000000000000031fc405ef70d529621e7b3c089ab4e48adce6a94
Arg [63] : 000000000000000000000000797b91144d94a731462acb7413abd5922d801404
Arg [64] : 000000000000000000000000e1d3f19d3388612bfcc2899d6ab6a778a4dc2eab
Arg [65] : 000000000000000000000000f54c0fca8f67db9591206bb94fc91e29bebff3d8
Arg [66] : 0000000000000000000000005917c4b07471675238747f62f26069a8b33c2d1b
Arg [67] : 00000000000000000000000011d4b5db0d9b5a1b3196cb4bddb4c4ac8430ae74
Arg [68] : 000000000000000000000000a1e1e9cb3e8d5f54c30b2c40003b6b1fdbe228d5
Arg [69] : 000000000000000000000000e672ec811ffbf958c111a204155f7e48dffbf112
Arg [70] : 000000000000000000000000cdba63248a3f3d8197e9f5a69c21550e3b485bef
Arg [71] : 000000000000000000000000ec6058f53fa1f578e72e7c547ed49794d2503f5d
Arg [72] : 000000000000000000000000b801f2f9885695f2eb051c378304d608d546a51a
Arg [73] : 000000000000000000000000b6af66356c7696e633dde6881ec244932fd48034
Arg [74] : 000000000000000000000000327cdc20fe29013473cfa73ca9ecab7e8641e575
Arg [75] : 00000000000000000000000017ba7724ae0b4cc4a23b93b838b8752ed31513bb
Arg [76] : 000000000000000000000000ed71fdba2d7462c0bb5ac55af4a1166e113aaa09
Arg [77] : 000000000000000000000000ddbd0d9fcd5e51210fbbaa64ad9d382a0e25f6a0
Arg [78] : 0000000000000000000000009fa2fabebd6c9f5aedf41de549159039e68a7fba
Arg [79] : 0000000000000000000000002683c74e7ff796e65464de262868e936861b4d19
Arg [80] : 00000000000000000000000056b19d2daa1046f6bb903ce7758a5231feceb1f9
Arg [81] : 000000000000000000000000695af22904cb90ca212b7dc43533ea0bb839749d
Arg [82] : 0000000000000000000000001fc26f5092992cc28eee43921f7217f7cb4aa0e6
Arg [83] : 000000000000000000000000befed35972f386c081c83e598fc9f6b56e87a332
Arg [84] : 0000000000000000000000000f282889c3a8d28eb1faa4c7e39d01f097f5ad8c
Arg [85] : 000000000000000000000000eff1139d797f51287990b4132d759c0f5827af1d
Arg [86] : 00000000000000000000000051bdf623d4ddb0a07060553b0424e823a09457af
Arg [87] : 000000000000000000000000b9b95468acc6e22cc16e336a71db9e802b415425
Arg [88] : 000000000000000000000000b450e15029b747f8736e359df530e616f26f2510
Arg [89] : 0000000000000000000000009b74dbf4cbbc189c7fb8570f8517b4d269eba333
Arg [90] : 000000000000000000000000875404313af47d477b3a9432b3b7854eb88569fc
Arg [91] : 00000000000000000000000025ef7e947c20ad551435faeb16fda36307d2fac9
Arg [92] : 00000000000000000000000084aa87de7704d5a600b9ac063a3e27eb531cc3fb
Arg [93] : 000000000000000000000000de0d8ba7806870b68e7eb98a12d32cffdd8c4f9f
Arg [94] : 00000000000000000000000070b4e8de9396a1a85d7f00f0898ff08191558eda
Arg [95] : 000000000000000000000000c215cf49653cd1ec85e338e6b476be67a9ad2bb0
Arg [96] : 000000000000000000000000fc805a533f0f75c052055ea1a18e9a69c3cb0925
Arg [97] : 00000000000000000000000013ee12bcb6a44724842b1f224c158ed2b00abd11
Arg [98] : 00000000000000000000000023e2a6ed69ff8a9881a814cc1ed3ab6bc00c364a
Arg [99] : 00000000000000000000000090bf57ec077c63e177962da4bf2cc91c0e1e1308
Arg [100] : 0000000000000000000000000e667793763e10a222814a463b72075fa39ef88b
Arg [101] : 000000000000000000000000e65c3c5554635edb54d312e3cd31608bbc413f5c
Arg [102] : 0000000000000000000000001b260e7f689235d9795f2feaf33046536dcea45d
Arg [103] : 00000000000000000000000027b4f18996cfe912b5e310629565889c08a265b7
Arg [104] : 00000000000000000000000028dfc068daff04ecc757c43d7e79d145dfa30477
Arg [105] : 0000000000000000000000009c1e8e679ba2cd13a40fa82ba6380ee45e2347d3
Arg [106] : 0000000000000000000000007262fae62d5e3846a40015a3063ae80a95188884
Arg [107] : 000000000000000000000000fa16a931a89959cec4950a8d9ceb57e856d826ee
Arg [108] : 00000000000000000000000088804add56f7b66921ad61e2e4222028d9c9f4a1
Arg [109] : 000000000000000000000000124f487cc5d9aae54c446d7aac08e0f2ad818691
Arg [110] : 000000000000000000000000f8975801f90b749d04692ef51abc18e90220b7ea
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)