Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
10,000,000,000 DXAI
Holders
130
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
25,548,715.72139801215512315 DXAIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DEXLabAI
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import "./ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; /** DEXLab AI - DXAI ░▒▓███████▓▒░░▒▓████████▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ ░▒▓██████▓▒░░▒▓███████▓▒░ ░▒▓██████▓▒░░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓██████▓▒░ ░▒▓██████▓▒░░▒▓█▓▒░ ░▒▓████████▓▒░▒▓███████▓▒░ ░▒▓████████▓▒░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ ░▒▓███████▓▒░░▒▓████████▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓████████▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓███████▓▒░ ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░ * https://dexlab.ai/ * https://x.com/dexlabai * https://t.me/dexlabai * * @title DEXLab AI Token Contract * @dev Implements ERC20 functionality with sell tax. */ contract DEXLabAI is ERC20, Ownable { // Uniswap Router and Pair addresses for liquidity and handling tax. mapping(address => bool) public isPairAddress; IUniswapV2Router02 public uniswapRouter; // Uniswap V2 Router address on Ethereum Mainnet address private constant UNISWAP_V2_ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // Token distribution uint256 private constant TOTAL_SUPPLY = 10_000_000_000 * 10 ** 18; // 10 billion tokens // Wallet allocations uint256 private constant TEAM_SUPPLY = (TOTAL_SUPPLY * 8) / 100; // 8% uint256 private constant CEX_SUPPLY = (TOTAL_SUPPLY * 8) / 100; // 8% uint256 private constant AIRDROP_SUPPLY = (TOTAL_SUPPLY * 3) / 100; // 3% uint256 private constant OLD_HOLDERS_SUPPLY = (TOTAL_SUPPLY * 4) / 100; // 4% // Team wallets (2 x 4%) address private constant TEAM_WALLET_1 = 0xCd6323E2AdD9823caDF0c3747FB0b93105D13ebe; address private constant TEAM_WALLET_2 = 0x606dA4091990bD450b0ace877F4124E3436b0B53; // CEX wallets (2 x 4%) address private constant CEX_WALLET_1 = 0x2Ff11DE5bF792D2E141A5568B8693a7989CB2f8A; address private constant CEX_WALLET_2 = 0xbf5EB23Ba9F3e1391bE5df95eED8CE615E3b2519; // Airdrop wallet address private constant AIRDROP_WALLET = 0xC2f8DFF853081892809E4cF5c1E88c3bade1f4a2; // Old holders wallet address private constant OLD_HOLDERS_WALLET = 0xE21431CE0cA911Ad92d67b4a7112bB1dF86873aE; // Tax wallets address private constant MARKETING_WALLET = 0x72bF6F8FF8c69b09CEe7b3F38Ebe823893e673F2; address private constant DEVELOPMENT_WALLET = 0x474A736c40A682c620d928FbBAe605E45A2ccB0C; // Fee rate (4% sell tax) uint256 private constant TAX_RATE = 4; // Events event TradingStarted(address indexed pairAddress); event SellTaxApplied(address indexed sender, uint256 amount, uint256 sellTaxAmount); /** * @dev Constructor that sets the token name and symbol, mints the total supply, * and allocates tokens to specified wallets. */ constructor() ERC20("DEXLab AI", "DXAI") Ownable(msg.sender) { // Mint total supply to the contract owner _mint(msg.sender, TOTAL_SUPPLY); // Transfer allocations to respective wallets // Team wallets (2 x 4%) uint256 teamWalletAllocation = TEAM_SUPPLY / 2; _transfer(msg.sender, TEAM_WALLET_1, teamWalletAllocation); _transfer(msg.sender, TEAM_WALLET_2, teamWalletAllocation); // CEX wallets (2 x 4%) uint256 cexWalletAllocation = CEX_SUPPLY / 2; _transfer(msg.sender, CEX_WALLET_1, cexWalletAllocation); _transfer(msg.sender, CEX_WALLET_2, cexWalletAllocation); // Airdrop wallet _transfer(msg.sender, AIRDROP_WALLET, AIRDROP_SUPPLY); // Old holders wallet _transfer(msg.sender, OLD_HOLDERS_WALLET, OLD_HOLDERS_SUPPLY); } /** * @dev Start trading by creating a pair on Uniswap V2. */ function startTrading() external onlyOwner { uniswapRouter = IUniswapV2Router02(UNISWAP_V2_ROUTER); address pair = IUniswapV2Factory(uniswapRouter.factory()).getPair(address(this), uniswapRouter.WETH()); // Create a pair if it doesn't exist if (pair == address(0)) { pair = IUniswapV2Factory(uniswapRouter.factory()).createPair(address(this), uniswapRouter.WETH()); isPairAddress[pair] = true; emit TradingStarted(pair); } } /** * @dev Overridden _transfer function that applies a tax on sell transactions. * @param sender Address sending the tokens. * @param recipient Address receiving the tokens. * @param amount Amount of tokens to transfer. */ function _transfer(address sender, address recipient, uint256 amount) internal override { // Apply sell tax if applicable if (_shouldApplySellTax(sender, recipient)) { uint256 sellTaxAmount = _applySellTax(sender, amount); emit SellTaxApplied(sender, amount, sellTaxAmount); amount -= sellTaxAmount; } // Transfer tokens super._transfer(sender, recipient, amount); } /** * @dev Checks if sell tax should be applied for a transaction. * @param sender Address sending the tokens. * @param recipient Address receiving the tokens. * @return True if sell tax is applicable, false otherwise. */ function _shouldApplySellTax(address sender, address recipient) private view returns (bool) { return sender != owner() && recipient != owner() && sender != MARKETING_WALLET && recipient != MARKETING_WALLET && sender != DEVELOPMENT_WALLET && recipient != DEVELOPMENT_WALLET && sender != address(this) && recipient != address(this) && isPairAddress[recipient]; } /** * @dev Applies sell tax to a transaction. * @param sender Address sending the tokens. * @param amount Amount of tokens to transfer. * @return The total tax amount deducted. */ function _applySellTax(address sender, uint256 amount) private returns (uint256) { // Calculate tax amount and transfer to contract uint256 totalTaxAmount = (amount * TAX_RATE) / 100; super._transfer(sender, address(this), totalTaxAmount); // Swap tokens for ETH and calculate tax amount in ETH uint256 contractBalanceBefore = address(this).balance; _swapTokensForETH(totalTaxAmount); uint256 contractBalanceAfter = address(this).balance; uint256 taxAmountEth = contractBalanceAfter - contractBalanceBefore; // Split ETH tax amount between Marketing and Development wallets uint256 halfTaxEth = taxAmountEth / 2; // Transfer ETH to Marketing wallet payable(MARKETING_WALLET).transfer(halfTaxEth); // Transfer remaining ETH to Development wallet payable(DEVELOPMENT_WALLET).transfer(taxAmountEth - halfTaxEth); return totalTaxAmount; } /** * @dev Swaps tokens for ETH via Uniswap V2 Router. * @param tokenAmount Amount of tokens to swap. */ function _swapTokensForETH(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapRouter.WETH(); _approve(address(this), UNISWAP_V2_ROUTER, tokenAmount); // Approve tokens for swap uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp); } // Receive function to accept ETH from Uniswap swaps receive() external payable {} // Fallback function fallback() external payable {} }
// 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated 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.1) (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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
// SPDX-License-Identifier: MIT /** * @dev This is a custom modification of the OpenZeppelin ERC20 implementation * Last updated v5.0.0 (token/ERC20/ERC20.sol) * * This contract has been customized to allow changing transfer logic, * enabling developers to implement custom token mechanics such as fees, slashing, * or other types of behavior during token transfers. */ pragma solidity ^0.8.24; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/interfaces/draft-IERC6093.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}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal virtual { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
{ "evmVersion": "paris", "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
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellTaxAmount","type":"uint256"}],"name":"SellTaxApplied","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pairAddress","type":"address"}],"name":"TradingStarted","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"},{"stateMutability":"payable","type":"fallback"},{"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isPairAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b50336040518060400160405280600981526020017f4445584c616220414900000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f44584149000000000000000000000000000000000000000000000000000000008152508160039081620000909190620012f2565b508060049081620000a29190620012f2565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200011a5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200011191906200141e565b60405180910390fd5b6200012b816200030260201b60201c565b506200014a336b204fce5e3e25026110000000620003c860201b60201c565b60006002606460086b204fce5e3e250261100000006200016b91906200146a565b620001779190620014e4565b620001839190620014e4565b9050620001ac3373cd6323e2add9823cadf0c3747fb0b93105d13ebe836200045560201b60201c565b620001d33373606da4091990bd450b0ace877f4124e3436b0b53836200045560201b60201c565b60006002606460086b204fce5e3e25026110000000620001f491906200146a565b620002009190620014e4565b6200020c9190620014e4565b90506200023533732ff11de5bf792d2e141a5568b8693a7989cb2f8a836200045560201b60201c565b6200025c3373bf5eb23ba9f3e1391be5df95eed8ce615e3b2519836200045560201b60201c565b620002ab3373c2f8dff853081892809e4cf5c1e88c3bade1f4a2606460036b204fce5e3e250261100000006200029391906200146a565b6200029f9190620014e4565b6200045560201b60201c565b620002fa3373e21431ce0ca911ad92d67b4a7112bb1df86873ae606460046b204fce5e3e25026110000000620002e291906200146a565b620002ee9190620014e4565b6200045560201b60201c565b505062001836565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200043d5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200043491906200141e565b60405180910390fd5b6200045160008383620004ff60201b60201c565b5050565b6200046783836200072f60201b60201c565b15620004e7576000620004818483620009bc60201b60201c565b90508373ffffffffffffffffffffffffffffffffffffffff167fba00994a69a930a6717cfd1555f37b65d04b0de564b33675b960755ee62827208383604051620004cd9291906200152d565b60405180910390a28082620004e391906200155a565b9150505b620004fa83838362000b0460201b60201c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200055557806002600082825462000548919062001595565b925050819055506200062b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620005e4578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620005db93929190620015d0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006765780600260008282540392505081905550620006c3565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200072291906200160d565b60405180910390a3505050565b60006200074162000c0660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015620007b857506200078862000c0660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156200080557507372bf6f8ff8c69b09cee7b3f38ebe823893e673f273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156200085257507372bf6f8ff8c69b09cee7b3f38ebe823893e673f273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156200089f575073474a736c40a682c620d928fbbae605e45a2ccb0c73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015620008ec575073474a736c40a682c620d928fbbae605e45a2ccb0c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156200092557503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156200095e57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015620009b45750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b905092915050565b6000806064600484620009d091906200146a565b620009dc9190620014e4565b9050620009f184308362000b0460201b60201c565b600047905062000a078262000c3060201b60201c565b60004790506000828262000a1c91906200155a565b9050600060028262000a2f9190620014e4565b90507372bf6f8ff8c69b09cee7b3f38ebe823893e673f273ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801562000a8c573d6000803e3d6000fd5b5073474a736c40a682c620d928fbbae605e45a2ccb0c73ffffffffffffffffffffffffffffffffffffffff166108fc828462000ac991906200155a565b9081150290604051600060405180830381858888f1935050505015801562000af5573d6000803e3d6000fd5b50849550505050505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b795760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040162000b7091906200141e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000bee5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000be591906200141e565b60405180910390fd5b62000c01838383620004ff60201b60201c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600267ffffffffffffffff81111562000c505762000c4f62001083565b5b60405190808252806020026020018201604052801562000c7f5781602001602082028036833780820191505090505b509050308160008151811062000c9a5762000c996200162a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000d42573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d6891906200168f565b8160018151811062000d7f5762000d7e6200162a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505062000de030737a250d5630b4cf539739df2c5dacb4c659f2488d8462000e7e60201b60201c565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040162000e46959493929190620017d2565b600060405180830381600087803b15801562000e6157600080fd5b505af115801562000e76573d6000803e3d6000fd5b505050505050565b62000e93838383600162000e9860201b60201c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000f0d5760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162000f0491906200141e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000f825760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162000f7991906200141e565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801562001072578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516200106991906200160d565b60405180910390a35b50505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620010fa57607f821691505b60208210810362001110576200110f620010b2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200117a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200113b565b6200118686836200113b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620011d3620011cd620011c7846200119e565b620011a8565b6200119e565b9050919050565b6000819050919050565b620011ef83620011b2565b62001207620011fe82620011da565b84845462001148565b825550505050565b600090565b6200121e6200120f565b6200122b818484620011e4565b505050565b5b8181101562001253576200124760008262001214565b60018101905062001231565b5050565b601f821115620012a2576200126c8162001116565b62001277846200112b565b8101602085101562001287578190505b6200129f62001296856200112b565b83018262001230565b50505b505050565b600082821c905092915050565b6000620012c760001984600802620012a7565b1980831691505092915050565b6000620012e28383620012b4565b9150826002028217905092915050565b620012fd8262001078565b67ffffffffffffffff81111562001319576200131862001083565b5b620013258254620010e1565b6200133282828562001257565b600060209050601f8311600181146200136a576000841562001355578287015190505b620013618582620012d4565b865550620013d1565b601f1984166200137a8662001116565b60005b82811015620013a4578489015182556001820191506020850194506020810190506200137d565b86831015620013c45784890151620013c0601f891682620012b4565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200140682620013d9565b9050919050565b6200141881620013f9565b82525050565b60006020820190506200143560008301846200140d565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062001477826200119e565b915062001484836200119e565b925082820262001494816200119e565b91508282048414831517620014ae57620014ad6200143b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620014f1826200119e565b9150620014fe836200119e565b925082620015115762001510620014b5565b5b828204905092915050565b62001527816200119e565b82525050565b60006040820190506200154460008301856200151c565b6200155360208301846200151c565b9392505050565b600062001567826200119e565b915062001574836200119e565b92508282039050818111156200158f576200158e6200143b565b5b92915050565b6000620015a2826200119e565b9150620015af836200119e565b9250828201905080821115620015ca57620015c96200143b565b5b92915050565b6000606082019050620015e760008301866200140d565b620015f660208301856200151c565b6200160560408301846200151c565b949350505050565b60006020820190506200162460008301846200151c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6200166981620013f9565b81146200167557600080fd5b50565b60008151905062001689816200165e565b92915050565b600060208284031215620016a857620016a762001659565b5b6000620016b88482850162001678565b91505092915050565b6000819050919050565b6000620016ec620016e6620016e084620016c1565b620011a8565b6200119e565b9050919050565b620016fe81620016cb565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6200173b81620013f9565b82525050565b60006200174f838362001730565b60208301905092915050565b6000602082019050919050565b6000620017758262001704565b6200178181856200170f565b93506200178e8362001720565b8060005b83811015620017c5578151620017a9888262001741565b9750620017b6836200175b565b92505060018101905062001792565b5085935050505092915050565b600060a082019050620017e960008301886200151c565b620017f86020830187620016f3565b81810360408301526200180c818662001768565b90506200181d60608301856200140d565b6200182c60808301846200151c565b9695505050505050565b6120d080620018466000396000f3fe6080604052600436106100ec5760003560e01c8063715018a61161008a578063a9059cbb11610059578063a9059cbb146102dc578063dd62ed3e14610319578063f2fde38b14610356578063f55738751461037f576100f3565b8063715018a614610244578063735de9f71461025b5780638da5cb5b1461028657806395d89b41146102b1576100f3565b806323b872dd116100c657806323b872dd14610188578063293230b8146101c5578063313ce567146101dc57806370a0823114610207576100f3565b806306fdde03146100f5578063095ea7b31461012057806318160ddd1461015d576100f3565b366100f357005b005b34801561010157600080fd5b5061010a6103bc565b604051610117919061198f565b60405180910390f35b34801561012c57600080fd5b5061014760048036038101906101429190611a4a565b61044e565b6040516101549190611aa5565b60405180910390f35b34801561016957600080fd5b50610172610471565b60405161017f9190611acf565b60405180910390f35b34801561019457600080fd5b506101af60048036038101906101aa9190611aea565b61047b565b6040516101bc9190611aa5565b60405180910390f35b3480156101d157600080fd5b506101da6104aa565b005b3480156101e857600080fd5b506101f161091a565b6040516101fe9190611b59565b60405180910390f35b34801561021357600080fd5b5061022e60048036038101906102299190611b74565b610923565b60405161023b9190611acf565b60405180910390f35b34801561025057600080fd5b5061025961096b565b005b34801561026757600080fd5b5061027061097f565b60405161027d9190611c00565b60405180910390f35b34801561029257600080fd5b5061029b6109a5565b6040516102a89190611c2a565b60405180910390f35b3480156102bd57600080fd5b506102c66109cf565b6040516102d3919061198f565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190611a4a565b610a61565b6040516103109190611aa5565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190611c45565b610a84565b60405161034d9190611acf565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190611b74565b610b0b565b005b34801561038b57600080fd5b506103a660048036038101906103a19190611b74565b610b91565b6040516103b39190611aa5565b60405180910390f35b6060600380546103cb90611cb4565b80601f01602080910402602001604051908101604052809291908181526020018280546103f790611cb4565b80156104445780601f1061041957610100808354040283529160200191610444565b820191906000526020600020905b81548152906001019060200180831161042757829003601f168201915b5050505050905090565b600080610459610bb1565b9050610466818585610bb9565b600191505092915050565b6000600254905090565b600080610486610bb1565b9050610493858285610bcb565b61049e858585610c5f565b60019150509392505050565b6104b2610cec565b737a250d5630b4cf539739df2c5dacb4c659f2488d600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610576573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061059a9190611cfa565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610623573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106479190611cfa565b6040518363ffffffff1660e01b8152600401610664929190611d27565b602060405180830381865afa158015610681573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a59190611cfa565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361091757600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610748573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061076c9190611cfa565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108199190611cfa565b6040518363ffffffff1660e01b8152600401610836929190611d27565b6020604051808303816000875af1158015610855573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108799190611cfa565b90506001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167ff94187bc850618fd4e1467909e65cd9217df94f91dff3e97230e271041c27ed160405160405180910390a25b50565b60006012905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610973610cec565b61097d6000610d73565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109de90611cb4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90611cb4565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b600080610a6c610bb1565b9050610a79818585610c5f565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b13610cec565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b855760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b7c9190611c2a565b60405180910390fd5b610b8e81610d73565b50565b60066020528060005260406000206000915054906101000a900460ff1681565b600033905090565b610bc68383836001610e39565b505050565b6000610bd78484610a84565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c595781811015610c49578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c4093929190611d50565b60405180910390fd5b610c5884848484036000610e39565b5b50505050565b610c698383611010565b15610cdc576000610c7a8483611285565b90508373ffffffffffffffffffffffffffffffffffffffff167fba00994a69a930a6717cfd1555f37b65d04b0de564b33675b960755ee62827208383604051610cc4929190611d87565b60405180910390a28082610cd89190611ddf565b9150505b610ce78383836113b1565b505050565b610cf4610bb1565b73ffffffffffffffffffffffffffffffffffffffff16610d126109a5565b73ffffffffffffffffffffffffffffffffffffffff1614610d7157610d35610bb1565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610d689190611c2a565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610eab5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ea29190611c2a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f1d5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f149190611c2a565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801561100a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110019190611acf565b60405180910390a35b50505050565b600061101a6109a5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561108857506110586109a5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156110d457507372bf6f8ff8c69b09cee7b3f38ebe823893e673f273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561112057507372bf6f8ff8c69b09cee7b3f38ebe823893e673f273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561116c575073474a736c40a682c620d928fbbae605e45a2ccb0c73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156111b8575073474a736c40a682c620d928fbbae605e45a2ccb0c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156111f057503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561122857503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561127d5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b905092915050565b60008060646004846112979190611e13565b6112a19190611e84565b90506112ae8430836113b1565b60004790506112bc826114a5565b6000479050600082826112cf9190611ddf565b905060006002826112e09190611e84565b90507372bf6f8ff8c69b09cee7b3f38ebe823893e673f273ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561133c573d6000803e3d6000fd5b5073474a736c40a682c620d928fbbae605e45a2ccb0c73ffffffffffffffffffffffffffffffffffffffff166108fc82846113779190611ddf565b9081150290604051600060405180830381858888f193505050501580156113a2573d6000803e3d6000fd5b50849550505050505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114235760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161141a9190611c2a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114955760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161148c9190611c2a565b60405180910390fd5b6114a08383836116da565b505050565b6000600267ffffffffffffffff8111156114c2576114c1611eb5565b5b6040519080825280602002602001820160405280156114f05781602001602082028036833780820191505090505b509050308160008151811061150857611507611ee4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d39190611cfa565b816001815181106115e7576115e6611ee4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061164030737a250d5630b4cf539739df2c5dacb4c659f2488d84610bb9565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016116a495949392919061200c565b600060405180830381600087803b1580156116be57600080fd5b505af11580156116d2573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361172c5780600260008282546117209190612066565b925050819055506117ff565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117b8578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016117af93929190611d50565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118485780600260008282540392505081905550611895565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118f29190611acf565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561193957808201518184015260208101905061191e565b60008484015250505050565b6000601f19601f8301169050919050565b6000611961826118ff565b61196b818561190a565b935061197b81856020860161191b565b61198481611945565b840191505092915050565b600060208201905081810360008301526119a98184611956565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119e1826119b6565b9050919050565b6119f1816119d6565b81146119fc57600080fd5b50565b600081359050611a0e816119e8565b92915050565b6000819050919050565b611a2781611a14565b8114611a3257600080fd5b50565b600081359050611a4481611a1e565b92915050565b60008060408385031215611a6157611a606119b1565b5b6000611a6f858286016119ff565b9250506020611a8085828601611a35565b9150509250929050565b60008115159050919050565b611a9f81611a8a565b82525050565b6000602082019050611aba6000830184611a96565b92915050565b611ac981611a14565b82525050565b6000602082019050611ae46000830184611ac0565b92915050565b600080600060608486031215611b0357611b026119b1565b5b6000611b11868287016119ff565b9350506020611b22868287016119ff565b9250506040611b3386828701611a35565b9150509250925092565b600060ff82169050919050565b611b5381611b3d565b82525050565b6000602082019050611b6e6000830184611b4a565b92915050565b600060208284031215611b8a57611b896119b1565b5b6000611b98848285016119ff565b91505092915050565b6000819050919050565b6000611bc6611bc1611bbc846119b6565b611ba1565b6119b6565b9050919050565b6000611bd882611bab565b9050919050565b6000611bea82611bcd565b9050919050565b611bfa81611bdf565b82525050565b6000602082019050611c156000830184611bf1565b92915050565b611c24816119d6565b82525050565b6000602082019050611c3f6000830184611c1b565b92915050565b60008060408385031215611c5c57611c5b6119b1565b5b6000611c6a858286016119ff565b9250506020611c7b858286016119ff565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ccc57607f821691505b602082108103611cdf57611cde611c85565b5b50919050565b600081519050611cf4816119e8565b92915050565b600060208284031215611d1057611d0f6119b1565b5b6000611d1e84828501611ce5565b91505092915050565b6000604082019050611d3c6000830185611c1b565b611d496020830184611c1b565b9392505050565b6000606082019050611d656000830186611c1b565b611d726020830185611ac0565b611d7f6040830184611ac0565b949350505050565b6000604082019050611d9c6000830185611ac0565b611da96020830184611ac0565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611dea82611a14565b9150611df583611a14565b9250828203905081811115611e0d57611e0c611db0565b5b92915050565b6000611e1e82611a14565b9150611e2983611a14565b9250828202611e3781611a14565b91508282048414831517611e4e57611e4d611db0565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611e8f82611a14565b9150611e9a83611a14565b925082611eaa57611ea9611e55565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000611f38611f33611f2e84611f13565b611ba1565b611a14565b9050919050565b611f4881611f1d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b611f83816119d6565b82525050565b6000611f958383611f7a565b60208301905092915050565b6000602082019050919050565b6000611fb982611f4e565b611fc38185611f59565b9350611fce83611f6a565b8060005b83811015611fff578151611fe68882611f89565b9750611ff183611fa1565b925050600181019050611fd2565b5085935050505092915050565b600060a0820190506120216000830188611ac0565b61202e6020830187611f3f565b81810360408301526120408186611fae565b905061204f6060830185611c1b565b61205c6080830184611ac0565b9695505050505050565b600061207182611a14565b915061207c83611a14565b925082820190508082111561209457612093611db0565b5b9291505056fea264697066735822122087e7d45344fe347f7b6e500a43ac06eb135983e83feeef971312b056023f5b0364736f6c63430008180033
Deployed Bytecode
0x6080604052600436106100ec5760003560e01c8063715018a61161008a578063a9059cbb11610059578063a9059cbb146102dc578063dd62ed3e14610319578063f2fde38b14610356578063f55738751461037f576100f3565b8063715018a614610244578063735de9f71461025b5780638da5cb5b1461028657806395d89b41146102b1576100f3565b806323b872dd116100c657806323b872dd14610188578063293230b8146101c5578063313ce567146101dc57806370a0823114610207576100f3565b806306fdde03146100f5578063095ea7b31461012057806318160ddd1461015d576100f3565b366100f357005b005b34801561010157600080fd5b5061010a6103bc565b604051610117919061198f565b60405180910390f35b34801561012c57600080fd5b5061014760048036038101906101429190611a4a565b61044e565b6040516101549190611aa5565b60405180910390f35b34801561016957600080fd5b50610172610471565b60405161017f9190611acf565b60405180910390f35b34801561019457600080fd5b506101af60048036038101906101aa9190611aea565b61047b565b6040516101bc9190611aa5565b60405180910390f35b3480156101d157600080fd5b506101da6104aa565b005b3480156101e857600080fd5b506101f161091a565b6040516101fe9190611b59565b60405180910390f35b34801561021357600080fd5b5061022e60048036038101906102299190611b74565b610923565b60405161023b9190611acf565b60405180910390f35b34801561025057600080fd5b5061025961096b565b005b34801561026757600080fd5b5061027061097f565b60405161027d9190611c00565b60405180910390f35b34801561029257600080fd5b5061029b6109a5565b6040516102a89190611c2a565b60405180910390f35b3480156102bd57600080fd5b506102c66109cf565b6040516102d3919061198f565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190611a4a565b610a61565b6040516103109190611aa5565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190611c45565b610a84565b60405161034d9190611acf565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190611b74565b610b0b565b005b34801561038b57600080fd5b506103a660048036038101906103a19190611b74565b610b91565b6040516103b39190611aa5565b60405180910390f35b6060600380546103cb90611cb4565b80601f01602080910402602001604051908101604052809291908181526020018280546103f790611cb4565b80156104445780601f1061041957610100808354040283529160200191610444565b820191906000526020600020905b81548152906001019060200180831161042757829003601f168201915b5050505050905090565b600080610459610bb1565b9050610466818585610bb9565b600191505092915050565b6000600254905090565b600080610486610bb1565b9050610493858285610bcb565b61049e858585610c5f565b60019150509392505050565b6104b2610cec565b737a250d5630b4cf539739df2c5dacb4c659f2488d600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610576573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061059a9190611cfa565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610623573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106479190611cfa565b6040518363ffffffff1660e01b8152600401610664929190611d27565b602060405180830381865afa158015610681573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a59190611cfa565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361091757600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610748573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061076c9190611cfa565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108199190611cfa565b6040518363ffffffff1660e01b8152600401610836929190611d27565b6020604051808303816000875af1158015610855573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108799190611cfa565b90506001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167ff94187bc850618fd4e1467909e65cd9217df94f91dff3e97230e271041c27ed160405160405180910390a25b50565b60006012905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610973610cec565b61097d6000610d73565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109de90611cb4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90611cb4565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b600080610a6c610bb1565b9050610a79818585610c5f565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b13610cec565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b855760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b7c9190611c2a565b60405180910390fd5b610b8e81610d73565b50565b60066020528060005260406000206000915054906101000a900460ff1681565b600033905090565b610bc68383836001610e39565b505050565b6000610bd78484610a84565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c595781811015610c49578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c4093929190611d50565b60405180910390fd5b610c5884848484036000610e39565b5b50505050565b610c698383611010565b15610cdc576000610c7a8483611285565b90508373ffffffffffffffffffffffffffffffffffffffff167fba00994a69a930a6717cfd1555f37b65d04b0de564b33675b960755ee62827208383604051610cc4929190611d87565b60405180910390a28082610cd89190611ddf565b9150505b610ce78383836113b1565b505050565b610cf4610bb1565b73ffffffffffffffffffffffffffffffffffffffff16610d126109a5565b73ffffffffffffffffffffffffffffffffffffffff1614610d7157610d35610bb1565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610d689190611c2a565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610eab5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ea29190611c2a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f1d5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f149190611c2a565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801561100a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110019190611acf565b60405180910390a35b50505050565b600061101a6109a5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561108857506110586109a5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156110d457507372bf6f8ff8c69b09cee7b3f38ebe823893e673f273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561112057507372bf6f8ff8c69b09cee7b3f38ebe823893e673f273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561116c575073474a736c40a682c620d928fbbae605e45a2ccb0c73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156111b8575073474a736c40a682c620d928fbbae605e45a2ccb0c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156111f057503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561122857503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561127d5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b905092915050565b60008060646004846112979190611e13565b6112a19190611e84565b90506112ae8430836113b1565b60004790506112bc826114a5565b6000479050600082826112cf9190611ddf565b905060006002826112e09190611e84565b90507372bf6f8ff8c69b09cee7b3f38ebe823893e673f273ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561133c573d6000803e3d6000fd5b5073474a736c40a682c620d928fbbae605e45a2ccb0c73ffffffffffffffffffffffffffffffffffffffff166108fc82846113779190611ddf565b9081150290604051600060405180830381858888f193505050501580156113a2573d6000803e3d6000fd5b50849550505050505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114235760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161141a9190611c2a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114955760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161148c9190611c2a565b60405180910390fd5b6114a08383836116da565b505050565b6000600267ffffffffffffffff8111156114c2576114c1611eb5565b5b6040519080825280602002602001820160405280156114f05781602001602082028036833780820191505090505b509050308160008151811061150857611507611ee4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d39190611cfa565b816001815181106115e7576115e6611ee4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061164030737a250d5630b4cf539739df2c5dacb4c659f2488d84610bb9565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016116a495949392919061200c565b600060405180830381600087803b1580156116be57600080fd5b505af11580156116d2573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361172c5780600260008282546117209190612066565b925050819055506117ff565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117b8578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016117af93929190611d50565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118485780600260008282540392505081905550611895565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118f29190611acf565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561193957808201518184015260208101905061191e565b60008484015250505050565b6000601f19601f8301169050919050565b6000611961826118ff565b61196b818561190a565b935061197b81856020860161191b565b61198481611945565b840191505092915050565b600060208201905081810360008301526119a98184611956565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119e1826119b6565b9050919050565b6119f1816119d6565b81146119fc57600080fd5b50565b600081359050611a0e816119e8565b92915050565b6000819050919050565b611a2781611a14565b8114611a3257600080fd5b50565b600081359050611a4481611a1e565b92915050565b60008060408385031215611a6157611a606119b1565b5b6000611a6f858286016119ff565b9250506020611a8085828601611a35565b9150509250929050565b60008115159050919050565b611a9f81611a8a565b82525050565b6000602082019050611aba6000830184611a96565b92915050565b611ac981611a14565b82525050565b6000602082019050611ae46000830184611ac0565b92915050565b600080600060608486031215611b0357611b026119b1565b5b6000611b11868287016119ff565b9350506020611b22868287016119ff565b9250506040611b3386828701611a35565b9150509250925092565b600060ff82169050919050565b611b5381611b3d565b82525050565b6000602082019050611b6e6000830184611b4a565b92915050565b600060208284031215611b8a57611b896119b1565b5b6000611b98848285016119ff565b91505092915050565b6000819050919050565b6000611bc6611bc1611bbc846119b6565b611ba1565b6119b6565b9050919050565b6000611bd882611bab565b9050919050565b6000611bea82611bcd565b9050919050565b611bfa81611bdf565b82525050565b6000602082019050611c156000830184611bf1565b92915050565b611c24816119d6565b82525050565b6000602082019050611c3f6000830184611c1b565b92915050565b60008060408385031215611c5c57611c5b6119b1565b5b6000611c6a858286016119ff565b9250506020611c7b858286016119ff565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ccc57607f821691505b602082108103611cdf57611cde611c85565b5b50919050565b600081519050611cf4816119e8565b92915050565b600060208284031215611d1057611d0f6119b1565b5b6000611d1e84828501611ce5565b91505092915050565b6000604082019050611d3c6000830185611c1b565b611d496020830184611c1b565b9392505050565b6000606082019050611d656000830186611c1b565b611d726020830185611ac0565b611d7f6040830184611ac0565b949350505050565b6000604082019050611d9c6000830185611ac0565b611da96020830184611ac0565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611dea82611a14565b9150611df583611a14565b9250828203905081811115611e0d57611e0c611db0565b5b92915050565b6000611e1e82611a14565b9150611e2983611a14565b9250828202611e3781611a14565b91508282048414831517611e4e57611e4d611db0565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611e8f82611a14565b9150611e9a83611a14565b925082611eaa57611ea9611e55565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000611f38611f33611f2e84611f13565b611ba1565b611a14565b9050919050565b611f4881611f1d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b611f83816119d6565b82525050565b6000611f958383611f7a565b60208301905092915050565b6000602082019050919050565b6000611fb982611f4e565b611fc38185611f59565b9350611fce83611f6a565b8060005b83811015611fff578151611fe68882611f89565b9750611ff183611fa1565b925050600181019050611fd2565b5085935050505092915050565b600060a0820190506120216000830188611ac0565b61202e6020830187611f3f565b81810360408301526120408186611fae565b905061204f6060830185611c1b565b61205c6080830184611ac0565b9695505050505050565b600061207182611a14565b915061207c83611a14565b925082820190508082111561209457612093611db0565b5b9291505056fea264697066735822122087e7d45344fe347f7b6e500a43ac06eb135983e83feeef971312b056023f5b0364736f6c63430008180033
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.