Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000 aaa
Holders
207
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,013.237683180288374413 aaaValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
aaaaaaaaaaaa
Compiler Version
v0.8.22+commit.4fc1097e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** AA________________________________________________AA AA________________________________________________AA ||______________ _______ _______ _______ _______ || ||____/ /___ |___ |___ |___ |___ | || ||__ __/__ /| |__ /| |__ /| |__ /| |__ /| | || ||_(_ ) _ ___ |_ ___ |_ ___ |_ ___ |_ ___ | || ||/ _/ /_/ |_|/_/ |_|/_/ |_|/_/ |_|/_/ |_| || ||/_/_____________________________________________|| AA________________________________________________AA AA________________________________________________AA AAAAAAA: https://aaaaaaaaaaaaaaaaaaaaaa.xyz/ AAAAAAA: https://twitter.com/aaaaaaaaaaacoin AAAAAAA: https://t.me/aaaaaaaaaaacoin **/ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.20; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; bytes32 constant INIT_CODE_HASH = hex"96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f"; address constant FACTORY = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f; library UniswapV2Library { function pairFor( address tokenA, address tokenB ) internal pure returns (address pair) { (address token0, address token1) = sortTokens(tokenA, tokenB); pair = address( uint160( uint256( keccak256( abi.encodePacked( hex"ff", FACTORY, keccak256(abi.encodePacked(token0, token1)), INIT_CODE_HASH ) ) ) ) ); } function sortTokens( address tokenA, address tokenB ) internal pure returns (address token0, address token1) { (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); } } contract aaaaaaaaaaaa is Context, IERC20, Ownable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private bots; mapping(address => uint256) private _holderLastTransferTimestamp; bool public transferDelayEnabled = true; address payable private _taxWallet; uint256 private _initialBuyTax; uint256 private _initialSellTax; uint256 private _finalBuyTax; uint256 private _finalSellTax; uint256 private _reduceBuyTaxAt = 44; uint256 private _reduceSellTaxAt = 44; uint256 private _preventSwapBefore = 25; uint256 private _buyCount; uint8 private constant _decimals = 18; uint256 private constant _tTotal = 1_000_000 * 10 ** _decimals; string private constant _name = unicode"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"; string private constant _symbol = unicode"aaa"; uint256 public _maxTxAmount = 20_000 * 10 ** _decimals; uint256 public _maxWalletSize = 20_000 * 10 ** _decimals; uint256 public _taxSwapThreshold = 2_000 * 10 ** _decimals; uint256 public _maxTaxSwap = 5_000 * 10 ** _decimals; IUniswapV2Router02 private constant UNISWAP_V2_ROUTER = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address private immutable UNISWAP_V2_PAIR; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; event MaxTxAmountUpdated(uint256 _maxTxAmount); modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor() Ownable(msg.sender) { _taxWallet = payable(msg.sender); _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_taxWallet] = true; UNISWAP_V2_PAIR = UniswapV2Library.pairFor( address(this), UNISWAP_V2_ROUTER.WETH() ); _balances[_msgSender()] = _tTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer( address recipient, uint256 amount ) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance( address owner, address spender ) public view override returns (uint256) { return _allowances[owner][spender]; } function approve( address spender, uint256 amount ) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); uint256 taxAmount = 0; if (from != owner() && to != owner()) { taxAmount = amount .mul( (_buyCount > _reduceBuyTaxAt) ? _finalBuyTax : _initialBuyTax ) .div(100); if (transferDelayEnabled) { if (to != address(UNISWAP_V2_ROUTER) && to != UNISWAP_V2_PAIR) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } if ( from == UNISWAP_V2_PAIR && to != address(UNISWAP_V2_ROUTER) && !_isExcludedFromFee[to] ) { require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount."); require( balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize." ); if (_buyCount <= 100) { _buyCount++; } } if (to == UNISWAP_V2_PAIR && from != address(this)) { taxAmount = amount .mul( (_buyCount > _reduceSellTaxAt) ? _finalSellTax : _initialSellTax ) .div(100); } uint256 contractTokenBalance = balanceOf(address(this)); if ( !inSwap && to == UNISWAP_V2_PAIR && swapEnabled && contractTokenBalance > _taxSwapThreshold && _buyCount > _preventSwapBefore ) { swapTokensForEth( min(amount, min(contractTokenBalance, _maxTaxSwap)) ); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 50000000000000000) { sendETHToFee(address(this).balance); } } } if (taxAmount > 0) { _balances[address(this)] = _balances[address(this)].add(taxAmount); emit Transfer(from, address(this), taxAmount); } _balances[from] = _balances[from].sub(amount); _balances[to] = _balances[to].add(amount.sub(taxAmount)); emit Transfer(from, to, amount.sub(taxAmount)); } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = UNISWAP_V2_ROUTER.WETH(); UNISWAP_V2_ROUTER.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, _taxWallet, block.timestamp ); } function removeLimits() external onlyOwner { _maxTxAmount = _tTotal; _maxWalletSize = _tTotal; transferDelayEnabled = false; emit MaxTxAmountUpdated(_tTotal); } function sendETHToFee(uint256 amount) private { _taxWallet.transfer(amount); } function openTrading() external payable onlyOwner { require(!tradingOpen, "trading is already open"); _approve(address(this), address(UNISWAP_V2_ROUTER), type(uint256).max); UNISWAP_V2_ROUTER.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); _initialBuyTax = 25; _initialSellTax = 25; _finalBuyTax = 5; _finalSellTax = 5; swapEnabled = true; tradingOpen = true; } receive() external payable {} function manualSwap() external { require(_msgSender() == _taxWallet); uint256 tokenBalance = balanceOf(address(this)); if (tokenBalance > 0) { swapTokensForEth(tokenBalance); } uint256 ethBalance = address(this).balance; if (ethBalance > 0) { sendETHToFee(ethBalance); } } function excludeFromFee(address addy) external onlyOwner { _isExcludedFromFee[addy] = true; } function setTaxes( uint256 finalBuyTax, uint256 finalSellTax ) external onlyOwner { _finalBuyTax = finalBuyTax; _finalSellTax = finalSellTax; } }
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 IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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 v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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); } }
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" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"finalBuyTax","type":"uint256"},{"internalType":"uint256","name":"finalSellTax","type":"uint256"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052600160065f6101000a81548160ff021916908315150217905550602c600b55602c600c556019600d556012600a6200003d919062000841565b614e206200004c919062000891565b600f556012600a6200005f919062000841565b614e206200006e919062000891565b6010556012600a62000081919062000841565b6107d062000090919062000891565b6011556012600a620000a3919062000841565b611388620000b2919062000891565b6012555f601360016101000a81548160ff0219169083151502179055505f601360026101000a81548160ff021916908315150217905550348015620000f5575f80fd5b50335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200016a575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200016191906200091e565b60405180910390fd5b6200017b81620004c060201b60201c565b5033600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160035f620001d26200058160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160035f600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506200038230737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000350573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200037691906200096c565b620005a860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506012600a620003c5919062000841565b620f4240620003d5919062000891565b60015f620003e86200065860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550620004356200065860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6012600a62000493919062000841565b620f4240620004a3919062000891565b604051620004b29190620009ad565b60405180910390a362000b18565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f805f620005bd85856200065f60201b60201c565b91509150735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f8282604051602001620005eb92919062000a15565b604051602081830303815290604052805190602001207f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f604051602001620006369392919062000ac9565b604051602081830303815290604052805190602001205f1c9250505092915050565b5f33905090565b5f808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16106200069d578284620006a0565b83835b80925081935050509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200073957808604811115620007115762000710620006af565b5b6001851615620007215780820291505b80810290506200073185620006dc565b9450620006f1565b94509492505050565b5f8262000753576001905062000825565b8162000762575f905062000825565b81600181146200077b57600281146200078657620007bc565b600191505062000825565b60ff8411156200079b576200079a620006af565b5b8360020a915084821115620007b557620007b4620006af565b5b5062000825565b5060208310610133831016604e8410600b8410161715620007f65782820a905083811115620007f057620007ef620006af565b5b62000825565b620008058484846001620006e8565b925090508184048111156200081f576200081e620006af565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f6200084d826200082c565b91506200085a8362000835565b9250620008897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000742565b905092915050565b5f6200089d826200082c565b9150620008aa836200082c565b9250828202620008ba816200082c565b91508282048414831517620008d457620008d3620006af565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200090682620008db565b9050919050565b6200091881620008fa565b82525050565b5f602082019050620009335f8301846200090d565b92915050565b5f80fd5b6200094881620008fa565b811462000953575f80fd5b50565b5f8151905062000966816200093d565b92915050565b5f6020828403121562000984576200098362000939565b5b5f620009938482850162000956565b91505092915050565b620009a7816200082c565b82525050565b5f602082019050620009c25f8301846200099c565b92915050565b5f8160601b9050919050565b5f620009e082620009c8565b9050919050565b5f620009f382620009d4565b9050919050565b62000a0f62000a0982620008fa565b620009e7565b82525050565b5f62000a228285620009fa565b60148201915062000a348284620009fa565b6014820191508190509392505050565b5f81905092915050565b7fff000000000000000000000000000000000000000000000000000000000000005f82015250565b5f62000a8460018362000a44565b915062000a918262000a4e565b600182019050919050565b5f819050919050565b5f819050919050565b62000ac362000abd8262000a9c565b62000aa5565b82525050565b5f62000ad58262000a76565b915062000ae38286620009fa565b60148201915062000af5828562000aae565b60208201915062000b07828462000aae565b602082019150819050949350505050565b608051612a4662000b465f395f8181610f820152818161109b0152818161124e015261133d0152612a465ff3fe608060405260043610610138575f3560e01c80637d1db4a5116100aa578063bf474bed1161006e578063bf474bed146103ed578063c647b20e14610417578063c876d0b91461043f578063c9567bf914610469578063dd62ed3e14610473578063f2fde38b146104af5761013f565b80637d1db4a5146103095780638da5cb5b146103335780638f9a55c01461035d57806395d89b4114610387578063a9059cbb146103b15761013f565b8063313ce567116100fc578063313ce56714610239578063437823ec1461026357806351bc3c851461028b57806370a08231146102a1578063715018a6146102dd578063751039fc146102f35761013f565b806306fdde0314610143578063095ea7b31461016d5780630faee56f146101a957806318160ddd146101d357806323b872dd146101fd5761013f565b3661013f57005b5f80fd5b34801561014e575f80fd5b506101576104d7565b6040516101649190611bf4565b60405180910390f35b348015610178575f80fd5b50610193600480360381019061018e9190611ca5565b6104f7565b6040516101a09190611cfd565b60405180910390f35b3480156101b4575f80fd5b506101bd610514565b6040516101ca9190611d25565b60405180910390f35b3480156101de575f80fd5b506101e761051a565b6040516101f49190611d25565b60405180910390f35b348015610208575f80fd5b50610223600480360381019061021e9190611d3e565b61053c565b6040516102309190611cfd565b60405180910390f35b348015610244575f80fd5b5061024d610610565b60405161025a9190611da9565b60405180910390f35b34801561026e575f80fd5b5061028960048036038101906102849190611dc2565b610618565b005b348015610296575f80fd5b5061029f610678565b005b3480156102ac575f80fd5b506102c760048036038101906102c29190611dc2565b610710565b6040516102d49190611d25565b60405180910390f35b3480156102e8575f80fd5b506102f1610756565b005b3480156102fe575f80fd5b50610307610769565b005b348015610314575f80fd5b5061031d610822565b60405161032a9190611d25565b60405180910390f35b34801561033e575f80fd5b50610347610828565b6040516103549190611dfc565b60405180910390f35b348015610368575f80fd5b5061037161084f565b60405161037e9190611d25565b60405180910390f35b348015610392575f80fd5b5061039b610855565b6040516103a89190611bf4565b60405180910390f35b3480156103bc575f80fd5b506103d760048036038101906103d29190611ca5565b610892565b6040516103e49190611cfd565b60405180910390f35b3480156103f8575f80fd5b506104016108af565b60405161040e9190611d25565b60405180910390f35b348015610422575f80fd5b5061043d60048036038101906104389190611e15565b6108b5565b005b34801561044a575f80fd5b506104536108cf565b6040516104609190611cfd565b60405180910390f35b6104716108e1565b005b34801561047e575f80fd5b5061049960048036038101906104949190611e53565b610a79565b6040516104a69190611d25565b60405180910390f35b3480156104ba575f80fd5b506104d560048036038101906104d09190611dc2565b610afb565b005b60606040518060e0016040528060b5815260200161293460b59139905090565b5f61050a610503610b7f565b8484610b86565b6001905092915050565b60125481565b5f6012600a6105299190611fed565b620f42406105379190612037565b905090565b5f610548848484610d49565b61060584610554610b7f565b610600856040518060600160405280602881526020016129e96028913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6105b7610b7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546116b29092919063ffffffff16565b610b86565b600190509392505050565b5f6012905090565b610620611706565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166106b9610b7f565b73ffffffffffffffffffffffffffffffffffffffff16146106d8575f80fd5b5f6106e230610710565b90505f8111156106f6576106f58161178d565b5b5f4790505f81111561070c5761070b816119d4565b5b5050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61075e611706565b6107675f611a3d565b565b610771611706565b6012600a61077f9190611fed565b620f424061078d9190612037565b600f819055506012600a6107a19190611fed565b620f42406107af9190612037565b6010819055505f60065f6101000a81548160ff0219169083151502179055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6012600a6107fd9190611fed565b620f424061080b9190612037565b6040516108189190611d25565b60405180910390a1565b600f5481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b60606040518060400160405280600381526020017f6161610000000000000000000000000000000000000000000000000000000000815250905090565b5f6108a561089e610b7f565b8484610d49565b6001905092915050565b60115481565b6108bd611706565b8160098190555080600a819055505050565b60065f9054906101000a900460ff1681565b6108e9611706565b60135f9054906101000a900460ff1615610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f906120c2565b60405180910390fd5b61097730737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610b86565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71947306109b230610710565b5f806109bc610828565b426040518863ffffffff1660e01b81526004016109de96959493929190612122565b60606040518083038185885af11580156109fa573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610a1f9190612195565b5050506019600781905550601960088190555060056009819055506005600a819055506001601360026101000a81548160ff021916908315150217905550600160135f6101000a81548160ff021916908315150217905550565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b03611706565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b73575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b6a9190611dfc565b60405180910390fd5b610b7c81611a3d565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90612255565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c59906122e3565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d3c9190611d25565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90612371565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c906123ff565b60405180910390fd5b5f8111610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e9061248d565b60405180910390fd5b5f610e70610828565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610ede5750610eae610828565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561140257610f1f6064610f11600b54600e5411610efe57600754610f02565b6009545b85611afe90919063ffffffff16565b611b1390919063ffffffff16565b905060065f9054906101000a900460ff161561109957737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610fd157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611098574360055f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c90612541565b60405180910390fd5b4360055f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156111345750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611187575060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561124c57600f548211156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c8906125a9565b60405180910390fd5b601054826111de85610710565b6111e891906125c7565b1115611229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122090612644565b60405180910390fd5b6064600e541161124b57600e5f81548092919061124590612662565b91905055505b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156112d357503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611317576113146064611306600c54600e54116112f3576008546112f7565b600a545b85611afe90919063ffffffff16565b611b1390919063ffffffff16565b90505b5f61132130610710565b9050601360019054906101000a900460ff1615801561138b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156113a35750601360029054906101000a900460ff165b80156113b0575060115481115b80156113bf5750600d54600e54115b15611400576113e16113dc846113d784601254611b28565b611b28565b61178d565b5f47905066b1a2bc2ec500008111156113fe576113fd476119d4565b5b505b505b5f8111156115015761145a8160015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b4090919063ffffffff16565b60015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114f89190611d25565b60405180910390a35b6115518260015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b5590919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506115f46115a88284611b5590919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b4090919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6116978486611b5590919063ffffffff16565b6040516116a49190611d25565b60405180910390a350505050565b5f8383111582906116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f09190611bf4565b60405180910390fd5b5082840390509392505050565b61170e610b7f565b73ffffffffffffffffffffffffffffffffffffffff1661172c610828565b73ffffffffffffffffffffffffffffffffffffffff161461178b5761174f610b7f565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016117829190611dfc565b60405180910390fd5b565b6001601360016101000a81548160ff0219169083151502179055505f600267ffffffffffffffff8111156117c4576117c36126a9565b5b6040519080825280602002602001820160405280156117f25781602001602082028036833780820191505090505b50905030815f81518110611809576118086126d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118c49190612717565b816001815181106118d8576118d76126d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f84600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161198995949392919061284b565b5f604051808303815f87803b1580156119a0575f80fd5b505af11580156119b2573d5f803e3d5ffd5b50505050505f601360016101000a81548160ff02191690831515021790555050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611a39573d5f803e3d5ffd5b5050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8183611b0b9190612037565b905092915050565b5f8183611b2091906128d0565b905092915050565b5f818311611b365782611b38565b815b905092915050565b5f8183611b4d91906125c7565b905092915050565b5f8183611b629190612900565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611ba1578082015181840152602081019050611b86565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611bc682611b6a565b611bd08185611b74565b9350611be0818560208601611b84565b611be981611bac565b840191505092915050565b5f6020820190508181035f830152611c0c8184611bbc565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c4182611c18565b9050919050565b611c5181611c37565b8114611c5b575f80fd5b50565b5f81359050611c6c81611c48565b92915050565b5f819050919050565b611c8481611c72565b8114611c8e575f80fd5b50565b5f81359050611c9f81611c7b565b92915050565b5f8060408385031215611cbb57611cba611c14565b5b5f611cc885828601611c5e565b9250506020611cd985828601611c91565b9150509250929050565b5f8115159050919050565b611cf781611ce3565b82525050565b5f602082019050611d105f830184611cee565b92915050565b611d1f81611c72565b82525050565b5f602082019050611d385f830184611d16565b92915050565b5f805f60608486031215611d5557611d54611c14565b5b5f611d6286828701611c5e565b9350506020611d7386828701611c5e565b9250506040611d8486828701611c91565b9150509250925092565b5f60ff82169050919050565b611da381611d8e565b82525050565b5f602082019050611dbc5f830184611d9a565b92915050565b5f60208284031215611dd757611dd6611c14565b5b5f611de484828501611c5e565b91505092915050565b611df681611c37565b82525050565b5f602082019050611e0f5f830184611ded565b92915050565b5f8060408385031215611e2b57611e2a611c14565b5b5f611e3885828601611c91565b9250506020611e4985828601611c91565b9150509250929050565b5f8060408385031215611e6957611e68611c14565b5b5f611e7685828601611c5e565b9250506020611e8785828601611c5e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115611f1357808604811115611eef57611eee611e91565b5b6001851615611efe5780820291505b8081029050611f0c85611ebe565b9450611ed3565b94509492505050565b5f82611f2b5760019050611fe6565b81611f38575f9050611fe6565b8160018114611f4e5760028114611f5857611f87565b6001915050611fe6565b60ff841115611f6a57611f69611e91565b5b8360020a915084821115611f8157611f80611e91565b5b50611fe6565b5060208310610133831016604e8410600b8410161715611fbc5782820a905083811115611fb757611fb6611e91565b5b611fe6565b611fc98484846001611eca565b92509050818404811115611fe057611fdf611e91565b5b81810290505b9392505050565b5f611ff782611c72565b915061200283611d8e565b925061202f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611f1c565b905092915050565b5f61204182611c72565b915061204c83611c72565b925082820261205a81611c72565b9150828204841483151761207157612070611e91565b5b5092915050565b7f74726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f6120ac601783611b74565b91506120b782612078565b602082019050919050565b5f6020820190508181035f8301526120d9816120a0565b9050919050565b5f819050919050565b5f819050919050565b5f61210c612107612102846120e0565b6120e9565b611c72565b9050919050565b61211c816120f2565b82525050565b5f60c0820190506121355f830189611ded565b6121426020830188611d16565b61214f6040830187612113565b61215c6060830186612113565b6121696080830185611ded565b61217660a0830184611d16565b979650505050505050565b5f8151905061218f81611c7b565b92915050565b5f805f606084860312156121ac576121ab611c14565b5b5f6121b986828701612181565b93505060206121ca86828701612181565b92505060406121db86828701612181565b9150509250925092565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61223f602483611b74565b915061224a826121e5565b604082019050919050565b5f6020820190508181035f83015261226c81612233565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6122cd602283611b74565b91506122d882612273565b604082019050919050565b5f6020820190508181035f8301526122fa816122c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61235b602583611b74565b915061236682612301565b604082019050919050565b5f6020820190508181035f8301526123888161234f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6123e9602383611b74565b91506123f48261238f565b604082019050919050565b5f6020820190508181035f830152612416816123dd565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f612477602983611b74565b91506124828261241d565b604082019050919050565b5f6020820190508181035f8301526124a48161246b565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f61252b604983611b74565b9150612536826124ab565b606082019050919050565b5f6020820190508181035f8301526125588161251f565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e000000000000005f82015250565b5f612593601983611b74565b915061259e8261255f565b602082019050919050565b5f6020820190508181035f8301526125c081612587565b9050919050565b5f6125d182611c72565b91506125dc83611c72565b92508282019050808211156125f4576125f3611e91565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e0000000000005f82015250565b5f61262e601a83611b74565b9150612639826125fa565b602082019050919050565b5f6020820190508181035f83015261265b81612622565b9050919050565b5f61266c82611c72565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361269e5761269d611e91565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061271181611c48565b92915050565b5f6020828403121561272c5761272b611c14565b5b5f61273984828501612703565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61277481611c37565b82525050565b5f612785838361276b565b60208301905092915050565b5f602082019050919050565b5f6127a782612742565b6127b1818561274c565b93506127bc8361275c565b805f5b838110156127ec5781516127d3888261277a565b97506127de83612791565b9250506001810190506127bf565b5085935050505092915050565b5f61281361280e61280984611c18565b6120e9565b611c18565b9050919050565b5f612824826127f9565b9050919050565b5f6128358261281a565b9050919050565b6128458161282b565b82525050565b5f60a08201905061285e5f830188611d16565b61286b6020830187612113565b818103604083015261287d818661279d565b905061288c606083018561283c565b6128996080830184611d16565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6128da82611c72565b91506128e583611c72565b9250826128f5576128f46128a3565b5b828204905092915050565b5f61290a82611c72565b915061291583611c72565b925082820390508181111561292d5761292c611e91565b5b9291505056fe6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616145524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220d7cb48fcbb384db60f05efd480d0503bdbb99c3f08dc77191948a4dd826c840b64736f6c63430008160033
Deployed Bytecode
0x608060405260043610610138575f3560e01c80637d1db4a5116100aa578063bf474bed1161006e578063bf474bed146103ed578063c647b20e14610417578063c876d0b91461043f578063c9567bf914610469578063dd62ed3e14610473578063f2fde38b146104af5761013f565b80637d1db4a5146103095780638da5cb5b146103335780638f9a55c01461035d57806395d89b4114610387578063a9059cbb146103b15761013f565b8063313ce567116100fc578063313ce56714610239578063437823ec1461026357806351bc3c851461028b57806370a08231146102a1578063715018a6146102dd578063751039fc146102f35761013f565b806306fdde0314610143578063095ea7b31461016d5780630faee56f146101a957806318160ddd146101d357806323b872dd146101fd5761013f565b3661013f57005b5f80fd5b34801561014e575f80fd5b506101576104d7565b6040516101649190611bf4565b60405180910390f35b348015610178575f80fd5b50610193600480360381019061018e9190611ca5565b6104f7565b6040516101a09190611cfd565b60405180910390f35b3480156101b4575f80fd5b506101bd610514565b6040516101ca9190611d25565b60405180910390f35b3480156101de575f80fd5b506101e761051a565b6040516101f49190611d25565b60405180910390f35b348015610208575f80fd5b50610223600480360381019061021e9190611d3e565b61053c565b6040516102309190611cfd565b60405180910390f35b348015610244575f80fd5b5061024d610610565b60405161025a9190611da9565b60405180910390f35b34801561026e575f80fd5b5061028960048036038101906102849190611dc2565b610618565b005b348015610296575f80fd5b5061029f610678565b005b3480156102ac575f80fd5b506102c760048036038101906102c29190611dc2565b610710565b6040516102d49190611d25565b60405180910390f35b3480156102e8575f80fd5b506102f1610756565b005b3480156102fe575f80fd5b50610307610769565b005b348015610314575f80fd5b5061031d610822565b60405161032a9190611d25565b60405180910390f35b34801561033e575f80fd5b50610347610828565b6040516103549190611dfc565b60405180910390f35b348015610368575f80fd5b5061037161084f565b60405161037e9190611d25565b60405180910390f35b348015610392575f80fd5b5061039b610855565b6040516103a89190611bf4565b60405180910390f35b3480156103bc575f80fd5b506103d760048036038101906103d29190611ca5565b610892565b6040516103e49190611cfd565b60405180910390f35b3480156103f8575f80fd5b506104016108af565b60405161040e9190611d25565b60405180910390f35b348015610422575f80fd5b5061043d60048036038101906104389190611e15565b6108b5565b005b34801561044a575f80fd5b506104536108cf565b6040516104609190611cfd565b60405180910390f35b6104716108e1565b005b34801561047e575f80fd5b5061049960048036038101906104949190611e53565b610a79565b6040516104a69190611d25565b60405180910390f35b3480156104ba575f80fd5b506104d560048036038101906104d09190611dc2565b610afb565b005b60606040518060e0016040528060b5815260200161293460b59139905090565b5f61050a610503610b7f565b8484610b86565b6001905092915050565b60125481565b5f6012600a6105299190611fed565b620f42406105379190612037565b905090565b5f610548848484610d49565b61060584610554610b7f565b610600856040518060600160405280602881526020016129e96028913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6105b7610b7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546116b29092919063ffffffff16565b610b86565b600190509392505050565b5f6012905090565b610620611706565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166106b9610b7f565b73ffffffffffffffffffffffffffffffffffffffff16146106d8575f80fd5b5f6106e230610710565b90505f8111156106f6576106f58161178d565b5b5f4790505f81111561070c5761070b816119d4565b5b5050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61075e611706565b6107675f611a3d565b565b610771611706565b6012600a61077f9190611fed565b620f424061078d9190612037565b600f819055506012600a6107a19190611fed565b620f42406107af9190612037565b6010819055505f60065f6101000a81548160ff0219169083151502179055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6012600a6107fd9190611fed565b620f424061080b9190612037565b6040516108189190611d25565b60405180910390a1565b600f5481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b60606040518060400160405280600381526020017f6161610000000000000000000000000000000000000000000000000000000000815250905090565b5f6108a561089e610b7f565b8484610d49565b6001905092915050565b60115481565b6108bd611706565b8160098190555080600a819055505050565b60065f9054906101000a900460ff1681565b6108e9611706565b60135f9054906101000a900460ff1615610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f906120c2565b60405180910390fd5b61097730737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610b86565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71947306109b230610710565b5f806109bc610828565b426040518863ffffffff1660e01b81526004016109de96959493929190612122565b60606040518083038185885af11580156109fa573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610a1f9190612195565b5050506019600781905550601960088190555060056009819055506005600a819055506001601360026101000a81548160ff021916908315150217905550600160135f6101000a81548160ff021916908315150217905550565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610b03611706565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b73575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b6a9190611dfc565b60405180910390fd5b610b7c81611a3d565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90612255565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c59906122e3565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d3c9190611d25565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90612371565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c906123ff565b60405180910390fd5b5f8111610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e9061248d565b60405180910390fd5b5f610e70610828565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610ede5750610eae610828565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561140257610f1f6064610f11600b54600e5411610efe57600754610f02565b6009545b85611afe90919063ffffffff16565b611b1390919063ffffffff16565b905060065f9054906101000a900460ff161561109957737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610fd157507f00000000000000000000000074bdee588bb2ecb3511d6cd54689826c6c94344673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611098574360055f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c90612541565b60405180910390fd5b4360055f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b7f00000000000000000000000074bdee588bb2ecb3511d6cd54689826c6c94344673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156111345750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611187575060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561124c57600f548211156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c8906125a9565b60405180910390fd5b601054826111de85610710565b6111e891906125c7565b1115611229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122090612644565b60405180910390fd5b6064600e541161124b57600e5f81548092919061124590612662565b91905055505b5b7f00000000000000000000000074bdee588bb2ecb3511d6cd54689826c6c94344673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156112d357503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611317576113146064611306600c54600e54116112f3576008546112f7565b600a545b85611afe90919063ffffffff16565b611b1390919063ffffffff16565b90505b5f61132130610710565b9050601360019054906101000a900460ff1615801561138b57507f00000000000000000000000074bdee588bb2ecb3511d6cd54689826c6c94344673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156113a35750601360029054906101000a900460ff165b80156113b0575060115481115b80156113bf5750600d54600e54115b15611400576113e16113dc846113d784601254611b28565b611b28565b61178d565b5f47905066b1a2bc2ec500008111156113fe576113fd476119d4565b5b505b505b5f8111156115015761145a8160015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b4090919063ffffffff16565b60015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114f89190611d25565b60405180910390a35b6115518260015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b5590919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506115f46115a88284611b5590919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b4090919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6116978486611b5590919063ffffffff16565b6040516116a49190611d25565b60405180910390a350505050565b5f8383111582906116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f09190611bf4565b60405180910390fd5b5082840390509392505050565b61170e610b7f565b73ffffffffffffffffffffffffffffffffffffffff1661172c610828565b73ffffffffffffffffffffffffffffffffffffffff161461178b5761174f610b7f565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016117829190611dfc565b60405180910390fd5b565b6001601360016101000a81548160ff0219169083151502179055505f600267ffffffffffffffff8111156117c4576117c36126a9565b5b6040519080825280602002602001820160405280156117f25781602001602082028036833780820191505090505b50905030815f81518110611809576118086126d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118c49190612717565b816001815181106118d8576118d76126d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f84600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161198995949392919061284b565b5f604051808303815f87803b1580156119a0575f80fd5b505af11580156119b2573d5f803e3d5ffd5b50505050505f601360016101000a81548160ff02191690831515021790555050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611a39573d5f803e3d5ffd5b5050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8183611b0b9190612037565b905092915050565b5f8183611b2091906128d0565b905092915050565b5f818311611b365782611b38565b815b905092915050565b5f8183611b4d91906125c7565b905092915050565b5f8183611b629190612900565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611ba1578082015181840152602081019050611b86565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611bc682611b6a565b611bd08185611b74565b9350611be0818560208601611b84565b611be981611bac565b840191505092915050565b5f6020820190508181035f830152611c0c8184611bbc565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c4182611c18565b9050919050565b611c5181611c37565b8114611c5b575f80fd5b50565b5f81359050611c6c81611c48565b92915050565b5f819050919050565b611c8481611c72565b8114611c8e575f80fd5b50565b5f81359050611c9f81611c7b565b92915050565b5f8060408385031215611cbb57611cba611c14565b5b5f611cc885828601611c5e565b9250506020611cd985828601611c91565b9150509250929050565b5f8115159050919050565b611cf781611ce3565b82525050565b5f602082019050611d105f830184611cee565b92915050565b611d1f81611c72565b82525050565b5f602082019050611d385f830184611d16565b92915050565b5f805f60608486031215611d5557611d54611c14565b5b5f611d6286828701611c5e565b9350506020611d7386828701611c5e565b9250506040611d8486828701611c91565b9150509250925092565b5f60ff82169050919050565b611da381611d8e565b82525050565b5f602082019050611dbc5f830184611d9a565b92915050565b5f60208284031215611dd757611dd6611c14565b5b5f611de484828501611c5e565b91505092915050565b611df681611c37565b82525050565b5f602082019050611e0f5f830184611ded565b92915050565b5f8060408385031215611e2b57611e2a611c14565b5b5f611e3885828601611c91565b9250506020611e4985828601611c91565b9150509250929050565b5f8060408385031215611e6957611e68611c14565b5b5f611e7685828601611c5e565b9250506020611e8785828601611c5e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115611f1357808604811115611eef57611eee611e91565b5b6001851615611efe5780820291505b8081029050611f0c85611ebe565b9450611ed3565b94509492505050565b5f82611f2b5760019050611fe6565b81611f38575f9050611fe6565b8160018114611f4e5760028114611f5857611f87565b6001915050611fe6565b60ff841115611f6a57611f69611e91565b5b8360020a915084821115611f8157611f80611e91565b5b50611fe6565b5060208310610133831016604e8410600b8410161715611fbc5782820a905083811115611fb757611fb6611e91565b5b611fe6565b611fc98484846001611eca565b92509050818404811115611fe057611fdf611e91565b5b81810290505b9392505050565b5f611ff782611c72565b915061200283611d8e565b925061202f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611f1c565b905092915050565b5f61204182611c72565b915061204c83611c72565b925082820261205a81611c72565b9150828204841483151761207157612070611e91565b5b5092915050565b7f74726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f6120ac601783611b74565b91506120b782612078565b602082019050919050565b5f6020820190508181035f8301526120d9816120a0565b9050919050565b5f819050919050565b5f819050919050565b5f61210c612107612102846120e0565b6120e9565b611c72565b9050919050565b61211c816120f2565b82525050565b5f60c0820190506121355f830189611ded565b6121426020830188611d16565b61214f6040830187612113565b61215c6060830186612113565b6121696080830185611ded565b61217660a0830184611d16565b979650505050505050565b5f8151905061218f81611c7b565b92915050565b5f805f606084860312156121ac576121ab611c14565b5b5f6121b986828701612181565b93505060206121ca86828701612181565b92505060406121db86828701612181565b9150509250925092565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61223f602483611b74565b915061224a826121e5565b604082019050919050565b5f6020820190508181035f83015261226c81612233565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6122cd602283611b74565b91506122d882612273565b604082019050919050565b5f6020820190508181035f8301526122fa816122c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61235b602583611b74565b915061236682612301565b604082019050919050565b5f6020820190508181035f8301526123888161234f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6123e9602383611b74565b91506123f48261238f565b604082019050919050565b5f6020820190508181035f830152612416816123dd565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f612477602983611b74565b91506124828261241d565b604082019050919050565b5f6020820190508181035f8301526124a48161246b565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f61252b604983611b74565b9150612536826124ab565b606082019050919050565b5f6020820190508181035f8301526125588161251f565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e000000000000005f82015250565b5f612593601983611b74565b915061259e8261255f565b602082019050919050565b5f6020820190508181035f8301526125c081612587565b9050919050565b5f6125d182611c72565b91506125dc83611c72565b92508282019050808211156125f4576125f3611e91565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e0000000000005f82015250565b5f61262e601a83611b74565b9150612639826125fa565b602082019050919050565b5f6020820190508181035f83015261265b81612622565b9050919050565b5f61266c82611c72565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361269e5761269d611e91565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061271181611c48565b92915050565b5f6020828403121561272c5761272b611c14565b5b5f61273984828501612703565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61277481611c37565b82525050565b5f612785838361276b565b60208301905092915050565b5f602082019050919050565b5f6127a782612742565b6127b1818561274c565b93506127bc8361275c565b805f5b838110156127ec5781516127d3888261277a565b97506127de83612791565b9250506001810190506127bf565b5085935050505092915050565b5f61281361280e61280984611c18565b6120e9565b611c18565b9050919050565b5f612824826127f9565b9050919050565b5f6128358261281a565b9050919050565b6128458161282b565b82525050565b5f60a08201905061285e5f830188611d16565b61286b6020830187612113565b818103604083015261287d818661279d565b905061288c606083018561283c565b6128996080830184611d16565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6128da82611c72565b91506128e583611c72565b9250826128f5576128f46128a3565b5b828204905092915050565b5f61290a82611c72565b915061291583611c72565b925082820390508181111561292d5761292c611e91565b5b9291505056fe6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616145524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220d7cb48fcbb384db60f05efd480d0503bdbb99c3f08dc77191948a4dd826c840b64736f6c63430008160033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.