ERC-20
Overview
Max Total Supply
100,000,000 TaoShard
Holders
711
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$18,772.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
14,687.434939966744517059 TaoShardValue
$2.76 ( ~0.000709691777203185 Eth) [0.0147%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TSS
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /** Telegram : https://t.me/TaoShard Website : https://taoshard.cloud Twitter : https://twitter.com/TAOSharding Youtube : https://youtu.be/JQeYxeqvY8U Youtube 2 : https://youtu.be/pMn3BFLqt1Q Gitbook : https://taosubnetsharding.gitbook.io/tao-subnet-sharding/video-tutorial/video-guide **/ pragma solidity ^0.8.10; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (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; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev 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 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 {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.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 substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract TSS is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0x000000000000000000000000000000000000dEaD); address public ETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; bool private swapping; uint256 public genesis_block; address public deployerAddress; address public lpLocker; address private devWallet; address private SubnetShardingWallet; address private TaoSubnetDeploymentWallet; address private MarketingWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = true; uint256 public buyTotalFees; uint256 public buydevfee; uint256 public buyMarketingfee; uint256 public buySubnetShardingfee; uint256 public buytaoSubnetDeploymentfee; uint256 public buyLiquidityFee; uint256 public sellTotalFees; uint256 public selldevfee; uint256 public sellMarketingfee; uint256 public sellSubnetShardingfee; uint256 public sellTaoSubnetDeploymentfee; uint256 public sellLiquidityFee; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; event ExcludeFromFees(address indexed account, bool isExcluded); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SubnetShardingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event TaoSubnetDeploymentWalletUpdated( address indexed newWallet, address indexed oldWallet ); event MarketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20("TAO Subnet Sharding", "TaoShard") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), ETH); excludeFromMaxTransaction(address(uniswapV2Pair), true); uint256 _buydevfee = 35; uint256 _buySubnetShardingfee = 0; uint256 _buyMarketingfee = 0; uint256 _buyLiquidityFee = 0; uint256 _selldevfee = 30; uint256 _sellSubnetShardingfee = 0; uint256 _sellMarketingfee = 0; uint256 _sellTaoSubnetDeploymentfee = 0; uint256 _sellLiquidityFee = 0; uint256 totalSupply = 100_000_000 * 1e18; maxTransactionAmount = totalSupply * 10 / 1000; // 1% from total supply maxTransactionAmountTxn maxWallet = totalSupply * 10 / 1000; // 1% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buydevfee = _buydevfee; buyMarketingfee = _buyMarketingfee; buySubnetShardingfee = _buySubnetShardingfee; buytaoSubnetDeploymentfee = buytaoSubnetDeploymentfee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buydevfee + buyMarketingfee + buytaoSubnetDeploymentfee + buyLiquidityFee +buySubnetShardingfee; selldevfee = _selldevfee; sellMarketingfee = _sellMarketingfee; sellSubnetShardingfee = _sellSubnetShardingfee; sellTaoSubnetDeploymentfee = _sellTaoSubnetDeploymentfee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = selldevfee + sellMarketingfee + sellTaoSubnetDeploymentfee + sellLiquidityFee + sellSubnetShardingfee; devWallet = address(0x09e802BB55CD409Af7d2E0C0aCC23Eae5A55A201); // set as dev wallet SubnetShardingWallet = address(0x9cdD82cC12D5849D6e72CC158df462fA736306e6); TaoSubnetDeploymentWallet = address(0x9D7153A5f0d21789ed0064D653A0445C0912e678); MarketingWallet = address(0x36431A35929761031926b662B670c0523Db9823e); deployerAddress = address(0x09e802BB55CD409Af7d2E0C0aCC23Eae5A55A201); lpLocker = address(msg.sender); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdEaD), true); excludeFromFees(deployerAddress, true); // Deployer Address excludeFromFees(lpLocker, true); // LP Locker excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdEaD), true); excludeFromMaxTransaction(deployerAddress, true); // Deployer Address excludeFromMaxTransaction(lpLocker, true); // LP Locker /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _devfee, uint256 _marketingfee, uint256 _TaoSubnetDeploymentfee, uint256 _SubnetShardingfee, uint256 _liquidityFee ) external onlyOwner { buydevfee = _devfee; buyMarketingfee = _marketingfee; buySubnetShardingfee = buySubnetShardingfee; buytaoSubnetDeploymentfee = _TaoSubnetDeploymentfee; buyLiquidityFee = _liquidityFee; buyTotalFees = buydevfee + buyMarketingfee + buytaoSubnetDeploymentfee + buyLiquidityFee + buySubnetShardingfee; require(buyTotalFees <= 99, "Must keep fees at 10% or less"); } function updateSellFees( uint256 _devfee, uint256 _marketingfee, uint256 _SubnetShardingfee, uint256 _TaoSubnetDeploymentfee, uint256 _liquidityFee ) external onlyOwner { selldevfee = _devfee; sellMarketingfee = _marketingfee; sellSubnetShardingfee = _SubnetShardingfee; sellTaoSubnetDeploymentfee = _TaoSubnetDeploymentfee; sellLiquidityFee = _liquidityFee; sellTotalFees = selldevfee + sellMarketingfee + sellTaoSubnetDeploymentfee + sellLiquidityFee + sellSubnetShardingfee; require(sellTotalFees <= 99, "Must keep fees at 10% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function updateDevWallet(address newDevWallet) external onlyOwner { emit devWalletUpdated(newDevWallet, devWallet); devWallet = newDevWallet; } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit MarketingWalletUpdated(newMarketingWallet, MarketingWallet); MarketingWallet = newMarketingWallet; } function updateTaoSubnetDeploymentWallet(address newTaoSubnetDeploymentWallet) external onlyOwner { emit TaoSubnetDeploymentWalletUpdated(newTaoSubnetDeploymentWallet, TaoSubnetDeploymentWallet); TaoSubnetDeploymentWallet = newTaoSubnetDeploymentWallet; } function updateSubnetShardingWallet(address newSubnetShardingWallet) external onlyOwner { emit SubnetShardingWalletUpdated(newSubnetShardingWallet, SubnetShardingWallet); SubnetShardingWallet = newSubnetShardingWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0x000000000000000000000000000000000000dEaD) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. //when buy if ( from == uniswapV2Pair && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && to == uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; uint256 tokensForLiquidity = 0; uint256 tokensForDev = 0; uint256 tokensForMarketing = 0; uint256 tokensForTaoSubnetDeployment = 0; uint256 tokensForSubnetSharding = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (to == uniswapV2Pair && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees; tokensForDev = (fees * selldevfee) / sellTotalFees; tokensForMarketing = (fees * sellMarketingfee) / sellTotalFees; tokensForTaoSubnetDeployment = (fees * sellTaoSubnetDeploymentfee) / sellTotalFees; tokensForSubnetSharding = (fees * sellSubnetShardingfee) / sellTotalFees; } // on buy else if (from == uniswapV2Pair && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; tokensForDev = (fees * buydevfee) / buyTotalFees; tokensForMarketing = (fees * buyMarketingfee) / buyTotalFees; tokensForTaoSubnetDeployment = (fees * buytaoSubnetDeploymentfee) / buyTotalFees; tokensForSubnetSharding = (fees * buySubnetShardingfee) / buyTotalFees; } if (fees> 0) { super._transfer(from, address(this), fees); } if (tokensForLiquidity > 0) { super._transfer(address(this), uniswapV2Pair, tokensForLiquidity); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForETH(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = ETH; _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of WETH path, devWallet, block.timestamp ); // Send ETH to the SubnetShardingWallet payable(SubnetShardingWallet).transfer(address(this).balance); payable(MarketingWallet).transfer(address(this).balance); payable(TaoSubnetDeploymentWallet).transfer(address(this).balance); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForETH(contractBalance); } }
{ "optimizer": { "enabled": true, "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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SubnetShardingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"TaoSubnetDeploymentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"ETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buySubnetShardingfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buydevfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buytaoSubnetDeploymentfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deployerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genesis_block","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpLocker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellSubnetShardingfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaoSubnetDeploymentfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"selldevfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devfee","type":"uint256"},{"internalType":"uint256","name":"_marketingfee","type":"uint256"},{"internalType":"uint256","name":"_TaoSubnetDeploymentfee","type":"uint256"},{"internalType":"uint256","name":"_SubnetShardingfee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devfee","type":"uint256"},{"internalType":"uint256","name":"_marketingfee","type":"uint256"},{"internalType":"uint256","name":"_SubnetShardingfee","type":"uint256"},{"internalType":"uint256","name":"_TaoSubnetDeploymentfee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSubnetShardingWallet","type":"address"}],"name":"updateSubnetShardingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTaoSubnetDeploymentWallet","type":"address"}],"name":"updateTaoSubnetDeploymentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600680546001600160a01b03191673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2179055601180546201000162ffffff1990911617905534801562000049575f80fd5b506040518060400160405280601381526020017f54414f205375626e6574205368617264696e67000000000000000000000000008152506040518060400160405280600881526020016715185bd4da185c9960c21b8152508160039081620000b291906200079e565b506004620000c182826200079e565b505050620000de620000d8620004a360201b60201c565b620004a7565b737a250d5630b4cf539739df2c5dacb4c659f2488d62000100816001620004f8565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000149573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200016f919062000866565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303815f875af1158015620001be573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001e4919062000866565b6001600160a01b031660a0819052620001ff906001620004f8565b60235f8080601e818080806a52b7d2dcc80cd2e40000006103e86200022682600a620008a9565b620002329190620008c9565b600e556103e86200024582600a620008a9565b620002519190620008c9565b60105561271062000264826005620008a9565b620002709190620008c9565b600f5560138a9055601488905560158990556016546017889055899088906200029a8b8e620008e9565b620002a69190620008e9565b620002b29190620008e9565b620002be9190620008e9565b6012556019869055601a849055601b859055601c839055601d829055848284620002e9878a620008e9565b620002f59190620008e9565b620003019190620008e9565b6200030d9190620008e9565b601855600a80546001600160a01b03199081167309e802bb55cd409af7d2e0c0acc23eae5a55a201908117909255600b80548216739cdd82cc12d5849d6e72cc158df462fa736306e6179055600c80548216739d7153a5f0d21789ed0064d653a0445c0912e678179055600d805482167336431a35929761031926b662b670c0523db9823e1790556008805482169092179091556009805490911633179055620003cb620003c36005546001600160a01b031690565b600162000570565b620003d830600162000570565b620003e761dead600162000570565b60085462000400906001600160a01b0316600162000570565b60095462000419906001600160a01b0316600162000570565b62000438620004306005546001600160a01b031690565b6001620004f8565b62000445306001620004f8565b6200045461dead6001620004f8565b6008546200046d906001600160a01b03166001620004f8565b60095462000486906001600160a01b03166001620004f8565b62000492338262000618565b5050505050505050505050620008ff565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620005465760405162461bcd60e51b815260206004820181905260248201525f8051602062002ce783398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601f60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620005ba5760405162461bcd60e51b815260206004820181905260248201525f8051602062002ce783398151915260448201526064016200053d565b6001600160a01b0382165f818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006705760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200053d565b8060025f828254620006839190620008e9565b90915550506001600160a01b0382165f9081526020819052604081208054839290620006b1908490620008e9565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200072857607f821691505b6020821081036200074757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620006fa575f81815260208120601f850160051c81016020861015620007755750805b601f850160051c820191505b81811015620007965782815560010162000781565b505050505050565b81516001600160401b03811115620007ba57620007ba620006ff565b620007d281620007cb845462000713565b846200074d565b602080601f83116001811462000808575f8415620007f05750858301515b5f19600386901b1c1916600185901b17855562000796565b5f85815260208120601f198616915b82811015620008385788860151825594840194600190910190840162000817565b50858210156200085657878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000877575f80fd5b81516001600160a01b03811681146200088e575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620008c357620008c362000895565b92915050565b5f82620008e457634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620008c357620008c362000895565b60805160a051612395620009525f395f818161052f01528181611675015281816118810152818161198d01528181611a8c0152611b9c01525f81816103e601528181611e7b0152611eba01526123955ff3fe608060405260043610610310575f3560e01c80637571336a116101a3578063c8c8ebe4116100f2578063f170d7fd11610092578063f70468801161006d578063f7046880146108fe578063f8b45b0514610913578063f95a506414610928578063ff935af61461093d575f80fd5b8063f170d7fd146108ab578063f2fde38b146108ca578063f6374342146108e9575f80fd5b8063dd62ed3e116100cd578063dd62ed3e1461081e578063e2f4560514610862578063efdee94f14610877578063f11a24d314610896575f80fd5b8063c8c8ebe4146107d5578063d257b34f146107ea578063d85ba06314610809575f80fd5b8063a206a4081161015d578063bbc0c74211610138578063bbc0c7421461075a578063c024666814610778578063c18bc19514610797578063c345cd6d146107b6575f80fd5b8063a206a408146106fd578063a9059cbb1461071c578063aacebbe31461073b575f80fd5b80637571336a1461065b5780638322fff21461067a5780638a8c523c146106995780638da5cb5b146106ad578063924de9b7146106ca57806395d89b41146106e9575f80fd5b80634853e7d91161025f5780636190e0ef116102195780636ddd1713116101f45780636ddd1713146105e057806370a08231146105ff578063715018a614610633578063751039fc14610647575f80fd5b80636190e0ef146105a157806365c1bef8146105b65780636a486a8e146105cb575f80fd5b80634853e7d9146104df578063489ae78d146104f457806348c492d61461050957806349bd5a5e1461051e5780634a62bb65146105515780634fbee1931461056a575f80fd5b80631816467f116102ca57806323b872dd116102a557806323b872dd1461047b578063274a533c1461049a57806327c8f835146104af578063313ce567146104c4575f80fd5b80631816467f146104265780631d0a3a4314610447578063203e727e1461045c575f80fd5b806303fc20131461031b57806306fdde0314610357578063095ea7b31461037857806310d5de53146103a75780631694505e146103d557806318160ddd14610408575f80fd5b3661031757005b5f80fd5b348015610326575f80fd5b5060095461033a906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b348015610362575f80fd5b5061036b61095c565b60405161034e9190611fcd565b348015610383575f80fd5b5061039761039236600461202e565b6109ec565b604051901515815260200161034e565b3480156103b2575f80fd5b506103976103c1366004612056565b601f6020525f908152604090205460ff1681565b3480156103e0575f80fd5b5061033a7f000000000000000000000000000000000000000000000000000000000000000081565b348015610413575f80fd5b506002545b60405190815260200161034e565b348015610431575f80fd5b50610445610440366004612056565b610a02565b005b348015610452575f80fd5b5061041860155481565b348015610467575f80fd5b5061044561047636600461206f565b610a91565b348015610486575f80fd5b50610397610495366004612086565b610b6e565b3480156104a5575f80fd5b5061041860075481565b3480156104ba575f80fd5b5061033a61dead81565b3480156104cf575f80fd5b506040516012815260200161034e565b3480156104ea575f80fd5b5061041860145481565b3480156104ff575f80fd5b5061041860135481565b348015610514575f80fd5b50610418601a5481565b348015610529575f80fd5b5061033a7f000000000000000000000000000000000000000000000000000000000000000081565b34801561055c575f80fd5b506011546103979060ff1681565b348015610575575f80fd5b50610397610584366004612056565b6001600160a01b03165f908152601e602052604090205460ff1690565b3480156105ac575f80fd5b50610418601c5481565b3480156105c1575f80fd5b5061041860195481565b3480156105d6575f80fd5b5061041860185481565b3480156105eb575f80fd5b506011546103979062010000900460ff1681565b34801561060a575f80fd5b50610418610619366004612056565b6001600160a01b03165f9081526020819052604090205490565b34801561063e575f80fd5b50610445610c16565b348015610652575f80fd5b50610397610c4b565b348015610666575f80fd5b506104456106753660046120ce565b610c87565b348015610685575f80fd5b5060065461033a906001600160a01b031681565b3480156106a4575f80fd5b50610445610cdb565b3480156106b8575f80fd5b506005546001600160a01b031661033a565b3480156106d5575f80fd5b506104456106e43660046120ff565b610d18565b3480156106f4575f80fd5b5061036b610d5e565b348015610708575f80fd5b50610445610717366004612056565b610d6d565b348015610727575f80fd5b5061039761073636600461202e565b610df3565b348015610746575f80fd5b50610445610755366004612056565b610dff565b348015610765575f80fd5b5060115461039790610100900460ff1681565b348015610783575f80fd5b506104456107923660046120ce565b610e85565b3480156107a2575f80fd5b506104456107b136600461206f565b610f0d565b3480156107c1575f80fd5b506104456107d0366004612056565b610fde565b3480156107e0575f80fd5b50610418600e5481565b3480156107f5575f80fd5b5061039761080436600461206f565b611064565b348015610814575f80fd5b5061041860125481565b348015610829575f80fd5b50610418610838366004612118565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561086d575f80fd5b50610418600f5481565b348015610882575f80fd5b5060085461033a906001600160a01b031681565b3480156108a1575f80fd5b5061041860175481565b3480156108b6575f80fd5b506104456108c5366004612140565b6111ba565b3480156108d5575f80fd5b506104456108e4366004612056565b611281565b3480156108f4575f80fd5b50610418601d5481565b348015610909575f80fd5b50610418601b5481565b34801561091e575f80fd5b5061041860105481565b348015610933575f80fd5b5061041860165481565b348015610948575f80fd5b50610445610957366004612140565b61131c565b60606003805461096b90612177565b80601f016020809104026020016040519081016040528092919081815260200182805461099790612177565b80156109e25780601f106109b9576101008083540402835291602001916109e2565b820191905f5260205f20905b8154815290600101906020018083116109c557829003601f168201915b5050505050905090565b5f6109f83384846113df565b5060015b92915050565b6005546001600160a01b03163314610a355760405162461bcd60e51b8152600401610a2c906121af565b60405180910390fd5b600a546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e743905f90a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610abb5760405162461bcd60e51b8152600401610a2c906121af565b670de0b6b3a76400006103e8610ad060025490565b610adb9060056121f8565b610ae5919061220f565b610aef919061220f565b811015610b565760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610a2c565b610b6881670de0b6b3a76400006121f8565b600e5550565b5f610b7a848484611502565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610bfe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a2c565b610c0b85338584036113df565b506001949350505050565b6005546001600160a01b03163314610c405760405162461bcd60e51b8152600401610a2c906121af565b610c495f611be7565b565b6005545f906001600160a01b03163314610c775760405162461bcd60e51b8152600401610a2c906121af565b506011805460ff19169055600190565b6005546001600160a01b03163314610cb15760405162461bcd60e51b8152600401610a2c906121af565b6001600160a01b03919091165f908152601f60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d055760405162461bcd60e51b8152600401610a2c906121af565b6011805462ffff00191662010100179055565b6005546001600160a01b03163314610d425760405162461bcd60e51b8152600401610a2c906121af565b60118054911515620100000262ff000019909216919091179055565b60606004805461096b90612177565b6005546001600160a01b03163314610d975760405162461bcd60e51b8152600401610a2c906121af565b600b546040516001600160a01b03918216918316907f6aeaf484884ebf48c15ec030c65c37769af9140a0f6ca0901cc4d23ff782189a905f90a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b5f6109f8338484611502565b6005546001600160a01b03163314610e295760405162461bcd60e51b8152600401610a2c906121af565b600d546040516001600160a01b03918216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc67905f90a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610eaf5760405162461bcd60e51b8152600401610a2c906121af565b6001600160a01b0382165f818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f375760405162461bcd60e51b8152600401610a2c906121af565b670de0b6b3a76400006103e8610f4c60025490565b610f579060056121f8565b610f61919061220f565b610f6b919061220f565b811015610fc65760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610a2c565b610fd881670de0b6b3a76400006121f8565b60105550565b6005546001600160a01b031633146110085760405162461bcd60e51b8152600401610a2c906121af565b600c546040516001600160a01b03918216918316907fbd70f2f82eae0a0f35da2a2be68f3af174e245656c40a3d1cf11d897349a89ed905f90a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6005545f906001600160a01b031633146110905760405162461bcd60e51b8152600401610a2c906121af565b620186a061109d60025490565b6110a89060016121f8565b6110b2919061220f565b82101561111f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a2c565b6103e861112b60025490565b6111369060056121f8565b611140919061220f565b8211156111ac5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a2c565b50600f81905560015b919050565b6005546001600160a01b031633146111e45760405162461bcd60e51b8152600401610a2c906121af565b60138590556014849055601554601684905560178290558184611207878961222e565b611211919061222e565b61121b919061222e565b611225919061222e565b60128190556063101561127a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610a2c565b5050505050565b6005546001600160a01b031633146112ab5760405162461bcd60e51b8152600401610a2c906121af565b6001600160a01b0381166113105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a2c565b61131981611be7565b50565b6005546001600160a01b031633146113465760405162461bcd60e51b8152600401610a2c906121af565b6019859055601a849055601b839055601c829055601d81905582818361136c878961222e565b611376919061222e565b611380919061222e565b61138a919061222e565b60188190556063101561127a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610a2c565b6001600160a01b0383166114415760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a2c565b6001600160a01b0382166114a25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a2c565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115285760405162461bcd60e51b8152600401610a2c90612241565b6001600160a01b03821661154e5760405162461bcd60e51b8152600401610a2c90612286565b805f036115655761156083835f611c38565b505050565b60115460ff1615611837576005546001600160a01b0384811691161480159061159c57506005546001600160a01b03838116911614155b80156115b057506001600160a01b03821615155b80156115c757506001600160a01b03821661dead14155b80156115dd5750600654600160a01b900460ff16155b1561183757601154610100900460ff16611673576001600160a01b0383165f908152601e602052604090205460ff168061162e57506001600160a01b0382165f908152601e602052604090205460ff165b6116735760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a2c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156116cc57506001600160a01b0382165f908152601f602052604090205460ff16155b156117af57600e548111156117415760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a2c565b6010546001600160a01b0383165f90815260208190526040902054611766908361222e565b11156117aa5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a2c565b611837565b6001600160a01b0382165f908152601f602052604090205460ff16611837576010546001600160a01b0383165f908152602081905260409020546117f3908361222e565b11156118375760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a2c565b305f90815260208190526040902054600f5481108015908190611862575060115462010000900460ff165b80156118785750600654600160a01b900460ff16155b80156118b557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156118d957506001600160a01b0385165f908152601e602052604090205460ff16155b80156118fd57506001600160a01b0384165f908152601e602052604090205460ff16155b1561192b576006805460ff60a01b1916600160a01b17905561191d611d8b565b6006805460ff60a01b191690555b6006546001600160a01b0386165f908152601e602052604090205460ff600160a01b90920482161591168061197757506001600160a01b0385165f908152601e602052604090205460ff165b1561197f57505f5b5f805f805f808615611bce577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168b6001600160a01b03161480156119cd57505f601854115b15611a8a576119f260646119ec6018548d611dd490919063ffffffff16565b90611de6565b9550601854601d5487611a0591906121f8565b611a0f919061220f565b945060185460195487611a2291906121f8565b611a2c919061220f565b9350601854601a5487611a3f91906121f8565b611a49919061220f565b9250601854601c5487611a5c91906121f8565b611a66919061220f565b9150601854601b5487611a7991906121f8565b611a83919061220f565b9050611b7f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168c6001600160a01b0316148015611acc57505f601254115b15611b7f57611aeb60646119ec6012548d611dd490919063ffffffff16565b955060125460175487611afe91906121f8565b611b08919061220f565b945060125460135487611b1b91906121f8565b611b25919061220f565b935060125460145487611b3891906121f8565b611b42919061220f565b925060125460165487611b5591906121f8565b611b5f919061220f565b915060125460155487611b7291906121f8565b611b7c919061220f565b90505b8515611b9057611b908c3088611c38565b8415611bc157611bc1307f000000000000000000000000000000000000000000000000000000000000000087611c38565b611bcb868b6122c9565b99505b611bd98c8c8c611c38565b505050505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316611c5e5760405162461bcd60e51b8152600401610a2c90612241565b6001600160a01b038216611c845760405162461bcd60e51b8152600401610a2c90612286565b6001600160a01b0383165f9081526020819052604090205481811015611cfb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a2c565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611d3190849061222e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d7d91815260200190565b60405180910390a350505050565b305f9081526020819052604081205490819003611da55750565b600f54611db39060146121f8565b811115611dcb57600f54611dc89060146121f8565b90505b61131981611df1565b5f611ddf82846121f8565b9392505050565b5f611ddf828461220f565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611e2457611e246122dc565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611e5557611e556122dc565b60200260200101906001600160a01b031690816001600160a01b031681525050611ea0307f0000000000000000000000000000000000000000000000000000000000000000846113df565b600a54604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611efb9287925f928892919091169042906004016122f0565b5f604051808303815f87803b158015611f12575f80fd5b505af1158015611f24573d5f803e3d5ffd5b5050600b546040516001600160a01b0390911692504780156108fc029250905f818181858888f19350505050158015611f5f573d5f803e3d5ffd5b50600d546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015611f96573d5f803e3d5ffd5b50600c546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015611560573d5f803e3d5ffd5b5f6020808352835180828501525f5b81811015611ff857858101830151858201604001528201611fdc565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146111b5575f80fd5b5f806040838503121561203f575f80fd5b61204883612018565b946020939093013593505050565b5f60208284031215612066575f80fd5b611ddf82612018565b5f6020828403121561207f575f80fd5b5035919050565b5f805f60608486031215612098575f80fd5b6120a184612018565b92506120af60208501612018565b9150604084013590509250925092565b803580151581146111b5575f80fd5b5f80604083850312156120df575f80fd5b6120e883612018565b91506120f6602084016120bf565b90509250929050565b5f6020828403121561210f575f80fd5b611ddf826120bf565b5f8060408385031215612129575f80fd5b61213283612018565b91506120f660208401612018565b5f805f805f60a08688031215612154575f80fd5b505083359560208501359550604085013594606081013594506080013592509050565b600181811c9082168061218b57607f821691505b6020821081036121a957634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176109fc576109fc6121e4565b5f8261222957634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156109fc576109fc6121e4565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109fc576109fc6121e4565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561233e5784516001600160a01b031683529383019391830191600101612319565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c773baf1f311be5f645bf126dc569577339c34903aaa0e82083c7b5939a86ef164736f6c634300081500334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x608060405260043610610310575f3560e01c80637571336a116101a3578063c8c8ebe4116100f2578063f170d7fd11610092578063f70468801161006d578063f7046880146108fe578063f8b45b0514610913578063f95a506414610928578063ff935af61461093d575f80fd5b8063f170d7fd146108ab578063f2fde38b146108ca578063f6374342146108e9575f80fd5b8063dd62ed3e116100cd578063dd62ed3e1461081e578063e2f4560514610862578063efdee94f14610877578063f11a24d314610896575f80fd5b8063c8c8ebe4146107d5578063d257b34f146107ea578063d85ba06314610809575f80fd5b8063a206a4081161015d578063bbc0c74211610138578063bbc0c7421461075a578063c024666814610778578063c18bc19514610797578063c345cd6d146107b6575f80fd5b8063a206a408146106fd578063a9059cbb1461071c578063aacebbe31461073b575f80fd5b80637571336a1461065b5780638322fff21461067a5780638a8c523c146106995780638da5cb5b146106ad578063924de9b7146106ca57806395d89b41146106e9575f80fd5b80634853e7d91161025f5780636190e0ef116102195780636ddd1713116101f45780636ddd1713146105e057806370a08231146105ff578063715018a614610633578063751039fc14610647575f80fd5b80636190e0ef146105a157806365c1bef8146105b65780636a486a8e146105cb575f80fd5b80634853e7d9146104df578063489ae78d146104f457806348c492d61461050957806349bd5a5e1461051e5780634a62bb65146105515780634fbee1931461056a575f80fd5b80631816467f116102ca57806323b872dd116102a557806323b872dd1461047b578063274a533c1461049a57806327c8f835146104af578063313ce567146104c4575f80fd5b80631816467f146104265780631d0a3a4314610447578063203e727e1461045c575f80fd5b806303fc20131461031b57806306fdde0314610357578063095ea7b31461037857806310d5de53146103a75780631694505e146103d557806318160ddd14610408575f80fd5b3661031757005b5f80fd5b348015610326575f80fd5b5060095461033a906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b348015610362575f80fd5b5061036b61095c565b60405161034e9190611fcd565b348015610383575f80fd5b5061039761039236600461202e565b6109ec565b604051901515815260200161034e565b3480156103b2575f80fd5b506103976103c1366004612056565b601f6020525f908152604090205460ff1681565b3480156103e0575f80fd5b5061033a7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b348015610413575f80fd5b506002545b60405190815260200161034e565b348015610431575f80fd5b50610445610440366004612056565b610a02565b005b348015610452575f80fd5b5061041860155481565b348015610467575f80fd5b5061044561047636600461206f565b610a91565b348015610486575f80fd5b50610397610495366004612086565b610b6e565b3480156104a5575f80fd5b5061041860075481565b3480156104ba575f80fd5b5061033a61dead81565b3480156104cf575f80fd5b506040516012815260200161034e565b3480156104ea575f80fd5b5061041860145481565b3480156104ff575f80fd5b5061041860135481565b348015610514575f80fd5b50610418601a5481565b348015610529575f80fd5b5061033a7f0000000000000000000000000f794105ce8c8db078bbcdec0d70a8ddd27d477681565b34801561055c575f80fd5b506011546103979060ff1681565b348015610575575f80fd5b50610397610584366004612056565b6001600160a01b03165f908152601e602052604090205460ff1690565b3480156105ac575f80fd5b50610418601c5481565b3480156105c1575f80fd5b5061041860195481565b3480156105d6575f80fd5b5061041860185481565b3480156105eb575f80fd5b506011546103979062010000900460ff1681565b34801561060a575f80fd5b50610418610619366004612056565b6001600160a01b03165f9081526020819052604090205490565b34801561063e575f80fd5b50610445610c16565b348015610652575f80fd5b50610397610c4b565b348015610666575f80fd5b506104456106753660046120ce565b610c87565b348015610685575f80fd5b5060065461033a906001600160a01b031681565b3480156106a4575f80fd5b50610445610cdb565b3480156106b8575f80fd5b506005546001600160a01b031661033a565b3480156106d5575f80fd5b506104456106e43660046120ff565b610d18565b3480156106f4575f80fd5b5061036b610d5e565b348015610708575f80fd5b50610445610717366004612056565b610d6d565b348015610727575f80fd5b5061039761073636600461202e565b610df3565b348015610746575f80fd5b50610445610755366004612056565b610dff565b348015610765575f80fd5b5060115461039790610100900460ff1681565b348015610783575f80fd5b506104456107923660046120ce565b610e85565b3480156107a2575f80fd5b506104456107b136600461206f565b610f0d565b3480156107c1575f80fd5b506104456107d0366004612056565b610fde565b3480156107e0575f80fd5b50610418600e5481565b3480156107f5575f80fd5b5061039761080436600461206f565b611064565b348015610814575f80fd5b5061041860125481565b348015610829575f80fd5b50610418610838366004612118565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561086d575f80fd5b50610418600f5481565b348015610882575f80fd5b5060085461033a906001600160a01b031681565b3480156108a1575f80fd5b5061041860175481565b3480156108b6575f80fd5b506104456108c5366004612140565b6111ba565b3480156108d5575f80fd5b506104456108e4366004612056565b611281565b3480156108f4575f80fd5b50610418601d5481565b348015610909575f80fd5b50610418601b5481565b34801561091e575f80fd5b5061041860105481565b348015610933575f80fd5b5061041860165481565b348015610948575f80fd5b50610445610957366004612140565b61131c565b60606003805461096b90612177565b80601f016020809104026020016040519081016040528092919081815260200182805461099790612177565b80156109e25780601f106109b9576101008083540402835291602001916109e2565b820191905f5260205f20905b8154815290600101906020018083116109c557829003601f168201915b5050505050905090565b5f6109f83384846113df565b5060015b92915050565b6005546001600160a01b03163314610a355760405162461bcd60e51b8152600401610a2c906121af565b60405180910390fd5b600a546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e743905f90a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610abb5760405162461bcd60e51b8152600401610a2c906121af565b670de0b6b3a76400006103e8610ad060025490565b610adb9060056121f8565b610ae5919061220f565b610aef919061220f565b811015610b565760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610a2c565b610b6881670de0b6b3a76400006121f8565b600e5550565b5f610b7a848484611502565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610bfe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a2c565b610c0b85338584036113df565b506001949350505050565b6005546001600160a01b03163314610c405760405162461bcd60e51b8152600401610a2c906121af565b610c495f611be7565b565b6005545f906001600160a01b03163314610c775760405162461bcd60e51b8152600401610a2c906121af565b506011805460ff19169055600190565b6005546001600160a01b03163314610cb15760405162461bcd60e51b8152600401610a2c906121af565b6001600160a01b03919091165f908152601f60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d055760405162461bcd60e51b8152600401610a2c906121af565b6011805462ffff00191662010100179055565b6005546001600160a01b03163314610d425760405162461bcd60e51b8152600401610a2c906121af565b60118054911515620100000262ff000019909216919091179055565b60606004805461096b90612177565b6005546001600160a01b03163314610d975760405162461bcd60e51b8152600401610a2c906121af565b600b546040516001600160a01b03918216918316907f6aeaf484884ebf48c15ec030c65c37769af9140a0f6ca0901cc4d23ff782189a905f90a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b5f6109f8338484611502565b6005546001600160a01b03163314610e295760405162461bcd60e51b8152600401610a2c906121af565b600d546040516001600160a01b03918216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc67905f90a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610eaf5760405162461bcd60e51b8152600401610a2c906121af565b6001600160a01b0382165f818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f375760405162461bcd60e51b8152600401610a2c906121af565b670de0b6b3a76400006103e8610f4c60025490565b610f579060056121f8565b610f61919061220f565b610f6b919061220f565b811015610fc65760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610a2c565b610fd881670de0b6b3a76400006121f8565b60105550565b6005546001600160a01b031633146110085760405162461bcd60e51b8152600401610a2c906121af565b600c546040516001600160a01b03918216918316907fbd70f2f82eae0a0f35da2a2be68f3af174e245656c40a3d1cf11d897349a89ed905f90a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6005545f906001600160a01b031633146110905760405162461bcd60e51b8152600401610a2c906121af565b620186a061109d60025490565b6110a89060016121f8565b6110b2919061220f565b82101561111f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a2c565b6103e861112b60025490565b6111369060056121f8565b611140919061220f565b8211156111ac5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a2c565b50600f81905560015b919050565b6005546001600160a01b031633146111e45760405162461bcd60e51b8152600401610a2c906121af565b60138590556014849055601554601684905560178290558184611207878961222e565b611211919061222e565b61121b919061222e565b611225919061222e565b60128190556063101561127a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610a2c565b5050505050565b6005546001600160a01b031633146112ab5760405162461bcd60e51b8152600401610a2c906121af565b6001600160a01b0381166113105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a2c565b61131981611be7565b50565b6005546001600160a01b031633146113465760405162461bcd60e51b8152600401610a2c906121af565b6019859055601a849055601b839055601c829055601d81905582818361136c878961222e565b611376919061222e565b611380919061222e565b61138a919061222e565b60188190556063101561127a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610a2c565b6001600160a01b0383166114415760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a2c565b6001600160a01b0382166114a25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a2c565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115285760405162461bcd60e51b8152600401610a2c90612241565b6001600160a01b03821661154e5760405162461bcd60e51b8152600401610a2c90612286565b805f036115655761156083835f611c38565b505050565b60115460ff1615611837576005546001600160a01b0384811691161480159061159c57506005546001600160a01b03838116911614155b80156115b057506001600160a01b03821615155b80156115c757506001600160a01b03821661dead14155b80156115dd5750600654600160a01b900460ff16155b1561183757601154610100900460ff16611673576001600160a01b0383165f908152601e602052604090205460ff168061162e57506001600160a01b0382165f908152601e602052604090205460ff165b6116735760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a2c565b7f0000000000000000000000000f794105ce8c8db078bbcdec0d70a8ddd27d47766001600160a01b0316836001600160a01b03161480156116cc57506001600160a01b0382165f908152601f602052604090205460ff16155b156117af57600e548111156117415760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a2c565b6010546001600160a01b0383165f90815260208190526040902054611766908361222e565b11156117aa5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a2c565b611837565b6001600160a01b0382165f908152601f602052604090205460ff16611837576010546001600160a01b0383165f908152602081905260409020546117f3908361222e565b11156118375760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a2c565b305f90815260208190526040902054600f5481108015908190611862575060115462010000900460ff165b80156118785750600654600160a01b900460ff16155b80156118b557507f0000000000000000000000000f794105ce8c8db078bbcdec0d70a8ddd27d47766001600160a01b0316846001600160a01b0316145b80156118d957506001600160a01b0385165f908152601e602052604090205460ff16155b80156118fd57506001600160a01b0384165f908152601e602052604090205460ff16155b1561192b576006805460ff60a01b1916600160a01b17905561191d611d8b565b6006805460ff60a01b191690555b6006546001600160a01b0386165f908152601e602052604090205460ff600160a01b90920482161591168061197757506001600160a01b0385165f908152601e602052604090205460ff165b1561197f57505f5b5f805f805f808615611bce577f0000000000000000000000000f794105ce8c8db078bbcdec0d70a8ddd27d47766001600160a01b03168b6001600160a01b03161480156119cd57505f601854115b15611a8a576119f260646119ec6018548d611dd490919063ffffffff16565b90611de6565b9550601854601d5487611a0591906121f8565b611a0f919061220f565b945060185460195487611a2291906121f8565b611a2c919061220f565b9350601854601a5487611a3f91906121f8565b611a49919061220f565b9250601854601c5487611a5c91906121f8565b611a66919061220f565b9150601854601b5487611a7991906121f8565b611a83919061220f565b9050611b7f565b7f0000000000000000000000000f794105ce8c8db078bbcdec0d70a8ddd27d47766001600160a01b03168c6001600160a01b0316148015611acc57505f601254115b15611b7f57611aeb60646119ec6012548d611dd490919063ffffffff16565b955060125460175487611afe91906121f8565b611b08919061220f565b945060125460135487611b1b91906121f8565b611b25919061220f565b935060125460145487611b3891906121f8565b611b42919061220f565b925060125460165487611b5591906121f8565b611b5f919061220f565b915060125460155487611b7291906121f8565b611b7c919061220f565b90505b8515611b9057611b908c3088611c38565b8415611bc157611bc1307f0000000000000000000000000f794105ce8c8db078bbcdec0d70a8ddd27d477687611c38565b611bcb868b6122c9565b99505b611bd98c8c8c611c38565b505050505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316611c5e5760405162461bcd60e51b8152600401610a2c90612241565b6001600160a01b038216611c845760405162461bcd60e51b8152600401610a2c90612286565b6001600160a01b0383165f9081526020819052604090205481811015611cfb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a2c565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611d3190849061222e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d7d91815260200190565b60405180910390a350505050565b305f9081526020819052604081205490819003611da55750565b600f54611db39060146121f8565b811115611dcb57600f54611dc89060146121f8565b90505b61131981611df1565b5f611ddf82846121f8565b9392505050565b5f611ddf828461220f565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611e2457611e246122dc565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611e5557611e556122dc565b60200260200101906001600160a01b031690816001600160a01b031681525050611ea0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113df565b600a54604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611efb9287925f928892919091169042906004016122f0565b5f604051808303815f87803b158015611f12575f80fd5b505af1158015611f24573d5f803e3d5ffd5b5050600b546040516001600160a01b0390911692504780156108fc029250905f818181858888f19350505050158015611f5f573d5f803e3d5ffd5b50600d546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015611f96573d5f803e3d5ffd5b50600c546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015611560573d5f803e3d5ffd5b5f6020808352835180828501525f5b81811015611ff857858101830151858201604001528201611fdc565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146111b5575f80fd5b5f806040838503121561203f575f80fd5b61204883612018565b946020939093013593505050565b5f60208284031215612066575f80fd5b611ddf82612018565b5f6020828403121561207f575f80fd5b5035919050565b5f805f60608486031215612098575f80fd5b6120a184612018565b92506120af60208501612018565b9150604084013590509250925092565b803580151581146111b5575f80fd5b5f80604083850312156120df575f80fd5b6120e883612018565b91506120f6602084016120bf565b90509250929050565b5f6020828403121561210f575f80fd5b611ddf826120bf565b5f8060408385031215612129575f80fd5b61213283612018565b91506120f660208401612018565b5f805f805f60a08688031215612154575f80fd5b505083359560208501359550604085013594606081013594506080013592509050565b600181811c9082168061218b57607f821691505b6020821081036121a957634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176109fc576109fc6121e4565b5f8261222957634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156109fc576109fc6121e4565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109fc576109fc6121e4565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561233e5784516001600160a01b031683529383019391830191600101612319565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c773baf1f311be5f645bf126dc569577339c34903aaa0e82083c7b5939a86ef164736f6c63430008150033
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.