ERC-20
Overview
Max Total Supply
100,000,000 ETC
Holders
18
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0 ETCValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ETC
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; pragma solidity ^0.8.8; interface DexFactory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface DexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract ETC is ERC20, Ownable { struct Tax { uint256 stakingTax; uint256 liquidityTax; } uint256 private constant _totalSupply = 1e8 * 1e18; //Router DexRouter public uniswapRouter; address public pairAddress; //Taxes Tax public buyTaxes = Tax(1, 1); Tax public sellTaxes = Tax(1, 1); uint256 public constant totalBuyFees = 2; uint256 public constant totalSellFees = 2; //Whitelisting from taxes/maxwallet/txlimit/etc mapping(address => bool) private whitelisted; //Swapping uint256 public swapTokensAtAmount = _totalSupply / 100000; //after 0.001% of total supply, swap them bool public swapAndLiquifyEnabled = true; bool public isSwapping = false; bool public tradingStatus = false; //Wallets address public stakingVault = 0x56b672E6F1F27349F685F0Df758f3dBDb827591f; constructor() ERC20("Elite", "ETC") { //0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 test //0x10ED43C718714eb63d5aA57B78B54704E256024E Pancakeswap on mainnet //LFT swap on ETH 0x4f381d5fF61ad1D0eC355fEd2Ac4000eA1e67854 //UniswapV2 on ETHMain net 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // do not whitelist liquidity pool, otherwise there wont be any taxes whitelisted[msg.sender] = true; whitelisted[address(uniswapRouter)] = true; whitelisted[address(this)] = true; whitelisted[stakingVault] = true; _mint(msg.sender, _totalSupply); } function initializePair(address _pairAddress) external onlyOwner{ pairAddress = _pairAddress; tradingStatus = true; } function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner { require(_newAmount > 0, "ETC : Minimum swap amount must be greater than 0!"); swapTokensAtAmount = _newAmount; } function toggleSwapping() external onlyOwner { swapAndLiquifyEnabled = (swapAndLiquifyEnabled == true) ? false : true; } function setWhitelistStatus(address _wallet, bool _status) external onlyOwner { whitelisted[_wallet] = _status; } function checkWhitelist(address _wallet) external view returns (bool) { return whitelisted[_wallet]; } function _takeTax( address _from, address _to, uint256 _amount ) internal returns (uint256) { if (whitelisted[_from] || whitelisted[_to]) { return _amount; } require(tradingStatus, "Trading is not enabled yet!"); uint256 totalTax = 0; if (_to == pairAddress) { totalTax = totalSellFees; } else if (_from == pairAddress) { totalTax = totalBuyFees; } uint256 tax = (_amount * totalTax) / 100; super._transfer(_from, address(this), tax); return (_amount - tax); } function _transfer( address _from, address _to, uint256 _amount ) internal virtual override { require(_from != address(0), "transfer from address zero"); require(_to != address(0), "transfer to address zero"); uint256 toTransfer = _takeTax(_from, _to, _amount); bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount; if ( swapAndLiquifyEnabled && pairAddress == _to && canSwap && !whitelisted[_from] && !whitelisted[_to] && !isSwapping ) { isSwapping = true; manageTaxes(); isSwapping = false; } super._transfer(_from, _to, toTransfer); } function setStakingVault(address _newStaking) public onlyOwner{ stakingVault = _newStaking; } function manageTaxes() internal { uint256 taxAmount = balanceOf(address(this)); //Getting total Fee Percentages And Caclculating Portinos for each tax type Tax memory bt = buyTaxes; Tax memory st = sellTaxes; uint256 totalTaxes = totalBuyFees + totalSellFees; if(totalTaxes == 0){ return; } uint256 totalLPTax = bt.liquidityTax + st.liquidityTax; uint256 lpPortion = (taxAmount * totalLPTax) / totalTaxes; //Add Liquidty taxes to liqudity pool if(lpPortion > 0){ swapAndLiquify(lpPortion); } if(balanceOf(address(this)) > 0){ super._transfer(address(this), stakingVault, balanceOf(address(this))); } } function swapAndLiquify(uint256 _amount) internal { uint256 firstHalf = _amount / 2; uint256 otherHalf = _amount - firstHalf; uint256 initialETHBalance = address(this).balance; //Swapping first half to ETH swapToETH(firstHalf); uint256 received = address(this).balance - initialETHBalance; addLiquidity(otherHalf, received); } function swapToETH(uint256 _amount) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapRouter.WETH(); _approve(address(this), address(uniswapRouter), _amount); uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( _amount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ETHAmount) private { _approve(address(this), address(uniswapRouter), tokenAmount); uniswapRouter.addLiquidityETH{value: ETHAmount}( address(this), tokenAmount, 0, 0, address(this), block.timestamp ); } function updateDexRouter(address _newDex) external onlyOwner { uniswapRouter = DexRouter(_newDex); pairAddress = DexFactory(uniswapRouter.factory()).createPair( address(this), uniswapRouter.WETH() ); } function withdrawStuckETH() external onlyOwner { (bool success, ) = address(msg.sender).call{value: address(this).balance}(""); require(success, "transfering ETH failed"); } function withdrawStuckTokens(address erc20_token) external onlyOwner { bool success = IERC20(erc20_token).transfer( msg.sender, IERC20(erc20_token).balanceOf(address(this)) ); require(success, "trasfering tokens failed!"); } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "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"},{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"buyTaxes","outputs":[{"internalType":"uint256","name":"stakingTax","type":"uint256"},{"internalType":"uint256","name":"liquidityTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pairAddress","type":"address"}],"name":"initializePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapping","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":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"stakingTax","type":"uint256"},{"internalType":"uint256","name":"liquidityTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newStaking","type":"address"}],"name":"setStakingVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingVault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newDex","type":"address"}],"name":"updateDexRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20_token","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260405180604001604052806001815260200160018152506008600082015181600001556020820151816001015550506040518060400160405280600181526020016001815250600a60008201518160000155602082015181600101555050620186a06a52b7d2dcc80cd2e40000006200007e9190620006b0565b600d556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506000600e60026101000a81548160ff0219169083151502179055507356b672e6f1f27349f685f0df758f3dbdb827591f600e60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200013457600080fd5b506040518060400160405280600581526020017f456c6974650000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f45544300000000000000000000000000000000000000000000000000000000008152508160039081620001b2919062000958565b508060049081620001c4919062000958565b505050620001e7620001db6200040360201b60201c565b6200040b60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000600e60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003fd336a52b7d2dcc80cd2e4000000620004d160201b60201c565b62000b2b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000543576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200053a9062000aa0565b60405180910390fd5b62000557600083836200063e60201b60201c565b80600260008282546200056b919062000ac2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200061e919062000b0e565b60405180910390a36200063a600083836200064360201b60201c565b5050565b505050565b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620006bd8262000648565b9150620006ca8362000648565b925082620006dd57620006dc62000652565b5b828204905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200076a57607f821691505b60208210810362000780576200077f62000722565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007ea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007ab565b620007f68683620007ab565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000839620008336200082d8462000648565b6200080e565b62000648565b9050919050565b6000819050919050565b620008558362000818565b6200086d620008648262000840565b848454620007b8565b825550505050565b600090565b6200088462000875565b620008918184846200084a565b505050565b5b81811015620008b957620008ad6000826200087a565b60018101905062000897565b5050565b601f8211156200090857620008d28162000786565b620008dd846200079b565b81016020851015620008ed578190505b62000905620008fc856200079b565b83018262000896565b50505b505050565b600082821c905092915050565b60006200092d600019846008026200090d565b1980831691505092915050565b60006200094883836200091a565b9150826002028217905092915050565b6200096382620006e8565b67ffffffffffffffff8111156200097f576200097e620006f3565b5b6200098b825462000751565b62000998828285620008bd565b600060209050601f831160018114620009d05760008415620009bb578287015190505b620009c785826200093a565b86555062000a37565b601f198416620009e08662000786565b60005b8281101562000a0a57848901518255600182019150602085019450602081019050620009e3565b8683101562000a2a578489015162000a26601f8916826200091a565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a88601f8362000a3f565b915062000a958262000a50565b602082019050919050565b6000602082019050818103600083015262000abb8162000a79565b9050919050565b600062000acf8262000648565b915062000adc8362000648565b925082820190508082111562000af75762000af662000681565b5b92915050565b62000b088162000648565b82525050565b600060208201905062000b25600083018462000afd565b92915050565b6133858062000b3b6000396000f3fe6080604052600436106101fd5760003560e01c806395d89b411161010d578063d0a39814116100a0578063ef586f711161006f578063ef586f711461075b578063f2fde38b14610772578063f5648a4f1461079b578063f66895a3146107b2578063fe560792146107de57610204565b8063d0a398141461069d578063d4fb9a01146106c8578063dd62ed3e146106f3578063e2f456051461073057610204565b8063afa4f3b2116100dc578063afa4f3b2146105f5578063b88631151461061e578063b9e9370014610649578063cb9637281461067457610204565b806395d89b4114610525578063a457c2d714610550578063a8b089821461058d578063a9059cbb146105b857610204565b8063313ce56711610190578063714f75e01161015f578063714f75e014610463578063715018a61461048c578063735de9f7146104a3578063864701a5146104ce5780638da5cb5b146104fa57610204565b8063313ce5671461039357806339509351146103be5780634a74bb02146103fb57806370a082311461042657610204565b80631950c218116101cc5780631950c218146102c557806323b872dd1461030257806324e7964a1461033f5780632a55fc2a1461036a57610204565b806306fdde0314610209578063095ea7b3146102345780630c4242841461027157806318160ddd1461029a57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e610807565b60405161022b91906122b7565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190612372565b610899565b60405161026891906123cd565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612414565b6108bc565b005b3480156102a657600080fd5b506102af61091f565b6040516102bc9190612463565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e7919061247e565b610929565b6040516102f991906123cd565b60405180910390f35b34801561030e57600080fd5b50610329600480360381019061032491906124ab565b61097f565b60405161033691906123cd565b60405180910390f35b34801561034b57600080fd5b506103546109ae565b604051610361919061250d565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c919061247e565b6109d4565b005b34801561039f57600080fd5b506103a8610a3b565b6040516103b59190612544565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e09190612372565b610a44565b6040516103f291906123cd565b60405180910390f35b34801561040757600080fd5b50610410610a7b565b60405161041d91906123cd565b60405180910390f35b34801561043257600080fd5b5061044d6004803603810190610448919061247e565b610a8e565b60405161045a9190612463565b60405180910390f35b34801561046f57600080fd5b5061048a6004803603810190610485919061247e565b610ad6565b005b34801561049857600080fd5b506104a1610d00565b005b3480156104af57600080fd5b506104b8610d14565b6040516104c591906125be565b60405180910390f35b3480156104da57600080fd5b506104e3610d3a565b6040516104f19291906125d9565b60405180910390f35b34801561050657600080fd5b5061050f610d4c565b60405161051c919061250d565b60405180910390f35b34801561053157600080fd5b5061053a610d76565b60405161054791906122b7565b60405180910390f35b34801561055c57600080fd5b5061057760048036038101906105729190612372565b610e08565b60405161058491906123cd565b60405180910390f35b34801561059957600080fd5b506105a2610e7f565b6040516105af919061250d565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190612372565b610ea5565b6040516105ec91906123cd565b60405180910390f35b34801561060157600080fd5b5061061c60048036038101906106179190612602565b610ec8565b005b34801561062a57600080fd5b50610633610f1d565b60405161064091906123cd565b60405180910390f35b34801561065557600080fd5b5061065e610f30565b60405161066b9190612463565b60405180910390f35b34801561068057600080fd5b5061069b6004803603810190610696919061247e565b610f35565b005b3480156106a957600080fd5b506106b261107c565b6040516106bf9190612463565b60405180910390f35b3480156106d457600080fd5b506106dd611081565b6040516106ea91906123cd565b60405180910390f35b3480156106ff57600080fd5b5061071a6004803603810190610715919061262f565b611094565b6040516107279190612463565b60405180910390f35b34801561073c57600080fd5b5061074561111b565b6040516107529190612463565b60405180910390f35b34801561076757600080fd5b50610770611121565b005b34801561077e57600080fd5b506107996004803603810190610794919061247e565b611169565b005b3480156107a757600080fd5b506107b06111ec565b005b3480156107be57600080fd5b506107c76112a3565b6040516107d59291906125d9565b60405180910390f35b3480156107ea57600080fd5b506108056004803603810190610800919061247e565b6112b5565b005b6060600380546108169061269e565b80601f01602080910402602001604051908101604052809291908181526020018280546108429061269e565b801561088f5780601f106108645761010080835404028352916020019161088f565b820191906000526020600020905b81548152906001019060200180831161087257829003601f168201915b5050505050905090565b6000806108a4611301565b90506108b1818585611309565b600191505092915050565b6108c46114d2565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008061098a611301565b9050610997858285611550565b6109a28585856115dc565b60019150509392505050565b600e60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109dc6114d2565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600e60026101000a81548160ff02191690831515021790555050565b60006012905090565b600080610a4f611301565b9050610a70818585610a618589611094565b610a6b91906126fe565b611309565b600191505092915050565b600e60009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ade6114d2565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb09190612747565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5d9190612747565b6040518363ffffffff1660e01b8152600401610c7a929190612774565b6020604051808303816000875af1158015610c99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbd9190612747565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d086114d2565b610d126000611868565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60088060000154908060010154905082565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d859061269e565b80601f0160208091040260200160405190810160405280929190818152602001828054610db19061269e565b8015610dfe5780601f10610dd357610100808354040283529160200191610dfe565b820191906000526020600020905b815481529060010190602001808311610de157829003601f168201915b5050505050905090565b600080610e13611301565b90506000610e218286611094565b905083811015610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d9061280f565b60405180910390fd5b610e738286868403611309565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610eb0611301565b9050610ebd8185856115dc565b600191505092915050565b610ed06114d2565b60008111610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a906128a1565b60405180910390fd5b80600d8190555050565b600e60019054906101000a900460ff1681565b600281565b610f3d6114d2565b60008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f95919061250d565b602060405180830381865afa158015610fb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd691906128d6565b6040518363ffffffff1660e01b8152600401610ff3929190612903565b6020604051808303816000875af1158015611012573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110369190612941565b905080611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f906129ba565b60405180910390fd5b5050565b600281565b600e60029054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d5481565b6111296114d2565b60011515600e60009054906101000a900460ff1615151461114b57600161114e565b60005b600e60006101000a81548160ff021916908315150217905550565b6111716114d2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790612a4c565b60405180910390fd5b6111e981611868565b50565b6111f46114d2565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161121a90612a9d565b60006040518083038185875af1925050503d8060008114611257576040519150601f19603f3d011682016040523d82523d6000602084013e61125c565b606091505b50509050806112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790612afe565b60405180910390fd5b50565b600a8060000154908060010154905082565b6112bd6114d2565b80600e60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90612b90565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113de90612c22565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114c59190612463565b60405180910390a3505050565b6114da611301565b73ffffffffffffffffffffffffffffffffffffffff166114f8610d4c565b73ffffffffffffffffffffffffffffffffffffffff161461154e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154590612c8e565b60405180910390fd5b565b600061155c8484611094565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115d657818110156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90612cfa565b60405180910390fd5b6115d58484848403611309565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361164b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164290612d66565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190612dd2565b60405180910390fd5b60006116c784848461192e565b90506000600d546116d730610a8e565b10159050600e60009054906101000a900460ff16801561174457508373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b801561174d5750805b80156117a35750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156117f95750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156118125750600e60019054906101000a900460ff16155b15611856576001600e60016101000a81548160ff02191690831515021790555061183a611b27565b6000600e60016101000a81548160ff0219169083151502179055505b611861858584611c36565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806119d15750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156119de57819050611b20565b600e60029054906101000a900460ff16611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2490612e3e565b60405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a8d5760029050611ae8565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611ae757600290505b5b600060648285611af89190612e5e565b611b029190612ecf565b9050611b0f863083611c36565b8084611b1b9190612f00565b925050505b9392505050565b6000611b3230610a8e565b9050600060086040518060400160405290816000820154815260200160018201548152505090506000600a6040518060400160405290816000820154815260200160018201548152505090506000600280611b8d91906126fe565b905060008103611ba05750505050611c34565b600082602001518460200151611bb691906126fe565b90506000828287611bc79190612e5e565b611bd19190612ecf565b90506000811115611be657611be581611eac565b5b6000611bf130610a8e565b1115611c2d57611c2c30600e60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611c2730610a8e565b611c36565b5b5050505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c90612fa6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0b90613038565b60405180910390fd5b611d1f838383611efc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c906130ca565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e939190612463565b60405180910390a3611ea6848484611f01565b50505050565b6000600282611ebb9190612ecf565b905060008183611ecb9190612f00565b90506000479050611edb83611f06565b60008147611ee99190612f00565b9050611ef58382612149565b5050505050565b505050565b505050565b6000600267ffffffffffffffff811115611f2357611f226130ea565b5b604051908082528060200260200182016040528015611f515781602001602082028036833780820191505090505b5090503081600081518110611f6957611f68613119565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612010573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120349190612747565b8160018151811061204857612047613119565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506120af30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611309565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612113959493929190613241565b600060405180830381600087803b15801561212d57600080fd5b505af1158015612141573d6000803e3d6000fd5b505050505050565b61217630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611309565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b81526004016121dd9695949392919061329b565b60606040518083038185885af11580156121fb573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061222091906132fc565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612261578082015181840152602081019050612246565b60008484015250505050565b6000601f19601f8301169050919050565b600061228982612227565b6122938185612232565b93506122a3818560208601612243565b6122ac8161226d565b840191505092915050565b600060208201905081810360008301526122d1818461227e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612309826122de565b9050919050565b612319816122fe565b811461232457600080fd5b50565b60008135905061233681612310565b92915050565b6000819050919050565b61234f8161233c565b811461235a57600080fd5b50565b60008135905061236c81612346565b92915050565b60008060408385031215612389576123886122d9565b5b600061239785828601612327565b92505060206123a88582860161235d565b9150509250929050565b60008115159050919050565b6123c7816123b2565b82525050565b60006020820190506123e260008301846123be565b92915050565b6123f1816123b2565b81146123fc57600080fd5b50565b60008135905061240e816123e8565b92915050565b6000806040838503121561242b5761242a6122d9565b5b600061243985828601612327565b925050602061244a858286016123ff565b9150509250929050565b61245d8161233c565b82525050565b60006020820190506124786000830184612454565b92915050565b600060208284031215612494576124936122d9565b5b60006124a284828501612327565b91505092915050565b6000806000606084860312156124c4576124c36122d9565b5b60006124d286828701612327565b93505060206124e386828701612327565b92505060406124f48682870161235d565b9150509250925092565b612507816122fe565b82525050565b600060208201905061252260008301846124fe565b92915050565b600060ff82169050919050565b61253e81612528565b82525050565b60006020820190506125596000830184612535565b92915050565b6000819050919050565b600061258461257f61257a846122de565b61255f565b6122de565b9050919050565b600061259682612569565b9050919050565b60006125a88261258b565b9050919050565b6125b88161259d565b82525050565b60006020820190506125d360008301846125af565b92915050565b60006040820190506125ee6000830185612454565b6125fb6020830184612454565b9392505050565b600060208284031215612618576126176122d9565b5b60006126268482850161235d565b91505092915050565b60008060408385031215612646576126456122d9565b5b600061265485828601612327565b925050602061266585828601612327565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126b657607f821691505b6020821081036126c9576126c861266f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127098261233c565b91506127148361233c565b925082820190508082111561272c5761272b6126cf565b5b92915050565b60008151905061274181612310565b92915050565b60006020828403121561275d5761275c6122d9565b5b600061276b84828501612732565b91505092915050565b600060408201905061278960008301856124fe565b61279660208301846124fe565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127f9602583612232565b91506128048261279d565b604082019050919050565b60006020820190508181036000830152612828816127ec565b9050919050565b7f455443203a204d696e696d756d207377617020616d6f756e74206d757374206260008201527f652067726561746572207468616e203021000000000000000000000000000000602082015250565b600061288b603183612232565b91506128968261282f565b604082019050919050565b600060208201905081810360008301526128ba8161287e565b9050919050565b6000815190506128d081612346565b92915050565b6000602082840312156128ec576128eb6122d9565b5b60006128fa848285016128c1565b91505092915050565b600060408201905061291860008301856124fe565b6129256020830184612454565b9392505050565b60008151905061293b816123e8565b92915050565b600060208284031215612957576129566122d9565b5b60006129658482850161292c565b91505092915050565b7f74726173666572696e6720746f6b656e73206661696c65642100000000000000600082015250565b60006129a4601983612232565b91506129af8261296e565b602082019050919050565b600060208201905081810360008301526129d381612997565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a36602683612232565b9150612a41826129da565b604082019050919050565b60006020820190508181036000830152612a6581612a29565b9050919050565b600081905092915050565b50565b6000612a87600083612a6c565b9150612a9282612a77565b600082019050919050565b6000612aa882612a7a565b9150819050919050565b7f7472616e73666572696e6720455448206661696c656400000000000000000000600082015250565b6000612ae8601683612232565b9150612af382612ab2565b602082019050919050565b60006020820190508181036000830152612b1781612adb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b7a602483612232565b9150612b8582612b1e565b604082019050919050565b60006020820190508181036000830152612ba981612b6d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c0c602283612232565b9150612c1782612bb0565b604082019050919050565b60006020820190508181036000830152612c3b81612bff565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c78602083612232565b9150612c8382612c42565b602082019050919050565b60006020820190508181036000830152612ca781612c6b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612ce4601d83612232565b9150612cef82612cae565b602082019050919050565b60006020820190508181036000830152612d1381612cd7565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b6000612d50601a83612232565b9150612d5b82612d1a565b602082019050919050565b60006020820190508181036000830152612d7f81612d43565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b6000612dbc601883612232565b9150612dc782612d86565b602082019050919050565b60006020820190508181036000830152612deb81612daf565b9050919050565b7f54726164696e67206973206e6f7420656e61626c656420796574210000000000600082015250565b6000612e28601b83612232565b9150612e3382612df2565b602082019050919050565b60006020820190508181036000830152612e5781612e1b565b9050919050565b6000612e698261233c565b9150612e748361233c565b9250828202612e828161233c565b91508282048414831517612e9957612e986126cf565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612eda8261233c565b9150612ee58361233c565b925082612ef557612ef4612ea0565b5b828204905092915050565b6000612f0b8261233c565b9150612f168361233c565b9250828203905081811115612f2e57612f2d6126cf565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f90602583612232565b9150612f9b82612f34565b604082019050919050565b60006020820190508181036000830152612fbf81612f83565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613022602383612232565b915061302d82612fc6565b604082019050919050565b6000602082019050818103600083015261305181613015565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006130b4602683612232565b91506130bf82613058565b604082019050919050565b600060208201905081810360008301526130e3816130a7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061316d61316861316384613148565b61255f565b61233c565b9050919050565b61317d81613152565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6131b8816122fe565b82525050565b60006131ca83836131af565b60208301905092915050565b6000602082019050919050565b60006131ee82613183565b6131f8818561318e565b93506132038361319f565b8060005b8381101561323457815161321b88826131be565b9750613226836131d6565b925050600181019050613207565b5085935050505092915050565b600060a0820190506132566000830188612454565b6132636020830187613174565b818103604083015261327581866131e3565b905061328460608301856124fe565b6132916080830184612454565b9695505050505050565b600060c0820190506132b060008301896124fe565b6132bd6020830188612454565b6132ca6040830187613174565b6132d76060830186613174565b6132e460808301856124fe565b6132f160a0830184612454565b979650505050505050565b600080600060608486031215613315576133146122d9565b5b6000613323868287016128c1565b9350506020613334868287016128c1565b9250506040613345868287016128c1565b915050925092509256fea26469706673582212200ba3d120ee0c5cdf521f5d2ce40f423ca6126eb73aa7c0c2d3b10af92f30051e64736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c806395d89b411161010d578063d0a39814116100a0578063ef586f711161006f578063ef586f711461075b578063f2fde38b14610772578063f5648a4f1461079b578063f66895a3146107b2578063fe560792146107de57610204565b8063d0a398141461069d578063d4fb9a01146106c8578063dd62ed3e146106f3578063e2f456051461073057610204565b8063afa4f3b2116100dc578063afa4f3b2146105f5578063b88631151461061e578063b9e9370014610649578063cb9637281461067457610204565b806395d89b4114610525578063a457c2d714610550578063a8b089821461058d578063a9059cbb146105b857610204565b8063313ce56711610190578063714f75e01161015f578063714f75e014610463578063715018a61461048c578063735de9f7146104a3578063864701a5146104ce5780638da5cb5b146104fa57610204565b8063313ce5671461039357806339509351146103be5780634a74bb02146103fb57806370a082311461042657610204565b80631950c218116101cc5780631950c218146102c557806323b872dd1461030257806324e7964a1461033f5780632a55fc2a1461036a57610204565b806306fdde0314610209578063095ea7b3146102345780630c4242841461027157806318160ddd1461029a57610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e610807565b60405161022b91906122b7565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190612372565b610899565b60405161026891906123cd565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612414565b6108bc565b005b3480156102a657600080fd5b506102af61091f565b6040516102bc9190612463565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e7919061247e565b610929565b6040516102f991906123cd565b60405180910390f35b34801561030e57600080fd5b50610329600480360381019061032491906124ab565b61097f565b60405161033691906123cd565b60405180910390f35b34801561034b57600080fd5b506103546109ae565b604051610361919061250d565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c919061247e565b6109d4565b005b34801561039f57600080fd5b506103a8610a3b565b6040516103b59190612544565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e09190612372565b610a44565b6040516103f291906123cd565b60405180910390f35b34801561040757600080fd5b50610410610a7b565b60405161041d91906123cd565b60405180910390f35b34801561043257600080fd5b5061044d6004803603810190610448919061247e565b610a8e565b60405161045a9190612463565b60405180910390f35b34801561046f57600080fd5b5061048a6004803603810190610485919061247e565b610ad6565b005b34801561049857600080fd5b506104a1610d00565b005b3480156104af57600080fd5b506104b8610d14565b6040516104c591906125be565b60405180910390f35b3480156104da57600080fd5b506104e3610d3a565b6040516104f19291906125d9565b60405180910390f35b34801561050657600080fd5b5061050f610d4c565b60405161051c919061250d565b60405180910390f35b34801561053157600080fd5b5061053a610d76565b60405161054791906122b7565b60405180910390f35b34801561055c57600080fd5b5061057760048036038101906105729190612372565b610e08565b60405161058491906123cd565b60405180910390f35b34801561059957600080fd5b506105a2610e7f565b6040516105af919061250d565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190612372565b610ea5565b6040516105ec91906123cd565b60405180910390f35b34801561060157600080fd5b5061061c60048036038101906106179190612602565b610ec8565b005b34801561062a57600080fd5b50610633610f1d565b60405161064091906123cd565b60405180910390f35b34801561065557600080fd5b5061065e610f30565b60405161066b9190612463565b60405180910390f35b34801561068057600080fd5b5061069b6004803603810190610696919061247e565b610f35565b005b3480156106a957600080fd5b506106b261107c565b6040516106bf9190612463565b60405180910390f35b3480156106d457600080fd5b506106dd611081565b6040516106ea91906123cd565b60405180910390f35b3480156106ff57600080fd5b5061071a6004803603810190610715919061262f565b611094565b6040516107279190612463565b60405180910390f35b34801561073c57600080fd5b5061074561111b565b6040516107529190612463565b60405180910390f35b34801561076757600080fd5b50610770611121565b005b34801561077e57600080fd5b506107996004803603810190610794919061247e565b611169565b005b3480156107a757600080fd5b506107b06111ec565b005b3480156107be57600080fd5b506107c76112a3565b6040516107d59291906125d9565b60405180910390f35b3480156107ea57600080fd5b506108056004803603810190610800919061247e565b6112b5565b005b6060600380546108169061269e565b80601f01602080910402602001604051908101604052809291908181526020018280546108429061269e565b801561088f5780601f106108645761010080835404028352916020019161088f565b820191906000526020600020905b81548152906001019060200180831161087257829003601f168201915b5050505050905090565b6000806108a4611301565b90506108b1818585611309565b600191505092915050565b6108c46114d2565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008061098a611301565b9050610997858285611550565b6109a28585856115dc565b60019150509392505050565b600e60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109dc6114d2565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600e60026101000a81548160ff02191690831515021790555050565b60006012905090565b600080610a4f611301565b9050610a70818585610a618589611094565b610a6b91906126fe565b611309565b600191505092915050565b600e60009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ade6114d2565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb09190612747565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5d9190612747565b6040518363ffffffff1660e01b8152600401610c7a929190612774565b6020604051808303816000875af1158015610c99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbd9190612747565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d086114d2565b610d126000611868565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60088060000154908060010154905082565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d859061269e565b80601f0160208091040260200160405190810160405280929190818152602001828054610db19061269e565b8015610dfe5780601f10610dd357610100808354040283529160200191610dfe565b820191906000526020600020905b815481529060010190602001808311610de157829003601f168201915b5050505050905090565b600080610e13611301565b90506000610e218286611094565b905083811015610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d9061280f565b60405180910390fd5b610e738286868403611309565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610eb0611301565b9050610ebd8185856115dc565b600191505092915050565b610ed06114d2565b60008111610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a906128a1565b60405180910390fd5b80600d8190555050565b600e60019054906101000a900460ff1681565b600281565b610f3d6114d2565b60008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f95919061250d565b602060405180830381865afa158015610fb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd691906128d6565b6040518363ffffffff1660e01b8152600401610ff3929190612903565b6020604051808303816000875af1158015611012573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110369190612941565b905080611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f906129ba565b60405180910390fd5b5050565b600281565b600e60029054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d5481565b6111296114d2565b60011515600e60009054906101000a900460ff1615151461114b57600161114e565b60005b600e60006101000a81548160ff021916908315150217905550565b6111716114d2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790612a4c565b60405180910390fd5b6111e981611868565b50565b6111f46114d2565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161121a90612a9d565b60006040518083038185875af1925050503d8060008114611257576040519150601f19603f3d011682016040523d82523d6000602084013e61125c565b606091505b50509050806112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790612afe565b60405180910390fd5b50565b600a8060000154908060010154905082565b6112bd6114d2565b80600e60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90612b90565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113de90612c22565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114c59190612463565b60405180910390a3505050565b6114da611301565b73ffffffffffffffffffffffffffffffffffffffff166114f8610d4c565b73ffffffffffffffffffffffffffffffffffffffff161461154e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154590612c8e565b60405180910390fd5b565b600061155c8484611094565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115d657818110156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90612cfa565b60405180910390fd5b6115d58484848403611309565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361164b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164290612d66565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190612dd2565b60405180910390fd5b60006116c784848461192e565b90506000600d546116d730610a8e565b10159050600e60009054906101000a900460ff16801561174457508373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b801561174d5750805b80156117a35750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156117f95750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156118125750600e60019054906101000a900460ff16155b15611856576001600e60016101000a81548160ff02191690831515021790555061183a611b27565b6000600e60016101000a81548160ff0219169083151502179055505b611861858584611c36565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806119d15750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156119de57819050611b20565b600e60029054906101000a900460ff16611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2490612e3e565b60405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a8d5760029050611ae8565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611ae757600290505b5b600060648285611af89190612e5e565b611b029190612ecf565b9050611b0f863083611c36565b8084611b1b9190612f00565b925050505b9392505050565b6000611b3230610a8e565b9050600060086040518060400160405290816000820154815260200160018201548152505090506000600a6040518060400160405290816000820154815260200160018201548152505090506000600280611b8d91906126fe565b905060008103611ba05750505050611c34565b600082602001518460200151611bb691906126fe565b90506000828287611bc79190612e5e565b611bd19190612ecf565b90506000811115611be657611be581611eac565b5b6000611bf130610a8e565b1115611c2d57611c2c30600e60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611c2730610a8e565b611c36565b5b5050505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c90612fa6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0b90613038565b60405180910390fd5b611d1f838383611efc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c906130ca565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e939190612463565b60405180910390a3611ea6848484611f01565b50505050565b6000600282611ebb9190612ecf565b905060008183611ecb9190612f00565b90506000479050611edb83611f06565b60008147611ee99190612f00565b9050611ef58382612149565b5050505050565b505050565b505050565b6000600267ffffffffffffffff811115611f2357611f226130ea565b5b604051908082528060200260200182016040528015611f515781602001602082028036833780820191505090505b5090503081600081518110611f6957611f68613119565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612010573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120349190612747565b8160018151811061204857612047613119565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506120af30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611309565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612113959493929190613241565b600060405180830381600087803b15801561212d57600080fd5b505af1158015612141573d6000803e3d6000fd5b505050505050565b61217630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611309565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b81526004016121dd9695949392919061329b565b60606040518083038185885af11580156121fb573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061222091906132fc565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612261578082015181840152602081019050612246565b60008484015250505050565b6000601f19601f8301169050919050565b600061228982612227565b6122938185612232565b93506122a3818560208601612243565b6122ac8161226d565b840191505092915050565b600060208201905081810360008301526122d1818461227e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612309826122de565b9050919050565b612319816122fe565b811461232457600080fd5b50565b60008135905061233681612310565b92915050565b6000819050919050565b61234f8161233c565b811461235a57600080fd5b50565b60008135905061236c81612346565b92915050565b60008060408385031215612389576123886122d9565b5b600061239785828601612327565b92505060206123a88582860161235d565b9150509250929050565b60008115159050919050565b6123c7816123b2565b82525050565b60006020820190506123e260008301846123be565b92915050565b6123f1816123b2565b81146123fc57600080fd5b50565b60008135905061240e816123e8565b92915050565b6000806040838503121561242b5761242a6122d9565b5b600061243985828601612327565b925050602061244a858286016123ff565b9150509250929050565b61245d8161233c565b82525050565b60006020820190506124786000830184612454565b92915050565b600060208284031215612494576124936122d9565b5b60006124a284828501612327565b91505092915050565b6000806000606084860312156124c4576124c36122d9565b5b60006124d286828701612327565b93505060206124e386828701612327565b92505060406124f48682870161235d565b9150509250925092565b612507816122fe565b82525050565b600060208201905061252260008301846124fe565b92915050565b600060ff82169050919050565b61253e81612528565b82525050565b60006020820190506125596000830184612535565b92915050565b6000819050919050565b600061258461257f61257a846122de565b61255f565b6122de565b9050919050565b600061259682612569565b9050919050565b60006125a88261258b565b9050919050565b6125b88161259d565b82525050565b60006020820190506125d360008301846125af565b92915050565b60006040820190506125ee6000830185612454565b6125fb6020830184612454565b9392505050565b600060208284031215612618576126176122d9565b5b60006126268482850161235d565b91505092915050565b60008060408385031215612646576126456122d9565b5b600061265485828601612327565b925050602061266585828601612327565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126b657607f821691505b6020821081036126c9576126c861266f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127098261233c565b91506127148361233c565b925082820190508082111561272c5761272b6126cf565b5b92915050565b60008151905061274181612310565b92915050565b60006020828403121561275d5761275c6122d9565b5b600061276b84828501612732565b91505092915050565b600060408201905061278960008301856124fe565b61279660208301846124fe565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127f9602583612232565b91506128048261279d565b604082019050919050565b60006020820190508181036000830152612828816127ec565b9050919050565b7f455443203a204d696e696d756d207377617020616d6f756e74206d757374206260008201527f652067726561746572207468616e203021000000000000000000000000000000602082015250565b600061288b603183612232565b91506128968261282f565b604082019050919050565b600060208201905081810360008301526128ba8161287e565b9050919050565b6000815190506128d081612346565b92915050565b6000602082840312156128ec576128eb6122d9565b5b60006128fa848285016128c1565b91505092915050565b600060408201905061291860008301856124fe565b6129256020830184612454565b9392505050565b60008151905061293b816123e8565b92915050565b600060208284031215612957576129566122d9565b5b60006129658482850161292c565b91505092915050565b7f74726173666572696e6720746f6b656e73206661696c65642100000000000000600082015250565b60006129a4601983612232565b91506129af8261296e565b602082019050919050565b600060208201905081810360008301526129d381612997565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612a36602683612232565b9150612a41826129da565b604082019050919050565b60006020820190508181036000830152612a6581612a29565b9050919050565b600081905092915050565b50565b6000612a87600083612a6c565b9150612a9282612a77565b600082019050919050565b6000612aa882612a7a565b9150819050919050565b7f7472616e73666572696e6720455448206661696c656400000000000000000000600082015250565b6000612ae8601683612232565b9150612af382612ab2565b602082019050919050565b60006020820190508181036000830152612b1781612adb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b7a602483612232565b9150612b8582612b1e565b604082019050919050565b60006020820190508181036000830152612ba981612b6d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c0c602283612232565b9150612c1782612bb0565b604082019050919050565b60006020820190508181036000830152612c3b81612bff565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c78602083612232565b9150612c8382612c42565b602082019050919050565b60006020820190508181036000830152612ca781612c6b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612ce4601d83612232565b9150612cef82612cae565b602082019050919050565b60006020820190508181036000830152612d1381612cd7565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b6000612d50601a83612232565b9150612d5b82612d1a565b602082019050919050565b60006020820190508181036000830152612d7f81612d43565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b6000612dbc601883612232565b9150612dc782612d86565b602082019050919050565b60006020820190508181036000830152612deb81612daf565b9050919050565b7f54726164696e67206973206e6f7420656e61626c656420796574210000000000600082015250565b6000612e28601b83612232565b9150612e3382612df2565b602082019050919050565b60006020820190508181036000830152612e5781612e1b565b9050919050565b6000612e698261233c565b9150612e748361233c565b9250828202612e828161233c565b91508282048414831517612e9957612e986126cf565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612eda8261233c565b9150612ee58361233c565b925082612ef557612ef4612ea0565b5b828204905092915050565b6000612f0b8261233c565b9150612f168361233c565b9250828203905081811115612f2e57612f2d6126cf565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f90602583612232565b9150612f9b82612f34565b604082019050919050565b60006020820190508181036000830152612fbf81612f83565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613022602383612232565b915061302d82612fc6565b604082019050919050565b6000602082019050818103600083015261305181613015565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006130b4602683612232565b91506130bf82613058565b604082019050919050565b600060208201905081810360008301526130e3816130a7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061316d61316861316384613148565b61255f565b61233c565b9050919050565b61317d81613152565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6131b8816122fe565b82525050565b60006131ca83836131af565b60208301905092915050565b6000602082019050919050565b60006131ee82613183565b6131f8818561318e565b93506132038361319f565b8060005b8381101561323457815161321b88826131be565b9750613226836131d6565b925050600181019050613207565b5085935050505092915050565b600060a0820190506132566000830188612454565b6132636020830187613174565b818103604083015261327581866131e3565b905061328460608301856124fe565b6132916080830184612454565b9695505050505050565b600060c0820190506132b060008301896124fe565b6132bd6020830188612454565b6132ca6040830187613174565b6132d76060830186613174565b6132e460808301856124fe565b6132f160a0830184612454565b979650505050505050565b600080600060608486031215613315576133146122d9565b5b6000613323868287016128c1565b9350506020613334868287016128c1565b9250506040613345868287016128c1565b915050925092509256fea26469706673582212200ba3d120ee0c5cdf521f5d2ce40f423ca6126eb73aa7c0c2d3b10af92f30051e64736f6c63430008110033
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.