Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 21 from a total of 21 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 15637277 | 1275 days ago | IN | 0 ETH | 0.00048956 | ||||
| Remove Limits | 15637271 | 1275 days ago | IN | 0 ETH | 0.00026734 | ||||
| Approve | 15637263 | 1275 days ago | IN | 0 ETH | 0.0014059 | ||||
| Approve | 15637260 | 1275 days ago | IN | 0 ETH | 0.00081362 | ||||
| Approve | 15637258 | 1275 days ago | IN | 0 ETH | 0.00144709 | ||||
| Approve | 15637255 | 1275 days ago | IN | 0 ETH | 0.00049474 | ||||
| Approve | 15637255 | 1275 days ago | IN | 0 ETH | 0.00056561 | ||||
| Approve | 15637255 | 1275 days ago | IN | 0 ETH | 0.00056561 | ||||
| Approve | 15637255 | 1275 days ago | IN | 0 ETH | 0.00056561 | ||||
| Approve | 15637255 | 1275 days ago | IN | 0 ETH | 0.00056561 | ||||
| Approve | 15637255 | 1275 days ago | IN | 0 ETH | 0.00056561 | ||||
| Approve | 15637255 | 1275 days ago | IN | 0 ETH | 0.0006601 | ||||
| Approve | 15637255 | 1275 days ago | IN | 0 ETH | 0.00070869 | ||||
| Approve | 15637255 | 1275 days ago | IN | 0 ETH | 0.00070869 | ||||
| Approve | 15637255 | 1275 days ago | IN | 0 ETH | 0.00070869 | ||||
| Approve | 15637254 | 1275 days ago | IN | 0 ETH | 0.00044985 | ||||
| Approve | 15637254 | 1275 days ago | IN | 0 ETH | 0.00044985 | ||||
| Approve | 15637254 | 1275 days ago | IN | 0 ETH | 0.00044985 | ||||
| Approve | 15637254 | 1275 days ago | IN | 0 ETH | 0.00044985 | ||||
| Enable Trading | 15637254 | 1275 days ago | IN | 0 ETH | 0.00027628 | ||||
| Approve | 15636827 | 1275 days ago | IN | 0 ETH | 0.00048953 |
Latest 12 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 15637285 | 1275 days ago | 0.00496394 ETH | ||||
| Transfer | 15637285 | 1275 days ago | 0.00124098 ETH | ||||
| Transfer | 15637285 | 1275 days ago | 0.00124098 ETH | ||||
| Transfer | 15637285 | 1275 days ago | 0.00744591 ETH | ||||
| Transfer | 15637282 | 1275 days ago | 0.00592876 ETH | ||||
| Transfer | 15637282 | 1275 days ago | 0.00148219 ETH | ||||
| Transfer | 15637282 | 1275 days ago | 0.00148219 ETH | ||||
| Transfer | 15637282 | 1275 days ago | 0.00889314 ETH | ||||
| Transfer | 15637263 | 1275 days ago | 0.02584234 ETH | ||||
| Transfer | 15637263 | 1275 days ago | 0.00646058 ETH | ||||
| Transfer | 15637263 | 1275 days ago | 0.00646058 ETH | ||||
| Transfer | 15637263 | 1275 days ago | 0.03876351 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
DDex
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
pragma experimental ABIEncoderV2;
import {ERC20} from '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import {Ownable} from '@openzeppelin/contracts/access/Ownable.sol';
import {SafeMath} from '@openzeppelin/contracts/utils/math/SafeMath.sol';
import {IUniswapV2Router02} from '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';
import {IUniswapV2Factory} from '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import {IUniswapV2Pair} from '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
contract DDex is ERC20, Ownable {
using SafeMath for uint256;
IUniswapV2Router02 public immutable uniswapV2Router;
address public immutable uniswapV2Pair;
bool private isSwap;
address public marketingWallet;
address public devWallet;
address public buybackWallet;
uint256 public maxTransactionAmount;
uint256 public swapTokensAtAmount;
uint256 public maxWallet;
bool public limitsInEffect = true;
bool public tradingActive = false;
bool public swapEnabled = false;
bool public transferDelayEnabled = true;
uint256 public buyTotalFees;
uint256 public buyMarketingFee;
uint256 public buyBuybackFee;
uint256 public buyDevFee;
uint256 public sellTotalFees;
uint256 public sellMarketingFee;
uint256 public sellBuybackFee;
uint256 public sellDevFee;
uint256 public tokensForMarketing;
uint256 public tokensForBuyback;
uint256 public tokensForDev;
mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
// exlcude from fees and max transaction amount
mapping(address => bool) private _isExcludedFromFees;
mapping(address => bool) public _isExcludedMaxTransactionAmount;
// store addresses that a automatic market maker pairs. Any transfer *to* these addresses
// could be subject to a maximum transfer amount
mapping(address => bool) public automatedMarketMakerPairs;
event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
event ExcludeFromFees(address indexed account, bool isExcluded);
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
event devWalletUpdated(address indexed newWallet, address indexed oldWallet);
event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity);
constructor() ERC20('DDex', 'DD') {
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
excludeFromMaxTransaction(address(_uniswapV2Router), true);
uniswapV2Router = _uniswapV2Router;
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(
address(this),
_uniswapV2Router.WETH()
);
excludeFromMaxTransaction(address(uniswapV2Pair), true);
_setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
uint256 totalSupply = 1_000_000_000 * 1e18;
maxTransactionAmount = (totalSupply * 2) / 100; // 2% from total supply maxTransactionAmountTxn
maxWallet = (totalSupply * 2) / 100; // 2% from total supply maxWallet
swapTokensAtAmount = (totalSupply * 5) / 1000; // 0.5% swap wallet
buyMarketingFee = 4;
buyBuybackFee = 1;
buyDevFee = 1;
buyTotalFees = buyMarketingFee + buyBuybackFee + buyDevFee;
sellMarketingFee = 4;
sellBuybackFee = 1;
sellDevFee = 1;
sellTotalFees = sellMarketingFee + sellBuybackFee + sellDevFee;
marketingWallet = address(0x40aC23295cf4dDcA9FA41721E0415d0aA7A99123);
devWallet = address(owner());
buybackWallet = address(0xbc79426F306E8B4bd6d8269c9228dc38c4953Ee0);
// exclude from paying fees or having max transaction amount
excludeFromFees(owner(), true);
excludeFromFees(address(this), true);
excludeFromFees(address(0xdead), true);
excludeFromMaxTransaction(owner(), true);
excludeFromMaxTransaction(address(this), true);
excludeFromMaxTransaction(address(0xdead), true);
_mint(msg.sender, totalSupply);
}
receive() external payable {}
// once enabled, can never be turned off
function enableTrading() external onlyOwner {
tradingActive = true;
swapEnabled = true;
}
// remove limits after token is stable
function removeLimits() external onlyOwner returns (bool) {
limitsInEffect = false;
return true;
}
// disable Transfer delay - cannot be reenabled
function disableTransferDelay() external onlyOwner returns (bool) {
transferDelayEnabled = false;
return true;
}
// change the minimum amount of tokens to sell from fees
function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) {
require(newAmount >= (totalSupply() * 1) / 100000, 'Swap amount cannot be lower than 0.001% total supply.');
require(newAmount <= (totalSupply() * 5) / 1000, 'Swap amount cannot be higher than 0.5% total supply.');
swapTokensAtAmount = newAmount;
return true;
}
function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
require(newNum >= ((totalSupply() * 1) / 1000) / 1e18, 'Cannot set maxTransactionAmount lower than 0.1%');
maxTransactionAmount = newNum * (10**18);
}
function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
require(newNum >= ((totalSupply() * 5) / 1000) / 1e18, 'Cannot set maxWallet lower than 0.5%');
maxWallet = newNum * (10**18);
}
function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
_isExcludedMaxTransactionAmount[updAds] = isEx;
}
// only use to disable contract sales if absolutely necessary (emergency use only)
function updateSwapEnabled(bool enabled) external onlyOwner {
swapEnabled = enabled;
}
function updateBuyFees(
uint256 _marketingFee,
uint256 _buybackFee,
uint256 _devFee
) external onlyOwner {
buyMarketingFee = _marketingFee;
buyBuybackFee = _buybackFee;
buyDevFee = _devFee;
buyTotalFees = buyMarketingFee + buyBuybackFee + buyDevFee;
require(buyTotalFees <= 20, 'Must keep fees at 20% or less');
}
function updateSellFees(
uint256 _marketingFee,
uint256 _buybackFee,
uint256 _devFee
) external onlyOwner {
sellMarketingFee = _marketingFee;
sellBuybackFee = _buybackFee;
sellDevFee = _devFee;
sellTotalFees = sellMarketingFee + sellBuybackFee + sellDevFee;
require(sellTotalFees <= 25, 'Must keep fees at 25% or less');
}
function excludeFromFees(address account, bool excluded) public onlyOwner {
_isExcludedFromFees[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
require(pair != uniswapV2Pair, 'The pair cannot be removed from automatedMarketMakerPairs');
_setAutomatedMarketMakerPair(pair, value);
}
function _setAutomatedMarketMakerPair(address pair, bool value) private {
automatedMarketMakerPairs[pair] = value;
emit SetAutomatedMarketMakerPair(pair, value);
}
function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
marketingWallet = newMarketingWallet;
}
function updateDevWallet(address newWallet) external onlyOwner {
emit devWalletUpdated(newWallet, devWallet);
devWallet = newWallet;
}
function isExcludedFromFees(address account) public view returns (bool) {
return _isExcludedFromFees[account];
}
event BoughtEarly(address indexed sniper);
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;
}
validateLimitTransfer(from, to, amount);
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
if (
canSwap &&
swapEnabled &&
!isSwap &&
!automatedMarketMakerPairs[from] &&
!_isExcludedFromFees[from] &&
!_isExcludedFromFees[to]
) {
swapBack();
}
bool takeFee = true;
if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
takeFee = false;
}
uint256 fees = 0;
if (takeFee) {
// on sell
if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
fees = amount.mul(sellTotalFees).div(100);
tokensForBuyback += (fees * sellBuybackFee) / sellTotalFees;
tokensForDev += (fees * sellDevFee) / sellTotalFees;
tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
}
// on buy
else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
fees = amount.mul(buyTotalFees).div(100);
tokensForBuyback += (fees * buyBuybackFee) / buyTotalFees;
tokensForDev += (fees * buyDevFee) / buyTotalFees;
tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
}
if (fees > 0) {
super._transfer(from, address(this), fees);
}
amount -= fees;
}
super._transfer(from, to, amount);
}
function validateLimitTransfer(
address from,
address to,
uint256 amount
) private {
if (limitsInEffect) {
if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !isSwap) {
if (!tradingActive) {
require(_isExcludedFromFees[from] || _isExcludedFromFees[to], 'Trading is not active.');
}
// at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
if (transferDelayEnabled) {
if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)) {
require(
_holderLastTransferTimestamp[tx.origin] < block.number,
'_transfer:: Transfer Delay enabled. Only one purchase per block allowed.'
);
_holderLastTransferTimestamp[tx.origin] = block.number;
}
}
//when buy
if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
require(amount <= maxTransactionAmount, 'Buy transfer amount exceeds the maxTransactionAmount.');
require(amount + balanceOf(to) <= maxWallet, 'Max wallet exceeded');
}
//when sell
else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
require(amount <= maxTransactionAmount, 'Sell transfer amount exceeds the maxTransactionAmount.');
} else if (!_isExcludedMaxTransactionAmount[to]) {
require(amount + balanceOf(to) <= maxWallet, 'Max wallet exceeded');
}
}
}
}
function swapTokensForEth(uint256 tokenAmount) private {
// generate the uniswap pair path of token -> weth
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
_approve(address(this), address(uniswapV2Router), tokenAmount);
// make the swap
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of ETH
path,
address(this),
block.timestamp
);
}
function swapBack() private lockTheSwap {
uint256 contractBalance = balanceOf(address(this));
uint256 totalTokensToSwap = tokensForBuyback + tokensForMarketing + tokensForDev;
bool success;
if (contractBalance == 0 || totalTokensToSwap == 0) {
return;
}
if (contractBalance > swapTokensAtAmount * 20) {
contractBalance = swapTokensAtAmount * 20;
}
uint256 amountToSwapForETH = contractBalance;
uint256 initialETHBalance = address(this).balance;
swapTokensForEth(amountToSwapForETH);
uint256 ethBalance = address(this).balance.sub(initialETHBalance);
uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
uint256 ethForBuyback = ethBalance - ethForMarketing - ethForDev;
tokensForBuyback = 0;
tokensForMarketing = 0;
tokensForDev = 0;
(success, ) = address(devWallet).call{value: ethForDev}('');
(success, ) = address(buybackWallet).call{value: ethForBuyback}('');
(success, ) = address(marketingWallet).call{value: address(this).balance}('');
}
modifier lockTheSwap() {
isSwap = true;
_;
isSwap = false;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions 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);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
}
_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 Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}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.5.0;
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB) external view returns (address pair);
function allPairs(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(address tokenA, address tokenB) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}pragma solidity >=0.5.0;
interface IUniswapV2Pair {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint);
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
event Mint(address indexed sender, uint amount0, uint amount1);
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
event Swap(
address indexed sender,
uint amount0In,
uint amount1In,
uint amount0Out,
uint amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
function price0CumulativeLast() external view returns (uint);
function price1CumulativeLast() external view returns (uint);
function kLast() external view returns (uint);
function mint(address to) external returns (uint liquidity);
function burn(address to) external returns (uint amount0, uint amount1);
function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts 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);
}pragma solidity >=0.6.2;
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountA, uint amountB);
function removeLiquidityETHWithPermit(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapTokensForExactTokens(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBuybackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBuybackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBuyback","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_buybackFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_buybackFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c06040526001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506001600c60036101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600481526020017f44446578000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f44440000000000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000d3f565b5080600490816200010d919062000d3f565b5050506200013062000124620005f360201b60201c565b620005fb60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200015c816001620006c160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000202919062000e90565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000290919062000e90565b6040518363ffffffff1660e01b8152600401620002af92919062000ed3565b6020604051808303816000875af1158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f5919062000e90565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033d60a0516001620006c160201b60201c565b6200035260a05160016200072c60201b60201c565b60006b033b2e3c9fd0803ce80000009050606460028262000374919062000f2f565b62000380919062000fa9565b600981905550606460028262000397919062000f2f565b620003a3919062000fa9565b600b819055506103e8600582620003bb919062000f2f565b620003c7919062000fa9565b600a819055506004600e819055506001600f819055506001601081905550601054600f54600e54620003fa919062000fe1565b62000406919062000fe1565b600d8190555060046012819055506001601381905550600160148190555060145460135460125462000439919062000fe1565b62000445919062000fe1565b6011819055507340ac23295cf4ddca9fa41721e0415d0aa7a99123600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004b0620007cd60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073bc79426f306e8b4bd6d8269c9228dc38c4953ee0600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200056762000559620007cd60201b60201c565b6001620007f760201b60201c565b6200057a306001620007f760201b60201c565b6200058f61dead6001620007f760201b60201c565b620005b1620005a3620007cd60201b60201c565b6001620006c160201b60201c565b620005c4306001620006c160201b60201c565b620005d961dead6001620006c160201b60201c565b620005eb3382620008b260201b60201c565b505062001179565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006d162000a2a60201b60201c565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200080762000a2a60201b60201c565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008a6919062001039565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000924576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200091b90620010b7565b60405180910390fd5b620009386000838362000abb60201b60201c565b80600260008282546200094c919062000fe1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620009a3919062000fe1565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a0a9190620010ea565b60405180910390a362000a266000838362000ac060201b60201c565b5050565b62000a3a620005f360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a60620007cd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000ab9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ab09062001157565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b4757607f821691505b60208210810362000b5d5762000b5c62000aff565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bc77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b88565b62000bd3868362000b88565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c2062000c1a62000c148462000beb565b62000bf5565b62000beb565b9050919050565b6000819050919050565b62000c3c8362000bff565b62000c5462000c4b8262000c27565b84845462000b95565b825550505050565b600090565b62000c6b62000c5c565b62000c7881848462000c31565b505050565b5b8181101562000ca05762000c9460008262000c61565b60018101905062000c7e565b5050565b601f82111562000cef5762000cb98162000b63565b62000cc48462000b78565b8101602085101562000cd4578190505b62000cec62000ce38562000b78565b83018262000c7d565b50505b505050565b600082821c905092915050565b600062000d146000198460080262000cf4565b1980831691505092915050565b600062000d2f838362000d01565b9150826002028217905092915050565b62000d4a8262000ac5565b67ffffffffffffffff81111562000d665762000d6562000ad0565b5b62000d72825462000b2e565b62000d7f82828562000ca4565b600060209050601f83116001811462000db7576000841562000da2578287015190505b62000dae858262000d21565b86555062000e1e565b601f19841662000dc78662000b63565b60005b8281101562000df15784890151825560018201915060208501945060208101905062000dca565b8683101562000e11578489015162000e0d601f89168262000d01565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e588262000e2b565b9050919050565b62000e6a8162000e4b565b811462000e7657600080fd5b50565b60008151905062000e8a8162000e5f565b92915050565b60006020828403121562000ea95762000ea862000e26565b5b600062000eb98482850162000e79565b91505092915050565b62000ecd8162000e4b565b82525050565b600060408201905062000eea600083018562000ec2565b62000ef9602083018462000ec2565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f3c8262000beb565b915062000f498362000beb565b925082820262000f598162000beb565b9150828204841483151762000f735762000f7262000f00565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000fb68262000beb565b915062000fc38362000beb565b92508262000fd65762000fd562000f7a565b5b828204905092915050565b600062000fee8262000beb565b915062000ffb8362000beb565b925082820190508082111562001016576200101562000f00565b5b92915050565b60008115159050919050565b62001033816200101c565b82525050565b600060208201905062001050600083018462001028565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200109f601f8362001056565b9150620010ac8262001067565b602082019050919050565b60006020820190508181036000830152620010d28162001090565b9050919050565b620010e48162000beb565b82525050565b6000602082019050620011016000830184620010d9565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200113f60208362001056565b91506200114c8262001107565b602082019050919050565b60006020820190508181036000830152620011728162001130565b9050919050565b60805160a05161468c620011c960003960008181610fbc015281816113650152612904015260008181610db6015281816128ac015281816130f5015281816131d601526131fd015261468c6000f3fe6080604052600436106103395760003560e01c80638ea5220f116101ab578063c0246668116100f7578063d85ba06311610095578063e2f456051161006f578063e2f4560514610c35578063e884f26014610c60578063f2fde38b14610c8b578063f8b45b0514610cb457610340565b8063d85ba06314610ba2578063dd62ed3e14610bcd578063deab8aea14610c0a57610340565b8063c876d0b9116100d1578063c876d0b914610ae4578063c8c8ebe414610b0f578063d257b34f14610b3a578063d4090d2a14610b7757610340565b8063c024666814610a69578063c17b5b8c14610a92578063c18bc19514610abb57610340565b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb1461099b578063aacebbe3146109d8578063b62496f514610a01578063bbc0c74214610a3e57610340565b80639fccce3214610908578063a0d82dc514610933578063a457c2d71461095e57610340565b80638ea5220f1461080a5780639213691314610835578063924de9b71461086057806395d89b41146108895780639a7a23d6146108b45780639c3b4fdc146108dd57610340565b80634fbee19311610285578063751039fc116102235780637bce5a04116101fd5780637bce5a04146107745780638095d5641461079f5780638a8c523c146107c85780638da5cb5b146107df57610340565b8063751039fc146106f55780637571336a1461072057806375f0a8741461074957610340565b80636ddd17131161025f5780636ddd17131461064b57806370a0823114610676578063715018a6146106b357806371a51522146106ca57610340565b80634fbee193146105b8578063540ba552146105f55780636a486a8e1461062057610340565b80631f3fed8f116102f2578063313ce567116102cc578063313ce567146104fa578063395093511461052557806349bd5a5e146105625780634a62bb651461058d57610340565b80631f3fed8f14610469578063203e727e1461049457806323b872dd146104bd57610340565b806306fdde0314610345578063095ea7b31461037057806310d5de53146103ad5780631694505e146103ea57806318160ddd146104155780631816467f1461044057610340565b3661034057005b600080fd5b34801561035157600080fd5b5061035a610cdf565b6040516103679190613339565b60405180910390f35b34801561037c57600080fd5b50610397600480360381019061039291906133f4565b610d71565b6040516103a4919061344f565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf919061346a565b610d94565b6040516103e1919061344f565b60405180910390f35b3480156103f657600080fd5b506103ff610db4565b60405161040c91906134f6565b60405180910390f35b34801561042157600080fd5b5061042a610dd8565b6040516104379190613520565b60405180910390f35b34801561044c57600080fd5b506104676004803603810190610462919061346a565b610de2565b005b34801561047557600080fd5b5061047e610eaa565b60405161048b9190613520565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b6919061353b565b610eb0565b005b3480156104c957600080fd5b506104e460048036038101906104df9190613568565b610f4b565b6040516104f1919061344f565b60405180910390f35b34801561050657600080fd5b5061050f610f7a565b60405161051c91906135d7565b60405180910390f35b34801561053157600080fd5b5061054c600480360381019061054791906133f4565b610f83565b604051610559919061344f565b60405180910390f35b34801561056e57600080fd5b50610577610fba565b6040516105849190613601565b60405180910390f35b34801561059957600080fd5b506105a2610fde565b6040516105af919061344f565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da919061346a565b610ff1565b6040516105ec919061344f565b60405180910390f35b34801561060157600080fd5b5061060a611047565b6040516106179190613520565b60405180910390f35b34801561062c57600080fd5b5061063561104d565b6040516106429190613520565b60405180910390f35b34801561065757600080fd5b50610660611053565b60405161066d919061344f565b60405180910390f35b34801561068257600080fd5b5061069d6004803603810190610698919061346a565b611066565b6040516106aa9190613520565b60405180910390f35b3480156106bf57600080fd5b506106c86110ae565b005b3480156106d657600080fd5b506106df6110c2565b6040516106ec9190613520565b60405180910390f35b34801561070157600080fd5b5061070a6110c8565b604051610717919061344f565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190613648565b6110f4565b005b34801561075557600080fd5b5061075e611157565b60405161076b9190613601565b60405180910390f35b34801561078057600080fd5b5061078961117d565b6040516107969190613520565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c19190613688565b611183565b005b3480156107d457600080fd5b506107dd61120e565b005b3480156107eb57600080fd5b506107f461124e565b6040516108019190613601565b60405180910390f35b34801561081657600080fd5b5061081f611278565b60405161082c9190613601565b60405180910390f35b34801561084157600080fd5b5061084a61129e565b6040516108579190613520565b60405180910390f35b34801561086c57600080fd5b50610887600480360381019061088291906136db565b6112a4565b005b34801561089557600080fd5b5061089e6112c9565b6040516108ab9190613339565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190613648565b61135b565b005b3480156108e957600080fd5b506108f26113ff565b6040516108ff9190613520565b60405180910390f35b34801561091457600080fd5b5061091d611405565b60405161092a9190613520565b60405180910390f35b34801561093f57600080fd5b5061094861140b565b6040516109559190613520565b60405180910390f35b34801561096a57600080fd5b50610985600480360381019061098091906133f4565b611411565b604051610992919061344f565b60405180910390f35b3480156109a757600080fd5b506109c260048036038101906109bd91906133f4565b611488565b6040516109cf919061344f565b60405180910390f35b3480156109e457600080fd5b506109ff60048036038101906109fa919061346a565b6114ab565b005b348015610a0d57600080fd5b50610a286004803603810190610a23919061346a565b611573565b604051610a35919061344f565b60405180910390f35b348015610a4a57600080fd5b50610a53611593565b604051610a60919061344f565b60405180910390f35b348015610a7557600080fd5b50610a906004803603810190610a8b9190613648565b6115a6565b005b348015610a9e57600080fd5b50610ab96004803603810190610ab49190613688565b611657565b005b348015610ac757600080fd5b50610ae26004803603810190610add919061353b565b6116e2565b005b348015610af057600080fd5b50610af961177d565b604051610b06919061344f565b60405180910390f35b348015610b1b57600080fd5b50610b24611790565b604051610b319190613520565b60405180910390f35b348015610b4657600080fd5b50610b616004803603810190610b5c919061353b565b611796565b604051610b6e919061344f565b60405180910390f35b348015610b8357600080fd5b50610b8c611877565b604051610b999190613520565b60405180910390f35b348015610bae57600080fd5b50610bb761187d565b604051610bc49190613520565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef9190613708565b611883565b604051610c019190613520565b60405180910390f35b348015610c1657600080fd5b50610c1f61190a565b604051610c2c9190613601565b60405180910390f35b348015610c4157600080fd5b50610c4a611930565b604051610c579190613520565b60405180910390f35b348015610c6c57600080fd5b50610c75611936565b604051610c82919061344f565b60405180910390f35b348015610c9757600080fd5b50610cb26004803603810190610cad919061346a565b611962565b005b348015610cc057600080fd5b50610cc96119e5565b604051610cd69190613520565b60405180910390f35b606060038054610cee90613777565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a90613777565b8015610d675780601f10610d3c57610100808354040283529160200191610d67565b820191906000526020600020905b815481529060010190602001808311610d4a57829003601f168201915b5050505050905090565b600080610d7c6119eb565b9050610d898185856119f3565b600191505092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610dea611bbc565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b610eb8611bbc565b670de0b6b3a76400006103e86001610ece610dd8565b610ed891906137d7565b610ee29190613848565b610eec9190613848565b811015610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f25906138eb565b60405180910390fd5b670de0b6b3a764000081610f4291906137d7565b60098190555050565b600080610f566119eb565b9050610f63858285611c3a565b610f6e858585611cc6565b60019150509392505050565b60006012905090565b600080610f8e6119eb565b9050610faf818585610fa08589611883565b610faa919061390b565b6119f3565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600f5481565b60115481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110b6611bbc565b6110c06000612260565b565b60135481565b60006110d2611bbc565b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6110fc611bbc565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b61118b611bbc565b82600e8190555081600f8190555080601081905550601054600f54600e546111b3919061390b565b6111bd919061390b565b600d819055506014600d541115611209576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112009061398b565b60405180910390fd5b505050565b611216611bbc565b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b6112ac611bbc565b80600c60026101000a81548160ff02191690831515021790555050565b6060600480546112d890613777565b80601f016020809104026020016040519081016040528092919081815260200182805461130490613777565b80156113515780601f1061132657610100808354040283529160200191611351565b820191906000526020600020905b81548152906001019060200180831161133457829003601f168201915b5050505050905090565b611363611bbc565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890613a1d565b60405180910390fd5b6113fb8282612326565b5050565b60105481565b60175481565b60145481565b60008061141c6119eb565b9050600061142a8286611883565b90508381101561146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690613aaf565b60405180910390fd5b61147c82868684036119f3565b60019250505092915050565b6000806114936119eb565b90506114a0818585611cc6565b600191505092915050565b6114b3611bbc565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601b6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b6115ae611bbc565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161164b919061344f565b60405180910390a25050565b61165f611bbc565b826012819055508160138190555080601481905550601454601354601254611687919061390b565b611691919061390b565b601181905550601960115411156116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490613b1b565b60405180910390fd5b505050565b6116ea611bbc565b670de0b6b3a76400006103e86005611700610dd8565b61170a91906137d7565b6117149190613848565b61171e9190613848565b811015611760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175790613bad565b60405180910390fd5b670de0b6b3a76400008161177491906137d7565b600b8190555050565b600c60039054906101000a900460ff1681565b60095481565b60006117a0611bbc565b620186a060016117ae610dd8565b6117b891906137d7565b6117c29190613848565b821015611804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fb90613c3f565b60405180910390fd5b6103e86005611811610dd8565b61181b91906137d7565b6118259190613848565b821115611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e90613cd1565b60405180910390fd5b81600a8190555060019050919050565b60165481565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b6000611940611bbc565b6000600c60036101000a81548160ff0219169083151502179055506001905090565b61196a611bbc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d090613d63565b60405180910390fd5b6119e281612260565b50565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5990613df5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890613e87565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611baf9190613520565b60405180910390a3505050565b611bc46119eb565b73ffffffffffffffffffffffffffffffffffffffff16611be261124e565b73ffffffffffffffffffffffffffffffffffffffff1614611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f90613ef3565b60405180910390fd5b565b6000611c468484611883565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611cc05781811015611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca990613f5f565b60405180910390fd5b611cbf84848484036119f3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90613ff1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b90614083565b60405180910390fd5b60008103611dbd57611db8838360006123c7565b61225b565b611dc8838383612646565b6000611dd330611066565b90506000600a548210159050808015611df85750600c60029054906101000a900460ff165b8015611e115750600560149054906101000a900460ff16155b8015611e675750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611ebd5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611f135750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f2157611f20612d0e565b5b600060019050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611fc85750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611fd257600090505b6000811561224b57601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561203557506000601154115b156121025761206260646120546011548861302090919063ffffffff16565b61303690919063ffffffff16565b90506011546013548261207591906137d7565b61207f9190613848565b60166000828254612090919061390b565b92505081905550601154601454826120a891906137d7565b6120b29190613848565b601760008282546120c3919061390b565b92505081905550601154601254826120db91906137d7565b6120e59190613848565b601560008282546120f6919061390b565b92505081905550612227565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561215d57506000600d54115b156122265761218a606461217c600d548861302090919063ffffffff16565b61303690919063ffffffff16565b9050600d54600f548261219d91906137d7565b6121a79190613848565b601660008282546121b8919061390b565b92505081905550600d54601054826121d091906137d7565b6121da9190613848565b601760008282546121eb919061390b565b92505081905550600d54600e548261220391906137d7565b61220d9190613848565b6015600082825461221e919061390b565b925050819055505b5b600081111561223c5761223b8730836123c7565b5b808561224891906140a3565b94505b6122568787876123c7565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d90613ff1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249c90614083565b60405180910390fd5b6124b083838361304c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d90614149565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125c9919061390b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161262d9190613520565b60405180910390a3612640848484613051565b50505050565b600c60009054906101000a900460ff1615612d095761266361124e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126d157506126a161124e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561270a5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612744575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561275d5750600560149054906101000a900460ff16155b15612d0857600c60019054906101000a900460ff1661285757601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128175750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d906141b5565b60405180910390fd5b5b600c60039054906101000a900460ff1615612a1f5761287461124e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156128fb57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561295357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612a1e5743601860003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106129d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d09061426d565b60405180910390fd5b43601860003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ac25750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b6957600954811115612b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b03906142ff565b60405180910390fd5b600b54612b1883611066565b82612b23919061390b565b1115612b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5b9061436b565b60405180910390fd5b612d07565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c0c5750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c5b57600954811115612c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4d906143fd565b60405180910390fd5b612d06565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612d0557600b54612cb883611066565b82612cc3919061390b565b1115612d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfb9061436b565b60405180910390fd5b5b5b5b5b5b505050565b6001600560146101000a81548160ff0219169083151502179055506000612d3430611066565b90506000601754601554601654612d4b919061390b565b612d55919061390b565b9050600080831480612d675750600082145b15612d7457505050613003565b6014600a54612d8391906137d7565b831115612d9c576014600a54612d9991906137d7565b92505b60008390506000479050612daf82613056565b6000612dc4824761329390919063ffffffff16565b90506000612def86612de16015548561302090919063ffffffff16565b61303690919063ffffffff16565b90506000612e1a87612e0c6017548661302090919063ffffffff16565b61303690919063ffffffff16565b90506000818385612e2b91906140a3565b612e3591906140a3565b9050600060168190555060006015819055506000601781905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612e959061444e565b60006040518083038185875af1925050503d8060008114612ed2576040519150601f19603f3d011682016040523d82523d6000602084013e612ed7565b606091505b505080975050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612f239061444e565b60006040518083038185875af1925050503d8060008114612f60576040519150601f19603f3d011682016040523d82523d6000602084013e612f65565b606091505b505080975050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612fb19061444e565b60006040518083038185875af1925050503d8060008114612fee576040519150601f19603f3d011682016040523d82523d6000602084013e612ff3565b606091505b5050809750505050505050505050505b6000600560146101000a81548160ff021916908315150217905550565b6000818361302e91906137d7565b905092915050565b600081836130449190613848565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561307357613072614463565b5b6040519080825280602002602001820160405280156130a15781602001602082028036833780820191505090505b50905030816000815181106130b9576130b8614492565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561315e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061318291906144d6565b8160018151811061319657613195614492565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506131fb307f0000000000000000000000000000000000000000000000000000000000000000846119f3565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161325d9594939291906145fc565b600060405180830381600087803b15801561327757600080fd5b505af115801561328b573d6000803e3d6000fd5b505050505050565b600081836132a191906140a3565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132e35780820151818401526020810190506132c8565b60008484015250505050565b6000601f19601f8301169050919050565b600061330b826132a9565b61331581856132b4565b93506133258185602086016132c5565b61332e816132ef565b840191505092915050565b600060208201905081810360008301526133538184613300565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061338b82613360565b9050919050565b61339b81613380565b81146133a657600080fd5b50565b6000813590506133b881613392565b92915050565b6000819050919050565b6133d1816133be565b81146133dc57600080fd5b50565b6000813590506133ee816133c8565b92915050565b6000806040838503121561340b5761340a61335b565b5b6000613419858286016133a9565b925050602061342a858286016133df565b9150509250929050565b60008115159050919050565b61344981613434565b82525050565b60006020820190506134646000830184613440565b92915050565b6000602082840312156134805761347f61335b565b5b600061348e848285016133a9565b91505092915050565b6000819050919050565b60006134bc6134b76134b284613360565b613497565b613360565b9050919050565b60006134ce826134a1565b9050919050565b60006134e0826134c3565b9050919050565b6134f0816134d5565b82525050565b600060208201905061350b60008301846134e7565b92915050565b61351a816133be565b82525050565b60006020820190506135356000830184613511565b92915050565b6000602082840312156135515761355061335b565b5b600061355f848285016133df565b91505092915050565b6000806000606084860312156135815761358061335b565b5b600061358f868287016133a9565b93505060206135a0868287016133a9565b92505060406135b1868287016133df565b9150509250925092565b600060ff82169050919050565b6135d1816135bb565b82525050565b60006020820190506135ec60008301846135c8565b92915050565b6135fb81613380565b82525050565b600060208201905061361660008301846135f2565b92915050565b61362581613434565b811461363057600080fd5b50565b6000813590506136428161361c565b92915050565b6000806040838503121561365f5761365e61335b565b5b600061366d858286016133a9565b925050602061367e85828601613633565b9150509250929050565b6000806000606084860312156136a1576136a061335b565b5b60006136af868287016133df565b93505060206136c0868287016133df565b92505060406136d1868287016133df565b9150509250925092565b6000602082840312156136f1576136f061335b565b5b60006136ff84828501613633565b91505092915050565b6000806040838503121561371f5761371e61335b565b5b600061372d858286016133a9565b925050602061373e858286016133a9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061378f57607f821691505b6020821081036137a2576137a1613748565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137e2826133be565b91506137ed836133be565b92508282026137fb816133be565b91508282048414831517613812576138116137a8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613853826133be565b915061385e836133be565b92508261386e5761386d613819565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006138d5602f836132b4565b91506138e082613879565b604082019050919050565b60006020820190508181036000830152613904816138c8565b9050919050565b6000613916826133be565b9150613921836133be565b9250828201905080821115613939576139386137a8565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613975601d836132b4565b91506139808261393f565b602082019050919050565b600060208201905081810360008301526139a481613968565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613a076039836132b4565b9150613a12826139ab565b604082019050919050565b60006020820190508181036000830152613a36816139fa565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613a996025836132b4565b9150613aa482613a3d565b604082019050919050565b60006020820190508181036000830152613ac881613a8c565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613b05601d836132b4565b9150613b1082613acf565b602082019050919050565b60006020820190508181036000830152613b3481613af8565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613b976024836132b4565b9150613ba282613b3b565b604082019050919050565b60006020820190508181036000830152613bc681613b8a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613c296035836132b4565b9150613c3482613bcd565b604082019050919050565b60006020820190508181036000830152613c5881613c1c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613cbb6034836132b4565b9150613cc682613c5f565b604082019050919050565b60006020820190508181036000830152613cea81613cae565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d4d6026836132b4565b9150613d5882613cf1565b604082019050919050565b60006020820190508181036000830152613d7c81613d40565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ddf6024836132b4565b9150613dea82613d83565b604082019050919050565b60006020820190508181036000830152613e0e81613dd2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e716022836132b4565b9150613e7c82613e15565b604082019050919050565b60006020820190508181036000830152613ea081613e64565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613edd6020836132b4565b9150613ee882613ea7565b602082019050919050565b60006020820190508181036000830152613f0c81613ed0565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613f49601d836132b4565b9150613f5482613f13565b602082019050919050565b60006020820190508181036000830152613f7881613f3c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613fdb6025836132b4565b9150613fe682613f7f565b604082019050919050565b6000602082019050818103600083015261400a81613fce565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061406d6023836132b4565b915061407882614011565b604082019050919050565b6000602082019050818103600083015261409c81614060565b9050919050565b60006140ae826133be565b91506140b9836133be565b92508282039050818111156140d1576140d06137a8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006141336026836132b4565b915061413e826140d7565b604082019050919050565b6000602082019050818103600083015261416281614126565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061419f6016836132b4565b91506141aa82614169565b602082019050919050565b600060208201905081810360008301526141ce81614192565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006142576049836132b4565b9150614262826141d5565b606082019050919050565b600060208201905081810360008301526142868161424a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006142e96035836132b4565b91506142f48261428d565b604082019050919050565b60006020820190508181036000830152614318816142dc565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006143556013836132b4565b91506143608261431f565b602082019050919050565b6000602082019050818103600083015261438481614348565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006143e76036836132b4565b91506143f28261438b565b604082019050919050565b60006020820190508181036000830152614416816143da565b9050919050565b600081905092915050565b50565b600061443860008361441d565b915061444382614428565b600082019050919050565b60006144598261442b565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506144d081613392565b92915050565b6000602082840312156144ec576144eb61335b565b5b60006144fa848285016144c1565b91505092915050565b6000819050919050565b600061452861452361451e84614503565b613497565b6133be565b9050919050565b6145388161450d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61457381613380565b82525050565b6000614585838361456a565b60208301905092915050565b6000602082019050919050565b60006145a98261453e565b6145b38185614549565b93506145be8361455a565b8060005b838110156145ef5781516145d68882614579565b97506145e183614591565b9250506001810190506145c2565b5085935050505092915050565b600060a0820190506146116000830188613511565b61461e602083018761452f565b8181036040830152614630818661459e565b905061463f60608301856135f2565b61464c6080830184613511565b969550505050505056fea2646970667358221220524398476e293181688fce27ee38aa69a853020b64bf2501cd2b322cc024040664736f6c63430008110033
Deployed Bytecode
0x6080604052600436106103395760003560e01c80638ea5220f116101ab578063c0246668116100f7578063d85ba06311610095578063e2f456051161006f578063e2f4560514610c35578063e884f26014610c60578063f2fde38b14610c8b578063f8b45b0514610cb457610340565b8063d85ba06314610ba2578063dd62ed3e14610bcd578063deab8aea14610c0a57610340565b8063c876d0b9116100d1578063c876d0b914610ae4578063c8c8ebe414610b0f578063d257b34f14610b3a578063d4090d2a14610b7757610340565b8063c024666814610a69578063c17b5b8c14610a92578063c18bc19514610abb57610340565b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb1461099b578063aacebbe3146109d8578063b62496f514610a01578063bbc0c74214610a3e57610340565b80639fccce3214610908578063a0d82dc514610933578063a457c2d71461095e57610340565b80638ea5220f1461080a5780639213691314610835578063924de9b71461086057806395d89b41146108895780639a7a23d6146108b45780639c3b4fdc146108dd57610340565b80634fbee19311610285578063751039fc116102235780637bce5a04116101fd5780637bce5a04146107745780638095d5641461079f5780638a8c523c146107c85780638da5cb5b146107df57610340565b8063751039fc146106f55780637571336a1461072057806375f0a8741461074957610340565b80636ddd17131161025f5780636ddd17131461064b57806370a0823114610676578063715018a6146106b357806371a51522146106ca57610340565b80634fbee193146105b8578063540ba552146105f55780636a486a8e1461062057610340565b80631f3fed8f116102f2578063313ce567116102cc578063313ce567146104fa578063395093511461052557806349bd5a5e146105625780634a62bb651461058d57610340565b80631f3fed8f14610469578063203e727e1461049457806323b872dd146104bd57610340565b806306fdde0314610345578063095ea7b31461037057806310d5de53146103ad5780631694505e146103ea57806318160ddd146104155780631816467f1461044057610340565b3661034057005b600080fd5b34801561035157600080fd5b5061035a610cdf565b6040516103679190613339565b60405180910390f35b34801561037c57600080fd5b50610397600480360381019061039291906133f4565b610d71565b6040516103a4919061344f565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf919061346a565b610d94565b6040516103e1919061344f565b60405180910390f35b3480156103f657600080fd5b506103ff610db4565b60405161040c91906134f6565b60405180910390f35b34801561042157600080fd5b5061042a610dd8565b6040516104379190613520565b60405180910390f35b34801561044c57600080fd5b506104676004803603810190610462919061346a565b610de2565b005b34801561047557600080fd5b5061047e610eaa565b60405161048b9190613520565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b6919061353b565b610eb0565b005b3480156104c957600080fd5b506104e460048036038101906104df9190613568565b610f4b565b6040516104f1919061344f565b60405180910390f35b34801561050657600080fd5b5061050f610f7a565b60405161051c91906135d7565b60405180910390f35b34801561053157600080fd5b5061054c600480360381019061054791906133f4565b610f83565b604051610559919061344f565b60405180910390f35b34801561056e57600080fd5b50610577610fba565b6040516105849190613601565b60405180910390f35b34801561059957600080fd5b506105a2610fde565b6040516105af919061344f565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da919061346a565b610ff1565b6040516105ec919061344f565b60405180910390f35b34801561060157600080fd5b5061060a611047565b6040516106179190613520565b60405180910390f35b34801561062c57600080fd5b5061063561104d565b6040516106429190613520565b60405180910390f35b34801561065757600080fd5b50610660611053565b60405161066d919061344f565b60405180910390f35b34801561068257600080fd5b5061069d6004803603810190610698919061346a565b611066565b6040516106aa9190613520565b60405180910390f35b3480156106bf57600080fd5b506106c86110ae565b005b3480156106d657600080fd5b506106df6110c2565b6040516106ec9190613520565b60405180910390f35b34801561070157600080fd5b5061070a6110c8565b604051610717919061344f565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190613648565b6110f4565b005b34801561075557600080fd5b5061075e611157565b60405161076b9190613601565b60405180910390f35b34801561078057600080fd5b5061078961117d565b6040516107969190613520565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c19190613688565b611183565b005b3480156107d457600080fd5b506107dd61120e565b005b3480156107eb57600080fd5b506107f461124e565b6040516108019190613601565b60405180910390f35b34801561081657600080fd5b5061081f611278565b60405161082c9190613601565b60405180910390f35b34801561084157600080fd5b5061084a61129e565b6040516108579190613520565b60405180910390f35b34801561086c57600080fd5b50610887600480360381019061088291906136db565b6112a4565b005b34801561089557600080fd5b5061089e6112c9565b6040516108ab9190613339565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190613648565b61135b565b005b3480156108e957600080fd5b506108f26113ff565b6040516108ff9190613520565b60405180910390f35b34801561091457600080fd5b5061091d611405565b60405161092a9190613520565b60405180910390f35b34801561093f57600080fd5b5061094861140b565b6040516109559190613520565b60405180910390f35b34801561096a57600080fd5b50610985600480360381019061098091906133f4565b611411565b604051610992919061344f565b60405180910390f35b3480156109a757600080fd5b506109c260048036038101906109bd91906133f4565b611488565b6040516109cf919061344f565b60405180910390f35b3480156109e457600080fd5b506109ff60048036038101906109fa919061346a565b6114ab565b005b348015610a0d57600080fd5b50610a286004803603810190610a23919061346a565b611573565b604051610a35919061344f565b60405180910390f35b348015610a4a57600080fd5b50610a53611593565b604051610a60919061344f565b60405180910390f35b348015610a7557600080fd5b50610a906004803603810190610a8b9190613648565b6115a6565b005b348015610a9e57600080fd5b50610ab96004803603810190610ab49190613688565b611657565b005b348015610ac757600080fd5b50610ae26004803603810190610add919061353b565b6116e2565b005b348015610af057600080fd5b50610af961177d565b604051610b06919061344f565b60405180910390f35b348015610b1b57600080fd5b50610b24611790565b604051610b319190613520565b60405180910390f35b348015610b4657600080fd5b50610b616004803603810190610b5c919061353b565b611796565b604051610b6e919061344f565b60405180910390f35b348015610b8357600080fd5b50610b8c611877565b604051610b999190613520565b60405180910390f35b348015610bae57600080fd5b50610bb761187d565b604051610bc49190613520565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef9190613708565b611883565b604051610c019190613520565b60405180910390f35b348015610c1657600080fd5b50610c1f61190a565b604051610c2c9190613601565b60405180910390f35b348015610c4157600080fd5b50610c4a611930565b604051610c579190613520565b60405180910390f35b348015610c6c57600080fd5b50610c75611936565b604051610c82919061344f565b60405180910390f35b348015610c9757600080fd5b50610cb26004803603810190610cad919061346a565b611962565b005b348015610cc057600080fd5b50610cc96119e5565b604051610cd69190613520565b60405180910390f35b606060038054610cee90613777565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a90613777565b8015610d675780601f10610d3c57610100808354040283529160200191610d67565b820191906000526020600020905b815481529060010190602001808311610d4a57829003601f168201915b5050505050905090565b600080610d7c6119eb565b9050610d898185856119f3565b600191505092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610dea611bbc565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b610eb8611bbc565b670de0b6b3a76400006103e86001610ece610dd8565b610ed891906137d7565b610ee29190613848565b610eec9190613848565b811015610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f25906138eb565b60405180910390fd5b670de0b6b3a764000081610f4291906137d7565b60098190555050565b600080610f566119eb565b9050610f63858285611c3a565b610f6e858585611cc6565b60019150509392505050565b60006012905090565b600080610f8e6119eb565b9050610faf818585610fa08589611883565b610faa919061390b565b6119f3565b600191505092915050565b7f000000000000000000000000d55ea6dd56408e76c046fcee93a72e56ef088c0281565b600c60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600f5481565b60115481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110b6611bbc565b6110c06000612260565b565b60135481565b60006110d2611bbc565b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6110fc611bbc565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b61118b611bbc565b82600e8190555081600f8190555080601081905550601054600f54600e546111b3919061390b565b6111bd919061390b565b600d819055506014600d541115611209576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112009061398b565b60405180910390fd5b505050565b611216611bbc565b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b6112ac611bbc565b80600c60026101000a81548160ff02191690831515021790555050565b6060600480546112d890613777565b80601f016020809104026020016040519081016040528092919081815260200182805461130490613777565b80156113515780601f1061132657610100808354040283529160200191611351565b820191906000526020600020905b81548152906001019060200180831161133457829003601f168201915b5050505050905090565b611363611bbc565b7f000000000000000000000000d55ea6dd56408e76c046fcee93a72e56ef088c0273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890613a1d565b60405180910390fd5b6113fb8282612326565b5050565b60105481565b60175481565b60145481565b60008061141c6119eb565b9050600061142a8286611883565b90508381101561146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690613aaf565b60405180910390fd5b61147c82868684036119f3565b60019250505092915050565b6000806114936119eb565b90506114a0818585611cc6565b600191505092915050565b6114b3611bbc565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601b6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b6115ae611bbc565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161164b919061344f565b60405180910390a25050565b61165f611bbc565b826012819055508160138190555080601481905550601454601354601254611687919061390b565b611691919061390b565b601181905550601960115411156116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490613b1b565b60405180910390fd5b505050565b6116ea611bbc565b670de0b6b3a76400006103e86005611700610dd8565b61170a91906137d7565b6117149190613848565b61171e9190613848565b811015611760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175790613bad565b60405180910390fd5b670de0b6b3a76400008161177491906137d7565b600b8190555050565b600c60039054906101000a900460ff1681565b60095481565b60006117a0611bbc565b620186a060016117ae610dd8565b6117b891906137d7565b6117c29190613848565b821015611804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fb90613c3f565b60405180910390fd5b6103e86005611811610dd8565b61181b91906137d7565b6118259190613848565b821115611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e90613cd1565b60405180910390fd5b81600a8190555060019050919050565b60165481565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b6000611940611bbc565b6000600c60036101000a81548160ff0219169083151502179055506001905090565b61196a611bbc565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d090613d63565b60405180910390fd5b6119e281612260565b50565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5990613df5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890613e87565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611baf9190613520565b60405180910390a3505050565b611bc46119eb565b73ffffffffffffffffffffffffffffffffffffffff16611be261124e565b73ffffffffffffffffffffffffffffffffffffffff1614611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f90613ef3565b60405180910390fd5b565b6000611c468484611883565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611cc05781811015611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca990613f5f565b60405180910390fd5b611cbf84848484036119f3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90613ff1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b90614083565b60405180910390fd5b60008103611dbd57611db8838360006123c7565b61225b565b611dc8838383612646565b6000611dd330611066565b90506000600a548210159050808015611df85750600c60029054906101000a900460ff165b8015611e115750600560149054906101000a900460ff16155b8015611e675750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611ebd5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611f135750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f2157611f20612d0e565b5b600060019050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611fc85750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611fd257600090505b6000811561224b57601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561203557506000601154115b156121025761206260646120546011548861302090919063ffffffff16565b61303690919063ffffffff16565b90506011546013548261207591906137d7565b61207f9190613848565b60166000828254612090919061390b565b92505081905550601154601454826120a891906137d7565b6120b29190613848565b601760008282546120c3919061390b565b92505081905550601154601254826120db91906137d7565b6120e59190613848565b601560008282546120f6919061390b565b92505081905550612227565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561215d57506000600d54115b156122265761218a606461217c600d548861302090919063ffffffff16565b61303690919063ffffffff16565b9050600d54600f548261219d91906137d7565b6121a79190613848565b601660008282546121b8919061390b565b92505081905550600d54601054826121d091906137d7565b6121da9190613848565b601760008282546121eb919061390b565b92505081905550600d54600e548261220391906137d7565b61220d9190613848565b6015600082825461221e919061390b565b925050819055505b5b600081111561223c5761223b8730836123c7565b5b808561224891906140a3565b94505b6122568787876123c7565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d90613ff1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249c90614083565b60405180910390fd5b6124b083838361304c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d90614149565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125c9919061390b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161262d9190613520565b60405180910390a3612640848484613051565b50505050565b600c60009054906101000a900460ff1615612d095761266361124e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126d157506126a161124e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561270a5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612744575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561275d5750600560149054906101000a900460ff16155b15612d0857600c60019054906101000a900460ff1661285757601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128175750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d906141b5565b60405180910390fd5b5b600c60039054906101000a900460ff1615612a1f5761287461124e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156128fb57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561295357507f000000000000000000000000d55ea6dd56408e76c046fcee93a72e56ef088c0273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612a1e5743601860003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106129d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d09061426d565b60405180910390fd5b43601860003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ac25750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b6957600954811115612b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b03906142ff565b60405180910390fd5b600b54612b1883611066565b82612b23919061390b565b1115612b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5b9061436b565b60405180910390fd5b612d07565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c0c5750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c5b57600954811115612c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4d906143fd565b60405180910390fd5b612d06565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612d0557600b54612cb883611066565b82612cc3919061390b565b1115612d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfb9061436b565b60405180910390fd5b5b5b5b5b5b505050565b6001600560146101000a81548160ff0219169083151502179055506000612d3430611066565b90506000601754601554601654612d4b919061390b565b612d55919061390b565b9050600080831480612d675750600082145b15612d7457505050613003565b6014600a54612d8391906137d7565b831115612d9c576014600a54612d9991906137d7565b92505b60008390506000479050612daf82613056565b6000612dc4824761329390919063ffffffff16565b90506000612def86612de16015548561302090919063ffffffff16565b61303690919063ffffffff16565b90506000612e1a87612e0c6017548661302090919063ffffffff16565b61303690919063ffffffff16565b90506000818385612e2b91906140a3565b612e3591906140a3565b9050600060168190555060006015819055506000601781905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612e959061444e565b60006040518083038185875af1925050503d8060008114612ed2576040519150601f19603f3d011682016040523d82523d6000602084013e612ed7565b606091505b505080975050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612f239061444e565b60006040518083038185875af1925050503d8060008114612f60576040519150601f19603f3d011682016040523d82523d6000602084013e612f65565b606091505b505080975050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612fb19061444e565b60006040518083038185875af1925050503d8060008114612fee576040519150601f19603f3d011682016040523d82523d6000602084013e612ff3565b606091505b5050809750505050505050505050505b6000600560146101000a81548160ff021916908315150217905550565b6000818361302e91906137d7565b905092915050565b600081836130449190613848565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561307357613072614463565b5b6040519080825280602002602001820160405280156130a15781602001602082028036833780820191505090505b50905030816000815181106130b9576130b8614492565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561315e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061318291906144d6565b8160018151811061319657613195614492565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506131fb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846119f3565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161325d9594939291906145fc565b600060405180830381600087803b15801561327757600080fd5b505af115801561328b573d6000803e3d6000fd5b505050505050565b600081836132a191906140a3565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132e35780820151818401526020810190506132c8565b60008484015250505050565b6000601f19601f8301169050919050565b600061330b826132a9565b61331581856132b4565b93506133258185602086016132c5565b61332e816132ef565b840191505092915050565b600060208201905081810360008301526133538184613300565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061338b82613360565b9050919050565b61339b81613380565b81146133a657600080fd5b50565b6000813590506133b881613392565b92915050565b6000819050919050565b6133d1816133be565b81146133dc57600080fd5b50565b6000813590506133ee816133c8565b92915050565b6000806040838503121561340b5761340a61335b565b5b6000613419858286016133a9565b925050602061342a858286016133df565b9150509250929050565b60008115159050919050565b61344981613434565b82525050565b60006020820190506134646000830184613440565b92915050565b6000602082840312156134805761347f61335b565b5b600061348e848285016133a9565b91505092915050565b6000819050919050565b60006134bc6134b76134b284613360565b613497565b613360565b9050919050565b60006134ce826134a1565b9050919050565b60006134e0826134c3565b9050919050565b6134f0816134d5565b82525050565b600060208201905061350b60008301846134e7565b92915050565b61351a816133be565b82525050565b60006020820190506135356000830184613511565b92915050565b6000602082840312156135515761355061335b565b5b600061355f848285016133df565b91505092915050565b6000806000606084860312156135815761358061335b565b5b600061358f868287016133a9565b93505060206135a0868287016133a9565b92505060406135b1868287016133df565b9150509250925092565b600060ff82169050919050565b6135d1816135bb565b82525050565b60006020820190506135ec60008301846135c8565b92915050565b6135fb81613380565b82525050565b600060208201905061361660008301846135f2565b92915050565b61362581613434565b811461363057600080fd5b50565b6000813590506136428161361c565b92915050565b6000806040838503121561365f5761365e61335b565b5b600061366d858286016133a9565b925050602061367e85828601613633565b9150509250929050565b6000806000606084860312156136a1576136a061335b565b5b60006136af868287016133df565b93505060206136c0868287016133df565b92505060406136d1868287016133df565b9150509250925092565b6000602082840312156136f1576136f061335b565b5b60006136ff84828501613633565b91505092915050565b6000806040838503121561371f5761371e61335b565b5b600061372d858286016133a9565b925050602061373e858286016133a9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061378f57607f821691505b6020821081036137a2576137a1613748565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137e2826133be565b91506137ed836133be565b92508282026137fb816133be565b91508282048414831517613812576138116137a8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613853826133be565b915061385e836133be565b92508261386e5761386d613819565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006138d5602f836132b4565b91506138e082613879565b604082019050919050565b60006020820190508181036000830152613904816138c8565b9050919050565b6000613916826133be565b9150613921836133be565b9250828201905080821115613939576139386137a8565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613975601d836132b4565b91506139808261393f565b602082019050919050565b600060208201905081810360008301526139a481613968565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613a076039836132b4565b9150613a12826139ab565b604082019050919050565b60006020820190508181036000830152613a36816139fa565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613a996025836132b4565b9150613aa482613a3d565b604082019050919050565b60006020820190508181036000830152613ac881613a8c565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613b05601d836132b4565b9150613b1082613acf565b602082019050919050565b60006020820190508181036000830152613b3481613af8565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613b976024836132b4565b9150613ba282613b3b565b604082019050919050565b60006020820190508181036000830152613bc681613b8a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613c296035836132b4565b9150613c3482613bcd565b604082019050919050565b60006020820190508181036000830152613c5881613c1c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613cbb6034836132b4565b9150613cc682613c5f565b604082019050919050565b60006020820190508181036000830152613cea81613cae565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d4d6026836132b4565b9150613d5882613cf1565b604082019050919050565b60006020820190508181036000830152613d7c81613d40565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ddf6024836132b4565b9150613dea82613d83565b604082019050919050565b60006020820190508181036000830152613e0e81613dd2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e716022836132b4565b9150613e7c82613e15565b604082019050919050565b60006020820190508181036000830152613ea081613e64565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613edd6020836132b4565b9150613ee882613ea7565b602082019050919050565b60006020820190508181036000830152613f0c81613ed0565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613f49601d836132b4565b9150613f5482613f13565b602082019050919050565b60006020820190508181036000830152613f7881613f3c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613fdb6025836132b4565b9150613fe682613f7f565b604082019050919050565b6000602082019050818103600083015261400a81613fce565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061406d6023836132b4565b915061407882614011565b604082019050919050565b6000602082019050818103600083015261409c81614060565b9050919050565b60006140ae826133be565b91506140b9836133be565b92508282039050818111156140d1576140d06137a8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006141336026836132b4565b915061413e826140d7565b604082019050919050565b6000602082019050818103600083015261416281614126565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061419f6016836132b4565b91506141aa82614169565b602082019050919050565b600060208201905081810360008301526141ce81614192565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006142576049836132b4565b9150614262826141d5565b606082019050919050565b600060208201905081810360008301526142868161424a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006142e96035836132b4565b91506142f48261428d565b604082019050919050565b60006020820190508181036000830152614318816142dc565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006143556013836132b4565b91506143608261431f565b602082019050919050565b6000602082019050818103600083015261438481614348565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006143e76036836132b4565b91506143f28261438b565b604082019050919050565b60006020820190508181036000830152614416816143da565b9050919050565b600081905092915050565b50565b600061443860008361441d565b915061444382614428565b600082019050919050565b60006144598261442b565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506144d081613392565b92915050565b6000602082840312156144ec576144eb61335b565b5b60006144fa848285016144c1565b91505092915050565b6000819050919050565b600061452861452361451e84614503565b613497565b6133be565b9050919050565b6145388161450d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61457381613380565b82525050565b6000614585838361456a565b60208301905092915050565b6000602082019050919050565b60006145a98261453e565b6145b38185614549565b93506145be8361455a565b8060005b838110156145ef5781516145d68882614579565b97506145e183614591565b9250506001810190506145c2565b5085935050505092915050565b600060a0820190506146116000830188613511565b61461e602083018761452f565b8181036040830152614630818661459e565b905061463f60608301856135f2565b61464c6080830184613511565b969550505050505056fea2646970667358221220524398476e293181688fce27ee38aa69a853020b64bf2501cd2b322cc024040664736f6c63430008110033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 32 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.