ERC-20
Overview
Max Total Supply
1,000,000,000,000,000 SHIBORG
Holders
195
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
1,262,282.705335645 SHIBORGValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ShiborgInuEther
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** Telegram Portal: https://t.me/ShiborgInu Website: https://shiborgtoken.com/ Twitter: https://twitter.com/ShiborgToken Facebook: https://www.facebook.com/ShiborgToken */ /// @custom:security-contact [email protected] pragma solidity ^0.8.10; // SPDX-License-Identifier: Unlicensed interface IERC20 { 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 ); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return payable(msg.sender); } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}( data ); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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. */ contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } function geUnlockTime() public view returns (uint256) { return _lockTime; } //Locks the contract for owner for the amount of time provided function lock(uint256 time) public virtual onlyOwner { _previousOwner = _owner; _owner = address(0); _lockTime = block.timestamp + time; emit OwnershipTransferred(_owner, address(0)); } //Unlocks the contract for owner when _lockTime is exceeds function unlock() public virtual { require( _previousOwner == msg.sender, "You don't have permission to unlock" ); require(block.timestamp > _lockTime, "Contract is locked until a later date"); emit OwnershipTransferred(_owner, _previousOwner); _owner = _previousOwner; _previousOwner = address(0); } } /** * @title TokenRecover * @author Vittorio Minacori (https://github.com/vittominacori) * @dev Allows owner to recover any ERC20 sent into the contract */ contract TokenRecover is Ownable { /** * @dev Remember that only owner can call so be careful when use on contracts generated from other contracts. * @param tokenAddress The token contract address * @param tokenAmount Number of tokens to be sent */ function recoverERC20(address tokenAddress, uint256 tokenAmount) public virtual onlyOwner { IERC20(tokenAddress).transfer(owner(), tokenAmount); } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } // pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract ShiborgInuEther is Context, IERC20, Ownable, TokenRecover { using SafeMath for uint256; using Address for address; mapping(address => uint256) private _rOwned; mapping(address => uint256) private _tOwned; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private _isExcluded; address[] private _excluded; mapping(address => bool) private _isBlackListedBot; mapping(address => bool) private _isExcludedFromLimit; address[] private _blackListedBots; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 1000000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; address payable public _devwallet = payable(address(0x44d09f1495F4ab34F2C198cAb3FB63E9Fe9F82Dd)); address private _donationAddress = 0x1AB28f05A083a8C9071700A8e66dA5CeEc588C4A; string private _name = "SHIBORG INU ETH"; string private _symbol = "SHIBORG"; uint8 private _decimals = 9; struct BuyFee { uint16 tax; uint16 liquidity; uint16 marketing; uint16 dev; uint16 donation; } struct SellFee { uint16 tax; uint16 liquidity; uint16 marketing; uint16 dev; uint16 donation; } BuyFee public buyFee; SellFee public sellFee; uint16 private _taxFee; uint16 private _liquidityFee; uint16 private _marketingFee; uint16 private _devFee; uint16 private _donationFee; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = 1000000000 * 10**6 * 10**9; uint256 private numTokensSellToAddToLiquidity = 500000 * 10**6 * 10**9; uint256 public _maxWalletSize = 1 * 10**13 * 10**9; event botAddedToBlacklist(address account); event botRemovedFromBlacklist(address account); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor() { _rOwned[_msgSender()] = _rTotal; buyFee.tax = 2; buyFee.liquidity = 8; buyFee.marketing = 0; buyFee.dev = 0; buyFee.donation = 0; sellFee.tax = 2; sellFee.liquidity = 8; sellFee.marketing = 0; sellFee.dev = 0; sellFee.donation = 0; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; // exclude owner, dev wallet, and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_devwallet] = true; _isExcludedFromLimit[_devwallet] = true; _isExcludedFromLimit[owner()] = true; _isExcludedFromLimit[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function setRouterAddress(address payable newRouter) external onlyOwner { require(newRouter != address(uniswapV2Router), "The router already has that address"); IUniswapV2Router02 _newUniswapRouter = IUniswapV2Router02(newRouter); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), _newUniswapRouter.WETH()); uniswapV2Router = _newUniswapRouter; } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function donationAddress() public view returns (address) { return _donationAddress; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require( !_isExcluded[sender], "Excluded addresses cannot call this function" ); ( , uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tDonation ) = _getTValues(tAmount); (uint256 rAmount, , ) = _getRValues( tAmount, tFee, tLiquidity, tWallet, tDonation, _getRate() ); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns (uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); ( , uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tDonation ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, ) = _getRValues( tAmount, tFee, tLiquidity, tWallet, tDonation, _getRate() ); if (!deductTransferFee) { return rAmount; } else { return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns (uint256) { require( rAmount <= _rTotal, "Amount must be less than total reflections" ); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function updateDevWallet(address payable newAddress) external onlyOwner { _devwallet = newAddress; } function addBotToBlacklist(address account) external onlyOwner { require( account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, "We cannot blacklist UniSwap router" ); require(!_isBlackListedBot[account], "Account is already blacklisted"); _isBlackListedBot[account] = true; _blackListedBots.push(account); emit botAddedToBlacklist(account); } function isBotBlacklisted(address account) public view returns(bool) { return _isBlackListedBot[account]; } function removeBotFromBlacklist(address account) external onlyOwner { require(_isBlackListedBot[account], "Account is not blacklisted"); for (uint256 i = 0; i < _blackListedBots.length; i++) { if (_blackListedBots[i] == account) { _blackListedBots[i] = _blackListedBots[ _blackListedBots.length - 1 ]; _isBlackListedBot[account] = false; _blackListedBots.pop(); break; } } emit botRemovedFromBlacklist(account); } function excludeFromReward(address account) public onlyOwner { require(!_isExcluded[account], "Account is already excluded"); if (_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner { require(_isExcluded[account], "Account is not excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function excludeFromLimit(address account) public onlyOwner { _isExcludedFromLimit[account] = true; } function includeInLimit(address account) public onlyOwner { _isExcludedFromLimit[account] = false; } function setSellFee( uint16 tax, uint16 liquidity, uint16 marketing, uint16 dev, uint16 donation ) external onlyOwner { sellFee.tax = tax; sellFee.marketing = marketing; sellFee.liquidity = liquidity; sellFee.dev = dev; sellFee.donation = donation; } function setBuyFee( uint16 tax, uint16 liquidity, uint16 marketing, uint16 dev, uint16 donation ) external onlyOwner { buyFee.tax = tax; buyFee.marketing = marketing; buyFee.liquidity = liquidity; buyFee.dev = dev; buyFee.donation = donation; } function setBothFees( uint16 buy_tax, uint16 buy_liquidity, uint16 buy_marketing, uint16 buy_dev, uint16 buy_donation, uint16 sell_tax, uint16 sell_liquidity, uint16 sell_marketing, uint16 sell_dev, uint16 sell_donation ) external onlyOwner { buyFee.tax = buy_tax; buyFee.marketing = buy_marketing; buyFee.liquidity = buy_liquidity; buyFee.dev = buy_dev; buyFee.donation = buy_donation; sellFee.tax = sell_tax; sellFee.marketing = sell_marketing; sellFee.liquidity = sell_liquidity; sellFee.dev = sell_dev; sellFee.donation = sell_donation; } function setNumTokensSellToAddToLiquidity(uint256 numTokens) external onlyOwner { numTokensSellToAddToLiquidity = numTokens; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner { _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**2); } function _setMaxWalletSizePercent(uint256 maxWalletSize) external onlyOwner { _maxWalletSize = _tTotal.mul(maxWalletSize).div(10**2); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to receive ETH from uniswapV2Router when swapping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getTValues(uint256 tAmount) private view returns ( uint256, uint256, uint256, uint256, uint256 ) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tWallet = calculateMarketingFee(tAmount) + calculateDevFee(tAmount); uint256 tDonation = calculateDonationFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); tTransferAmount = tTransferAmount.sub(tWallet); tTransferAmount = tTransferAmount.sub(tDonation); return (tTransferAmount, tFee, tLiquidity, tWallet, tDonation); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tDonation, uint256 currentRate ) private pure returns ( uint256, uint256, uint256 ) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rWallet = tWallet.mul(currentRate); uint256 rDonation = tDonation.mul(currentRate); uint256 rTransferAmount = rAmount .sub(rFee) .sub(rLiquidity) .sub(rWallet) .sub(rDonation); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns (uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if ( _rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply ) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if (_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function _takeWalletFee(uint256 tWallet) private { uint256 currentRate = _getRate(); uint256 rWallet = tWallet.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rWallet); if (_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tWallet); } function _takeDonationFee(uint256 tDonation) private { uint256 currentRate = _getRate(); uint256 rDonation = tDonation.mul(currentRate); _rOwned[_donationAddress] = _rOwned[_donationAddress].add(rDonation); if (_isExcluded[_donationAddress]) _tOwned[_donationAddress] = _tOwned[_donationAddress].add( tDonation ); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div(10**2); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div(10**2); } function calculateMarketingFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_marketingFee).div(10**2); } function calculateDonationFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_donationFee).div(10**2); } function calculateDevFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_devFee).div(10**2); } function removeAllFee() private { if (_taxFee == 0 && _liquidityFee == 0) return; _taxFee = 0; _liquidityFee = 0; _marketingFee = 0; _donationFee = 0; _devFee = 0; } function setBuy() private { _taxFee = buyFee.tax; _liquidityFee = buyFee.liquidity; _marketingFee = buyFee.marketing; _donationFee = buyFee.donation; _devFee = buyFee.dev; } function setSell() private { _taxFee = sellFee.tax; _liquidityFee = sellFee.liquidity; _marketingFee = sellFee.marketing; _donationFee = sellFee.donation; _devFee = sellFee.dev; } function isExcludedFromFee(address account) public view returns (bool) { return _isExcludedFromFee[account]; } function isExcludedFromLimit(address account) public view returns (bool) { return _isExcludedFromLimit[account]; } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); require(!_isBlackListedBot[from], "from is blacklisted"); require(!_isBlackListedBot[msg.sender], "you are blacklisted"); require(!_isBlackListedBot[tx.origin], "blacklisted"); if(to != uniswapV2Pair) { require(balanceOf(to) + amount < _maxWalletSize, "TOKEN: Balance exceeds wallet size!"); } if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) { require(amount <= _maxTxAmount,"Transfer amount exceeds the maxTxAmount."); } // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if (contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if ((_isExcludedFromFee[from] || _isExcludedFromFee[to]) || (from != uniswapV2Pair && to != uniswapV2Pair)) { takeFee = false; } else { //Set Fee for Buys if(from == uniswapV2Pair && to != address(uniswapV2Router)) { setBuy(); } //Set Fee for Sells if (to == uniswapV2Pair && from != address(uniswapV2Router)) { setSell(); } } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from, to, amount, takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee ) private { if (!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } removeAllFee(); } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tDonation ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tWallet, tDonation, _getRate() ); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeWalletFee(tWallet); _takeDonationFee(tDonation); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tDonation ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tWallet, tDonation, _getRate() ); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeWalletFee(tWallet); _takeDonationFee(tDonation); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tDonation ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tWallet, tDonation, _getRate() ); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeWalletFee(tWallet); _takeDonationFee(tDonation); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tDonation ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tWallet, tDonation, _getRate() ); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeWalletFee(tWallet); _takeDonationFee(tDonation); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botAddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botRemovedFromBlacklist","type":"event"},{"inputs":[],"name":"_devwallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"_setMaxWalletSizePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlacklist","outputs":[],"stateMutability":"nonpayable","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":"buyFee","outputs":[{"internalType":"uint16","name":"tax","type":"uint16"},{"internalType":"uint16","name":"liquidity","type":"uint16"},{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"dev","type":"uint16"},{"internalType":"uint16","name":"donation","type":"uint16"}],"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":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"donationAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBotBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint16","name":"tax","type":"uint16"},{"internalType":"uint16","name":"liquidity","type":"uint16"},{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"dev","type":"uint16"},{"internalType":"uint16","name":"donation","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"buy_tax","type":"uint16"},{"internalType":"uint16","name":"buy_liquidity","type":"uint16"},{"internalType":"uint16","name":"buy_marketing","type":"uint16"},{"internalType":"uint16","name":"buy_dev","type":"uint16"},{"internalType":"uint16","name":"buy_donation","type":"uint16"},{"internalType":"uint16","name":"sell_tax","type":"uint16"},{"internalType":"uint16","name":"sell_liquidity","type":"uint16"},{"internalType":"uint16","name":"sell_marketing","type":"uint16"},{"internalType":"uint16","name":"sell_dev","type":"uint16"},{"internalType":"uint16","name":"sell_donation","type":"uint16"}],"name":"setBothFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"tax","type":"uint16"},{"internalType":"uint16","name":"liquidity","type":"uint16"},{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"dev","type":"uint16"},{"internalType":"uint16","name":"donation","type":"uint16"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"tax","type":"uint16"},{"internalType":"uint16","name":"liquidity","type":"uint16"},{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"dev","type":"uint16"},{"internalType":"uint16","name":"donation","type":"uint16"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newAddress","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405269d3c21bcecceda1000000600c8190556200002290600019620004b2565b6200003090600019620004d5565b600d55600f80546001600160a01b03199081167344d09f1495f4ab34f2c198cab3fb63e9fe9f82dd17825560108054909116731ab28f05a083a8c9071700a8e66da5ceec588c4a179055604080518082019091528181526e0a69092849ea48e40929caa408aa89608b1b6020909101908152620000b191601191906200040c565b5060408051808201909152600780825266534849424f524760c81b6020909201918252620000e2916012916200040c565b506013805460ff191660091790556017805460ff60a81b1916600160a81b17905569d3c21bcecceda1000000601855681b1ae4d6e2ef50000060195569021e19e0c9bab2400000601a553480156200013957600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600d54336000908152600360209081526040918290209290925560148054620800026001600160501b03199182168117909255601580549091169091179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa15801562000207573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022d9190620004fb565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a19190620004fb565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003159190620004fb565b601780546001600160a01b0319166001600160a01b0392831617905560168054600160501b600160f01b0319166a0100000000000000000000848416021790556000805482168152600660209081526040808320805460ff199081166001908117909255308086528386208054831684179055600f80548816875284872080548416851790555487168652600a85528386208054831684179055855490961685528285208054821683179055948452818420805490951617909355600c54925192835233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3506200056a565b8280546200041a906200052d565b90600052602060002090601f0160209004810192826200043e576000855562000489565b82601f106200045957805160ff191683800117855562000489565b8280016001018555821562000489579182015b82811115620004895782518255916020019190600101906200046c565b50620004979291506200049b565b5090565b5b808211156200049757600081556001016200049c565b600082620004d057634e487b7160e01b600052601260045260246000fd5b500690565b600082821015620004f657634e487b7160e01b600052601160045260246000fd5b500390565b6000602082840312156200050e57600080fd5b81516001600160a01b03811681146200052657600080fd5b9392505050565b600181811c908216806200054257607f821691505b602082108114156200056457634e487b7160e01b600052602260045260246000fd5b50919050565b613b18806200057a6000396000f3fe6080604052600436106103035760003560e01c806352390c0211610190578063a9059cbb116100dc578063d94160e011610095578063ea2f0b371161006f578063ea2f0b3714610a03578063ec034bed14610a23578063f0f165af14610a41578063f2fde38b14610a6157600080fd5b8063d94160e014610964578063dd4670641461099d578063dd62ed3e146109bd57600080fd5b8063a9059cbb146108af578063af2ce614146108cf578063b030b34a146108ef578063b6c523241461090f578063c49b9a8014610924578063d543dbeb1461094457600080fd5b80638980f11f1161014957806391d919a91161012357806391d919a91461084557806395d89b4114610865578063a457c2d71461087a578063a69df4b51461089a57600080fd5b80638980f11f146107f15780638da5cb5b146108115780638f9a55c01461082f57600080fd5b806352390c02146107145780635342acb41461073457806370a082311461076d578063715018a61461078d5780637d1db4a5146107a257806388f82020146107b857600080fd5b80632d8381191161024f578063437823ec1161020857806347062402116101e2578063470624021461066f57806349bd5a5e146106b35780634a74bb02146106d35780634cfd4a92146106f457600080fd5b8063437823ec1461060f5780634549b0391461062f578063469629a91461064f57600080fd5b80632d8381191461054d578063313ce5671461056d5780633685d4191461058f57806339509351146105af5780633bd5d173146105cf57806341cb87fc146105ef57600080fd5b80631694505e116102bc5780631c4a78ef116102965780631c4a78ef146104745780631d7ef8791461049457806323b872dd146104b45780632b14ca56146104d457600080fd5b80631694505e1461040057806318160ddd1461043f5780631816467f1461045457600080fd5b806305cb48931461030f57806306fdde031461035d578063095ea7b31461037f5780630bd3a7f91461039f57806313114a9d146103c15780631465d929146103e057600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b5061034861032a3660046135a8565b6001600160a01b031660009081526009602052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561036957600080fd5b50610372610a81565b60405161035491906135c5565b34801561038b57600080fd5b5061034861039a36600461361a565b610b13565b3480156103ab57600080fd5b506103bf6103ba3660046135a8565b610b2a565b005b3480156103cd57600080fd5b50600e545b604051908152602001610354565b3480156103ec57600080fd5b506103bf6103fb36600461365d565b610b81565b34801561040c57600080fd5b5060165461042790600160501b90046001600160a01b031681565b6040516001600160a01b039091168152602001610354565b34801561044b57600080fd5b50600c546103d2565b34801561046057600080fd5b506103bf61046f3660046135a8565b610c1d565b34801561048057600080fd5b50600f54610427906001600160a01b031681565b3480156104a057600080fd5b506103bf6104af3660046135a8565b610c69565b3480156104c057600080fd5b506103486104cf3660046136c2565b610e11565b3480156104e057600080fd5b506015546105189061ffff80821691620100008104821691600160201b8204811691600160301b8104821691600160401b9091041685565b6040805161ffff968716815294861660208601529285169284019290925283166060830152909116608082015260a001610354565b34801561055957600080fd5b506103d2610568366004613703565b610e7a565b34801561057957600080fd5b5060135460405160ff9091168152602001610354565b34801561059b57600080fd5b506103bf6105aa3660046135a8565b610efe565b3480156105bb57600080fd5b506103486105ca36600461361a565b6110b5565b3480156105db57600080fd5b506103bf6105ea366004613703565b6110eb565b3480156105fb57600080fd5b506103bf61060a3660046135a8565b6111f9565b34801561061b57600080fd5b506103bf61062a3660046135a8565b61143f565b34801561063b57600080fd5b506103d261064a36600461372a565b61148d565b34801561065b57600080fd5b506103bf61066a36600461375a565b611530565b34801561067b57600080fd5b506014546105189061ffff80821691620100008104821691600160201b8204811691600160301b8104821691600160401b9091041685565b3480156106bf57600080fd5b50601754610427906001600160a01b031681565b3480156106df57600080fd5b5060175461034890600160a81b900460ff1681565b34801561070057600080fd5b506103bf61070f36600461365d565b6116a6565b34801561072057600080fd5b506103bf61072f3660046135a8565b611742565b34801561074057600080fd5b5061034861074f3660046135a8565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561077957600080fd5b506103d26107883660046135a8565b611895565b34801561079957600080fd5b506103bf6118f4565b3480156107ae57600080fd5b506103d260185481565b3480156107c457600080fd5b506103486107d33660046135a8565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156107fd57600080fd5b506103bf61080c36600461361a565b611956565b34801561081d57600080fd5b506000546001600160a01b0316610427565b34801561083b57600080fd5b506103d2601a5481565b34801561085157600080fd5b506103bf6108603660046135a8565b611a17565b34801561087157600080fd5b50610372611a62565b34801561088657600080fd5b5061034861089536600461361a565b611a71565b3480156108a657600080fd5b506103bf611ac0565b3480156108bb57600080fd5b506103486108ca36600461361a565b611bd7565b3480156108db57600080fd5b506103bf6108ea366004613703565b611be4565b3480156108fb57600080fd5b506103bf61090a3660046135a8565b611c34565b34801561091b57600080fd5b506002546103d2565b34801561093057600080fd5b506103bf61093f366004613814565b611e19565b34801561095057600080fd5b506103bf61095f366004613703565b611e90565b34801561097057600080fd5b5061034861097f3660046135a8565b6001600160a01b03166000908152600a602052604090205460ff1690565b3480156109a957600080fd5b506103bf6109b8366004613703565b611eda565b3480156109c957600080fd5b506103d26109d8366004613831565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b348015610a0f57600080fd5b506103bf610a1e3660046135a8565b611f5f565b348015610a2f57600080fd5b506010546001600160a01b0316610427565b348015610a4d57600080fd5b506103bf610a5c366004613703565b611faa565b348015610a6d57600080fd5b506103bf610a7c3660046135a8565b611fd9565b606060118054610a909061385f565b80601f0160208091040260200160405190810160405280929190818152602001828054610abc9061385f565b8015610b095780601f10610ade57610100808354040283529160200191610b09565b820191906000526020600020905b815481529060010190602001808311610aec57829003601f168201915b5050505050905090565b6000610b203384846120b1565b5060015b92915050565b6000546001600160a01b03163314610b5d5760405162461bcd60e51b8152600401610b549061389a565b60405180910390fd5b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6000546001600160a01b03163314610bab5760405162461bcd60e51b8152600401610b549061389a565b6014805461ffff928316600160401b0261ffff60401b19948416600160301b0261ffff60301b1997851662010000029790971667ffff0000ffff000019968516600160201b0265ffff0000ffff1990931694909816939093171793909316949094179290921791909116919091179055565b6000546001600160a01b03163314610c475760405162461bcd60e51b8152600401610b549061389a565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610c935760405162461bcd60e51b8152600401610b549061389a565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d0b5760405162461bcd60e51b815260206004820152602260248201527f57652063616e6e6f7420626c61636b6c69737420556e695377617020726f757460448201526132b960f11b6064820152608401610b54565b6001600160a01b03811660009081526009602052604090205460ff1615610d745760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610b54565b6001600160a01b0381166000818152600960209081526040808320805460ff19166001908117909155600b805491820181559093527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db990920180546001600160a01b0319168417905590519182527f6cf65f3ff491cb358bea0efd5ee0fe0340757225d38a096d09c637ba897a679f91015b60405180910390a150565b6000610e1e8484846121d5565b610e708433610e6b85604051806060016040528060288152602001613a76602891396001600160a01b038a166000908152600560209081526040808320338452909152902054919061278f565b6120b1565b5060019392505050565b6000600d54821115610ee15760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610b54565b6000610eeb6127c9565b9050610ef783826127ec565b9392505050565b6000546001600160a01b03163314610f285760405162461bcd60e51b8152600401610b549061389a565b6001600160a01b03811660009081526007602052604090205460ff16610f905760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610b54565b60005b6008548110156110b157816001600160a01b031660088281548110610fba57610fba6138cf565b6000918252602090912001546001600160a01b0316141561109f5760088054610fe5906001906138fb565b81548110610ff557610ff56138cf565b600091825260209091200154600880546001600160a01b039092169183908110611021576110216138cf565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff19169055600880548061107957611079613912565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b806110a981613928565b915050610f93565b5050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091610b20918590610e6b908661282e565b3360008181526007602052604090205460ff16156111605760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610b54565b60008060008061116f8661288d565b945094509450945050600061118f878686868661118a6127c9565b61291c565b50506001600160a01b0387166000908152600360205260409020549091506111b79082612990565b6001600160a01b038716600090815260036020526040902055600d546111dd9082612990565b600d55600e546111ed908861282e565b600e5550505050505050565b6000546001600160a01b031633146112235760405162461bcd60e51b8152600401610b549061389a565b6016546001600160a01b03828116600160501b9092041614156112945760405162461bcd60e51b815260206004820152602360248201527f54686520726f7574657220616c7265616479206861732074686174206164647260448201526265737360e81b6064820152608401610b54565b6016546040805163c45a015560e01b815290518392600160501b90046001600160a01b03169163c45a01559160048083019260209291908290030181865afa1580156112e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113089190613943565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611355573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113799190613943565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156113c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ea9190613943565b601780546001600160a01b0319166001600160a01b03928316179055601680547fffff0000000000000000000000000000000000000000ffffffffffffffffffff16600160501b939092169290920217905550565b6000546001600160a01b031633146114695760405162461bcd60e51b8152600401610b549061389a565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600c548311156114e15760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610b54565b6000806000806114f08761288d565b94509450945094505060008061150c898787878761118a6127c9565b50915091508761152357509450610b249350505050565b9550610b24945050505050565b6000546001600160a01b0316331461155a5760405162461bcd60e51b8152600401610b549061389a565b89601460000160006101000a81548161ffff021916908361ffff16021790555087601460000160046101000a81548161ffff021916908361ffff16021790555088601460000160026101000a81548161ffff021916908361ffff16021790555086601460000160066101000a81548161ffff021916908361ffff16021790555085601460000160086101000a81548161ffff021916908361ffff16021790555084601560000160006101000a81548161ffff021916908361ffff16021790555082601560000160046101000a81548161ffff021916908361ffff16021790555083601560000160026101000a81548161ffff021916908361ffff16021790555081601560000160066101000a81548161ffff021916908361ffff16021790555080601560000160086101000a81548161ffff021916908361ffff16021790555050505050505050505050565b6000546001600160a01b031633146116d05760405162461bcd60e51b8152600401610b549061389a565b6015805461ffff928316600160401b0261ffff60401b19948416600160301b0261ffff60301b1997851662010000029790971667ffff0000ffff000019968516600160201b0265ffff0000ffff1990931694909816939093171793909316949094179290921791909116919091179055565b6000546001600160a01b0316331461176c5760405162461bcd60e51b8152600401610b549061389a565b6001600160a01b03811660009081526007602052604090205460ff16156117d55760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610b54565b6001600160a01b0381166000908152600360205260409020541561182f576001600160a01b03811660009081526003602052604090205461181590610e7a565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b03811660009081526007602052604081205460ff16156118d257506001600160a01b031660009081526004602052604090205490565b6001600160a01b038216600090815260036020526040902054610b2490610e7a565b6000546001600160a01b0316331461191e5760405162461bcd60e51b8152600401610b549061389a565b600080546040516001600160a01b0390911690600080516020613a9e833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146119805760405162461bcd60e51b8152600401610b549061389a565b816001600160a01b031663a9059cbb6119a16000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156119ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a129190613960565b505050565b6000546001600160a01b03163314611a415760405162461bcd60e51b8152600401610b549061389a565b6001600160a01b03166000908152600a60205260409020805460ff19169055565b606060128054610a909061385f565b6000610b203384610e6b85604051806060016040528060258152602001613abe602591393360009081526005602090815260408083206001600160a01b038d168452909152902054919061278f565b6001546001600160a01b03163314611b265760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610b54565b6002544211611b855760405162461bcd60e51b815260206004820152602560248201527f436f6e7472616374206973206c6f636b656420756e74696c2061206c61746572604482015264206461746560d81b6064820152608401610b54565b600154600080546040516001600160a01b039384169390911691600080516020613a9e83398151915291a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b6000610b203384846121d5565b6000546001600160a01b03163314611c0e5760405162461bcd60e51b8152600401610b549061389a565b611c2e6064611c2883600c546129d290919063ffffffff16565b906127ec565b601a5550565b6000546001600160a01b03163314611c5e5760405162461bcd60e51b8152600401610b549061389a565b6001600160a01b03811660009081526009602052604090205460ff16611cc65760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610b54565b60005b600b54811015611ddf57816001600160a01b0316600b8281548110611cf057611cf06138cf565b6000918252602090912001546001600160a01b03161415611dcd57600b8054611d1b906001906138fb565b81548110611d2b57611d2b6138cf565b600091825260209091200154600b80546001600160a01b039092169183908110611d5757611d576138cf565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600b805480611da657611da6613912565b600082815260209020810160001990810180546001600160a01b0319169055019055611ddf565b80611dd781613928565b915050611cc9565b506040516001600160a01b03821681527fbbde34c13f8f74d401949e0eb9a888308ee89bb0887791bba7e8dd0bced4704190602001610e06565b6000546001600160a01b03163314611e435760405162461bcd60e51b8152600401610b549061389a565b60178054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610e0690831515815260200190565b6000546001600160a01b03163314611eba5760405162461bcd60e51b8152600401610b549061389a565b611ed46064611c2883600c546129d290919063ffffffff16565b60185550565b6000546001600160a01b03163314611f045760405162461bcd60e51b8152600401610b549061389a565b60008054600180546001600160a01b03199081166001600160a01b03841617909155169055611f33814261397d565b600255600080546040516001600160a01b0390911690600080516020613a9e833981519152908390a350565b6000546001600160a01b03163314611f895760405162461bcd60e51b8152600401610b549061389a565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b03163314611fd45760405162461bcd60e51b8152600401610b549061389a565b601955565b6000546001600160a01b031633146120035760405162461bcd60e51b8152600401610b549061389a565b6001600160a01b0381166120685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b54565b600080546040516001600160a01b0380851693921691600080516020613a9e83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166121135760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b54565b6001600160a01b0382166121745760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b54565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166122395760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b54565b6001600160a01b03821661229b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b54565b600081116122fd5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610b54565b6001600160a01b03831660009081526009602052604090205460ff161561235c5760405162461bcd60e51b8152602060048201526013602482015272199c9bdb481a5cc8189b1858dadb1a5cdd1959606a1b6044820152606401610b54565b3360009081526009602052604090205460ff16156123b25760405162461bcd60e51b81526020600482015260136024820152721e5bdd48185c9948189b1858dadb1a5cdd1959606a1b6044820152606401610b54565b3260009081526009602052604090205460ff16156124005760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b6044820152606401610b54565b6017546001600160a01b0383811691161461248557601a548161242284611895565b61242c919061397d565b106124855760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b6064820152608401610b54565b6001600160a01b0383166000908152600a602052604090205460ff161580156124c757506001600160a01b0382166000908152600a602052604090205460ff16155b1561252f5760185481111561252f5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610b54565b600061253a30611895565b9050601854811061254a57506018545b601954811080159081906125685750601754600160a01b900460ff16155b801561258257506017546001600160a01b03868116911614155b80156125975750601754600160a81b900460ff165b156125aa5760195491506125aa82612a51565b6001600160a01b03851660009081526006602052604090205460019060ff16806125ec57506001600160a01b03851660009081526006602052604090205460ff165b8061261e57506017546001600160a01b0387811691161480159061261e57506017546001600160a01b03868116911614155b1561262b5750600061277b565b6017546001600160a01b03878116911614801561265d57506016546001600160a01b03868116600160501b9092041614155b156126d3576014546016805461ffff80841663ffffffff1990921691909117620100008085048316021769ffff0000ffff000000001916600160201b80850483160261ffff60401b191617600160401b8085048316021761ffff60301b1916600160301b93849004919091169092029190911790555b6017546001600160a01b03868116911614801561270557506016546001600160a01b03878116600160501b9092041614155b1561277b576015546016805461ffff80841663ffffffff1990921691909117620100008085048316021769ffff0000ffff000000001916600160201b80850483160261ffff60401b191617600160401b8085048316021761ffff60301b1916600160301b93849004919091169092029190911790555b61278786868684612af8565b505050505050565b600081848411156127b35760405162461bcd60e51b8152600401610b5491906135c5565b5060006127c084866138fb565b95945050505050565b60008060006127d6612c67565b90925090506127e582826127ec565b9250505090565b6000610ef783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612de9565b60008061283b838561397d565b905083811015610ef75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b54565b60008060008060008061289f87612e17565b905060006128ac88612e33565b905060006128b989612e55565b6128c28a612e78565b6128cc919061397d565b905060006128d98a612e9b565b905060006128f1846128eb8d88612990565b90612990565b90506128fd8184612990565b90506129098183612990565b9b949a5092985090965094509092505050565b600080808061292b8a866129d2565b905060006129398a876129d2565b905060006129478a886129d2565b905060006129558a896129d2565b905060006129638a8a6129d2565b90506000612979826128eb858188818c8c612990565b959f959e50939c50939a5050505050505050505050565b6000610ef783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061278f565b6000826129e157506000610b24565b60006129ed8385613995565b9050826129fa85836139b4565b14610ef75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610b54565b6017805460ff60a01b1916600160a01b1790556000612a718260026127ec565b90506000612a7f8383612990565b905047612a8b83612ebe565b6000612a974783612990565b9050612aa38382613037565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506017805460ff60a01b19169055505050565b80612b0557612b056130f5565b6001600160a01b03841660009081526007602052604090205460ff168015612b4657506001600160a01b03831660009081526007602052604090205460ff16155b15612b5b57612b5684848461312f565b612c59565b6001600160a01b03841660009081526007602052604090205460ff16158015612b9c57506001600160a01b03831660009081526007602052604090205460ff165b15612bac57612b56848484613280565b6001600160a01b03841660009081526007602052604090205460ff16158015612bee57506001600160a01b03831660009081526007602052604090205460ff16155b15612bfe57612b56848484613340565b6001600160a01b03841660009081526007602052604090205460ff168015612c3e57506001600160a01b03831660009081526007602052604090205460ff165b15612c4e57612b5684848461339b565b612c59848484613340565b612c616130f5565b50505050565b600d54600c546000918291825b600854811015612db957826003600060088481548110612c9657612c966138cf565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612d015750816004600060088481548110612cda57612cda6138cf565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612d1757600d54600c54945094505050509091565b612d5d6003600060088481548110612d3157612d316138cf565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612990565b9250612da56004600060088481548110612d7957612d796138cf565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612990565b915080612db181613928565b915050612c74565b50600c54600d54612dc9916127ec565b821015612de057600d54600c549350935050509091565b90939092509050565b60008183612e0a5760405162461bcd60e51b8152600401610b5491906135c5565b5060006127c084866139b4565b601654600090610b2490606490611c2890859061ffff166129d2565b601654600090610b2490606490611c2890859062010000900461ffff166129d2565b601654600090610b2490606490611c28908590600160301b900461ffff166129d2565b601654600090610b2490606490611c28908590600160201b900461ffff166129d2565b601654600090610b2490606490611c28908590600160401b900461ffff166129d2565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612ef357612ef36138cf565b60200260200101906001600160a01b031690816001600160a01b0316815250506016600a9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f8a9190613943565b81600181518110612f9d57612f9d6138cf565b6001600160a01b039283166020918202929092010152601654612fca913091600160501b900416846120b1565b60165460405163791ac94760e01b8152600160501b9091046001600160a01b03169063791ac947906130099085906000908690309042906004016139d6565b600060405180830381600087803b15801561302357600080fd5b505af1158015612787573d6000803e3d6000fd5b601654613056903090600160501b90046001600160a01b0316846120b1565b60165460405163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a4820152600160501b9091046001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156130c9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906130ee9190613a47565b5050505050565b60165461ffff16158015613113575060165462010000900461ffff16155b1561311a57565b6016805469ffffffffffffffffffff19169055565b60008060008060006131408661288d565b94509450945094509450600080600061315f898888888861118a6127c9565b6001600160a01b038e16600090815260046020526040902054929550909350915061318a908a612990565b6001600160a01b038c166000908152600460209081526040808320939093556003905220546131b99084612990565b6001600160a01b03808d1660009081526003602052604080822093909355908c16815220546131e8908361282e565b6001600160a01b038b1660009081526003602052604090205561320a86613425565b61321385613425565b61321c846134ad565b613226818861356c565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a60405161326b91815260200190565b60405180910390a35050505050505050505050565b60008060008060006132918661288d565b9450945094509450945060008060006132b0898888888861118a6127c9565b6001600160a01b038e1660009081526003602052604090205492955090935091506132db9084612990565b6001600160a01b03808d16600090815260036020908152604080832094909455918d16815260049091522054613311908961282e565b6001600160a01b038b166000908152600460209081526040808320939093556003905220546131e8908361282e565b60008060008060006133518661288d565b945094509450945094506000806000613370898888888861118a6127c9565b6001600160a01b038e1660009081526003602052604090205492955090935091506131b99084612990565b60008060008060006133ac8661288d565b9450945094509450945060008060006133cb898888888861118a6127c9565b6001600160a01b038e1660009081526004602052604090205492955090935091506133f6908a612990565b6001600160a01b038c166000908152600460209081526040808320939093556003905220546132db9084612990565b600061342f6127c9565b9050600061343d83836129d2565b3060009081526003602052604090205490915061345a908261282e565b3060009081526003602090815260408083209390935560079052205460ff1615611a125730600090815260046020526040902054613498908461282e565b30600090815260046020526040902055505050565b60006134b76127c9565b905060006134c583836129d2565b6010546001600160a01b03166000908152600360205260409020549091506134ed908261282e565b601080546001600160a01b03908116600090815260036020908152604080832095909555925490911681526007909152205460ff1615611a12576010546001600160a01b031660009081526004602052604090205461354c908461282e565b6010546001600160a01b0316600090815260046020526040902055505050565b600d546135799083612990565b600d55600e54613589908261282e565b600e555050565b6001600160a01b03811681146135a557600080fd5b50565b6000602082840312156135ba57600080fd5b8135610ef781613590565b600060208083528351808285015260005b818110156135f2578581018301518582016040015282016135d6565b81811115613604576000604083870101525b50601f01601f1916929092016040019392505050565b6000806040838503121561362d57600080fd5b823561363881613590565b946020939093013593505050565b803561ffff8116811461365857600080fd5b919050565b600080600080600060a0868803121561367557600080fd5b61367e86613646565b945061368c60208701613646565b935061369a60408701613646565b92506136a860608701613646565b91506136b660808701613646565b90509295509295909350565b6000806000606084860312156136d757600080fd5b83356136e281613590565b925060208401356136f281613590565b929592945050506040919091013590565b60006020828403121561371557600080fd5b5035919050565b80151581146135a557600080fd5b6000806040838503121561373d57600080fd5b82359150602083013561374f8161371c565b809150509250929050565b6000806000806000806000806000806101408b8d03121561377a57600080fd5b6137838b613646565b995061379160208c01613646565b985061379f60408c01613646565b97506137ad60608c01613646565b96506137bb60808c01613646565b95506137c960a08c01613646565b94506137d760c08c01613646565b93506137e560e08c01613646565b92506137f46101008c01613646565b91506138036101208c01613646565b90509295989b9194979a5092959850565b60006020828403121561382657600080fd5b8135610ef78161371c565b6000806040838503121561384457600080fd5b823561384f81613590565b9150602083013561374f81613590565b600181811c9082168061387357607f821691505b6020821081141561389457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561390d5761390d6138e5565b500390565b634e487b7160e01b600052603160045260246000fd5b600060001982141561393c5761393c6138e5565b5060010190565b60006020828403121561395557600080fd5b8151610ef781613590565b60006020828403121561397257600080fd5b8151610ef78161371c565b60008219821115613990576139906138e5565b500190565b60008160001904831182151516156139af576139af6138e5565b500290565b6000826139d157634e487b7160e01b600052601260045260246000fd5b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015613a265784516001600160a01b031683529383019391830191600101613a01565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215613a5c57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204ea26f251a1265c3715db7ba2540a662a9e260e7b2144e12baac9c5844bdcd2f64736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106103035760003560e01c806352390c0211610190578063a9059cbb116100dc578063d94160e011610095578063ea2f0b371161006f578063ea2f0b3714610a03578063ec034bed14610a23578063f0f165af14610a41578063f2fde38b14610a6157600080fd5b8063d94160e014610964578063dd4670641461099d578063dd62ed3e146109bd57600080fd5b8063a9059cbb146108af578063af2ce614146108cf578063b030b34a146108ef578063b6c523241461090f578063c49b9a8014610924578063d543dbeb1461094457600080fd5b80638980f11f1161014957806391d919a91161012357806391d919a91461084557806395d89b4114610865578063a457c2d71461087a578063a69df4b51461089a57600080fd5b80638980f11f146107f15780638da5cb5b146108115780638f9a55c01461082f57600080fd5b806352390c02146107145780635342acb41461073457806370a082311461076d578063715018a61461078d5780637d1db4a5146107a257806388f82020146107b857600080fd5b80632d8381191161024f578063437823ec1161020857806347062402116101e2578063470624021461066f57806349bd5a5e146106b35780634a74bb02146106d35780634cfd4a92146106f457600080fd5b8063437823ec1461060f5780634549b0391461062f578063469629a91461064f57600080fd5b80632d8381191461054d578063313ce5671461056d5780633685d4191461058f57806339509351146105af5780633bd5d173146105cf57806341cb87fc146105ef57600080fd5b80631694505e116102bc5780631c4a78ef116102965780631c4a78ef146104745780631d7ef8791461049457806323b872dd146104b45780632b14ca56146104d457600080fd5b80631694505e1461040057806318160ddd1461043f5780631816467f1461045457600080fd5b806305cb48931461030f57806306fdde031461035d578063095ea7b31461037f5780630bd3a7f91461039f57806313114a9d146103c15780631465d929146103e057600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b5061034861032a3660046135a8565b6001600160a01b031660009081526009602052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561036957600080fd5b50610372610a81565b60405161035491906135c5565b34801561038b57600080fd5b5061034861039a36600461361a565b610b13565b3480156103ab57600080fd5b506103bf6103ba3660046135a8565b610b2a565b005b3480156103cd57600080fd5b50600e545b604051908152602001610354565b3480156103ec57600080fd5b506103bf6103fb36600461365d565b610b81565b34801561040c57600080fd5b5060165461042790600160501b90046001600160a01b031681565b6040516001600160a01b039091168152602001610354565b34801561044b57600080fd5b50600c546103d2565b34801561046057600080fd5b506103bf61046f3660046135a8565b610c1d565b34801561048057600080fd5b50600f54610427906001600160a01b031681565b3480156104a057600080fd5b506103bf6104af3660046135a8565b610c69565b3480156104c057600080fd5b506103486104cf3660046136c2565b610e11565b3480156104e057600080fd5b506015546105189061ffff80821691620100008104821691600160201b8204811691600160301b8104821691600160401b9091041685565b6040805161ffff968716815294861660208601529285169284019290925283166060830152909116608082015260a001610354565b34801561055957600080fd5b506103d2610568366004613703565b610e7a565b34801561057957600080fd5b5060135460405160ff9091168152602001610354565b34801561059b57600080fd5b506103bf6105aa3660046135a8565b610efe565b3480156105bb57600080fd5b506103486105ca36600461361a565b6110b5565b3480156105db57600080fd5b506103bf6105ea366004613703565b6110eb565b3480156105fb57600080fd5b506103bf61060a3660046135a8565b6111f9565b34801561061b57600080fd5b506103bf61062a3660046135a8565b61143f565b34801561063b57600080fd5b506103d261064a36600461372a565b61148d565b34801561065b57600080fd5b506103bf61066a36600461375a565b611530565b34801561067b57600080fd5b506014546105189061ffff80821691620100008104821691600160201b8204811691600160301b8104821691600160401b9091041685565b3480156106bf57600080fd5b50601754610427906001600160a01b031681565b3480156106df57600080fd5b5060175461034890600160a81b900460ff1681565b34801561070057600080fd5b506103bf61070f36600461365d565b6116a6565b34801561072057600080fd5b506103bf61072f3660046135a8565b611742565b34801561074057600080fd5b5061034861074f3660046135a8565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561077957600080fd5b506103d26107883660046135a8565b611895565b34801561079957600080fd5b506103bf6118f4565b3480156107ae57600080fd5b506103d260185481565b3480156107c457600080fd5b506103486107d33660046135a8565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156107fd57600080fd5b506103bf61080c36600461361a565b611956565b34801561081d57600080fd5b506000546001600160a01b0316610427565b34801561083b57600080fd5b506103d2601a5481565b34801561085157600080fd5b506103bf6108603660046135a8565b611a17565b34801561087157600080fd5b50610372611a62565b34801561088657600080fd5b5061034861089536600461361a565b611a71565b3480156108a657600080fd5b506103bf611ac0565b3480156108bb57600080fd5b506103486108ca36600461361a565b611bd7565b3480156108db57600080fd5b506103bf6108ea366004613703565b611be4565b3480156108fb57600080fd5b506103bf61090a3660046135a8565b611c34565b34801561091b57600080fd5b506002546103d2565b34801561093057600080fd5b506103bf61093f366004613814565b611e19565b34801561095057600080fd5b506103bf61095f366004613703565b611e90565b34801561097057600080fd5b5061034861097f3660046135a8565b6001600160a01b03166000908152600a602052604090205460ff1690565b3480156109a957600080fd5b506103bf6109b8366004613703565b611eda565b3480156109c957600080fd5b506103d26109d8366004613831565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b348015610a0f57600080fd5b506103bf610a1e3660046135a8565b611f5f565b348015610a2f57600080fd5b506010546001600160a01b0316610427565b348015610a4d57600080fd5b506103bf610a5c366004613703565b611faa565b348015610a6d57600080fd5b506103bf610a7c3660046135a8565b611fd9565b606060118054610a909061385f565b80601f0160208091040260200160405190810160405280929190818152602001828054610abc9061385f565b8015610b095780601f10610ade57610100808354040283529160200191610b09565b820191906000526020600020905b815481529060010190602001808311610aec57829003601f168201915b5050505050905090565b6000610b203384846120b1565b5060015b92915050565b6000546001600160a01b03163314610b5d5760405162461bcd60e51b8152600401610b549061389a565b60405180910390fd5b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6000546001600160a01b03163314610bab5760405162461bcd60e51b8152600401610b549061389a565b6014805461ffff928316600160401b0261ffff60401b19948416600160301b0261ffff60301b1997851662010000029790971667ffff0000ffff000019968516600160201b0265ffff0000ffff1990931694909816939093171793909316949094179290921791909116919091179055565b6000546001600160a01b03163314610c475760405162461bcd60e51b8152600401610b549061389a565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610c935760405162461bcd60e51b8152600401610b549061389a565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610d0b5760405162461bcd60e51b815260206004820152602260248201527f57652063616e6e6f7420626c61636b6c69737420556e695377617020726f757460448201526132b960f11b6064820152608401610b54565b6001600160a01b03811660009081526009602052604090205460ff1615610d745760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610b54565b6001600160a01b0381166000818152600960209081526040808320805460ff19166001908117909155600b805491820181559093527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db990920180546001600160a01b0319168417905590519182527f6cf65f3ff491cb358bea0efd5ee0fe0340757225d38a096d09c637ba897a679f91015b60405180910390a150565b6000610e1e8484846121d5565b610e708433610e6b85604051806060016040528060288152602001613a76602891396001600160a01b038a166000908152600560209081526040808320338452909152902054919061278f565b6120b1565b5060019392505050565b6000600d54821115610ee15760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610b54565b6000610eeb6127c9565b9050610ef783826127ec565b9392505050565b6000546001600160a01b03163314610f285760405162461bcd60e51b8152600401610b549061389a565b6001600160a01b03811660009081526007602052604090205460ff16610f905760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610b54565b60005b6008548110156110b157816001600160a01b031660088281548110610fba57610fba6138cf565b6000918252602090912001546001600160a01b0316141561109f5760088054610fe5906001906138fb565b81548110610ff557610ff56138cf565b600091825260209091200154600880546001600160a01b039092169183908110611021576110216138cf565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff19169055600880548061107957611079613912565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b806110a981613928565b915050610f93565b5050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091610b20918590610e6b908661282e565b3360008181526007602052604090205460ff16156111605760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610b54565b60008060008061116f8661288d565b945094509450945050600061118f878686868661118a6127c9565b61291c565b50506001600160a01b0387166000908152600360205260409020549091506111b79082612990565b6001600160a01b038716600090815260036020526040902055600d546111dd9082612990565b600d55600e546111ed908861282e565b600e5550505050505050565b6000546001600160a01b031633146112235760405162461bcd60e51b8152600401610b549061389a565b6016546001600160a01b03828116600160501b9092041614156112945760405162461bcd60e51b815260206004820152602360248201527f54686520726f7574657220616c7265616479206861732074686174206164647260448201526265737360e81b6064820152608401610b54565b6016546040805163c45a015560e01b815290518392600160501b90046001600160a01b03169163c45a01559160048083019260209291908290030181865afa1580156112e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113089190613943565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611355573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113799190613943565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156113c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ea9190613943565b601780546001600160a01b0319166001600160a01b03928316179055601680547fffff0000000000000000000000000000000000000000ffffffffffffffffffff16600160501b939092169290920217905550565b6000546001600160a01b031633146114695760405162461bcd60e51b8152600401610b549061389a565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600c548311156114e15760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610b54565b6000806000806114f08761288d565b94509450945094505060008061150c898787878761118a6127c9565b50915091508761152357509450610b249350505050565b9550610b24945050505050565b6000546001600160a01b0316331461155a5760405162461bcd60e51b8152600401610b549061389a565b89601460000160006101000a81548161ffff021916908361ffff16021790555087601460000160046101000a81548161ffff021916908361ffff16021790555088601460000160026101000a81548161ffff021916908361ffff16021790555086601460000160066101000a81548161ffff021916908361ffff16021790555085601460000160086101000a81548161ffff021916908361ffff16021790555084601560000160006101000a81548161ffff021916908361ffff16021790555082601560000160046101000a81548161ffff021916908361ffff16021790555083601560000160026101000a81548161ffff021916908361ffff16021790555081601560000160066101000a81548161ffff021916908361ffff16021790555080601560000160086101000a81548161ffff021916908361ffff16021790555050505050505050505050565b6000546001600160a01b031633146116d05760405162461bcd60e51b8152600401610b549061389a565b6015805461ffff928316600160401b0261ffff60401b19948416600160301b0261ffff60301b1997851662010000029790971667ffff0000ffff000019968516600160201b0265ffff0000ffff1990931694909816939093171793909316949094179290921791909116919091179055565b6000546001600160a01b0316331461176c5760405162461bcd60e51b8152600401610b549061389a565b6001600160a01b03811660009081526007602052604090205460ff16156117d55760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610b54565b6001600160a01b0381166000908152600360205260409020541561182f576001600160a01b03811660009081526003602052604090205461181590610e7a565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b03811660009081526007602052604081205460ff16156118d257506001600160a01b031660009081526004602052604090205490565b6001600160a01b038216600090815260036020526040902054610b2490610e7a565b6000546001600160a01b0316331461191e5760405162461bcd60e51b8152600401610b549061389a565b600080546040516001600160a01b0390911690600080516020613a9e833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146119805760405162461bcd60e51b8152600401610b549061389a565b816001600160a01b031663a9059cbb6119a16000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156119ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a129190613960565b505050565b6000546001600160a01b03163314611a415760405162461bcd60e51b8152600401610b549061389a565b6001600160a01b03166000908152600a60205260409020805460ff19169055565b606060128054610a909061385f565b6000610b203384610e6b85604051806060016040528060258152602001613abe602591393360009081526005602090815260408083206001600160a01b038d168452909152902054919061278f565b6001546001600160a01b03163314611b265760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610b54565b6002544211611b855760405162461bcd60e51b815260206004820152602560248201527f436f6e7472616374206973206c6f636b656420756e74696c2061206c61746572604482015264206461746560d81b6064820152608401610b54565b600154600080546040516001600160a01b039384169390911691600080516020613a9e83398151915291a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b6000610b203384846121d5565b6000546001600160a01b03163314611c0e5760405162461bcd60e51b8152600401610b549061389a565b611c2e6064611c2883600c546129d290919063ffffffff16565b906127ec565b601a5550565b6000546001600160a01b03163314611c5e5760405162461bcd60e51b8152600401610b549061389a565b6001600160a01b03811660009081526009602052604090205460ff16611cc65760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610b54565b60005b600b54811015611ddf57816001600160a01b0316600b8281548110611cf057611cf06138cf565b6000918252602090912001546001600160a01b03161415611dcd57600b8054611d1b906001906138fb565b81548110611d2b57611d2b6138cf565b600091825260209091200154600b80546001600160a01b039092169183908110611d5757611d576138cf565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600b805480611da657611da6613912565b600082815260209020810160001990810180546001600160a01b0319169055019055611ddf565b80611dd781613928565b915050611cc9565b506040516001600160a01b03821681527fbbde34c13f8f74d401949e0eb9a888308ee89bb0887791bba7e8dd0bced4704190602001610e06565b6000546001600160a01b03163314611e435760405162461bcd60e51b8152600401610b549061389a565b60178054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610e0690831515815260200190565b6000546001600160a01b03163314611eba5760405162461bcd60e51b8152600401610b549061389a565b611ed46064611c2883600c546129d290919063ffffffff16565b60185550565b6000546001600160a01b03163314611f045760405162461bcd60e51b8152600401610b549061389a565b60008054600180546001600160a01b03199081166001600160a01b03841617909155169055611f33814261397d565b600255600080546040516001600160a01b0390911690600080516020613a9e833981519152908390a350565b6000546001600160a01b03163314611f895760405162461bcd60e51b8152600401610b549061389a565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b03163314611fd45760405162461bcd60e51b8152600401610b549061389a565b601955565b6000546001600160a01b031633146120035760405162461bcd60e51b8152600401610b549061389a565b6001600160a01b0381166120685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b54565b600080546040516001600160a01b0380851693921691600080516020613a9e83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166121135760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b54565b6001600160a01b0382166121745760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b54565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166122395760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b54565b6001600160a01b03821661229b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b54565b600081116122fd5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610b54565b6001600160a01b03831660009081526009602052604090205460ff161561235c5760405162461bcd60e51b8152602060048201526013602482015272199c9bdb481a5cc8189b1858dadb1a5cdd1959606a1b6044820152606401610b54565b3360009081526009602052604090205460ff16156123b25760405162461bcd60e51b81526020600482015260136024820152721e5bdd48185c9948189b1858dadb1a5cdd1959606a1b6044820152606401610b54565b3260009081526009602052604090205460ff16156124005760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b6044820152606401610b54565b6017546001600160a01b0383811691161461248557601a548161242284611895565b61242c919061397d565b106124855760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b6064820152608401610b54565b6001600160a01b0383166000908152600a602052604090205460ff161580156124c757506001600160a01b0382166000908152600a602052604090205460ff16155b1561252f5760185481111561252f5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610b54565b600061253a30611895565b9050601854811061254a57506018545b601954811080159081906125685750601754600160a01b900460ff16155b801561258257506017546001600160a01b03868116911614155b80156125975750601754600160a81b900460ff165b156125aa5760195491506125aa82612a51565b6001600160a01b03851660009081526006602052604090205460019060ff16806125ec57506001600160a01b03851660009081526006602052604090205460ff165b8061261e57506017546001600160a01b0387811691161480159061261e57506017546001600160a01b03868116911614155b1561262b5750600061277b565b6017546001600160a01b03878116911614801561265d57506016546001600160a01b03868116600160501b9092041614155b156126d3576014546016805461ffff80841663ffffffff1990921691909117620100008085048316021769ffff0000ffff000000001916600160201b80850483160261ffff60401b191617600160401b8085048316021761ffff60301b1916600160301b93849004919091169092029190911790555b6017546001600160a01b03868116911614801561270557506016546001600160a01b03878116600160501b9092041614155b1561277b576015546016805461ffff80841663ffffffff1990921691909117620100008085048316021769ffff0000ffff000000001916600160201b80850483160261ffff60401b191617600160401b8085048316021761ffff60301b1916600160301b93849004919091169092029190911790555b61278786868684612af8565b505050505050565b600081848411156127b35760405162461bcd60e51b8152600401610b5491906135c5565b5060006127c084866138fb565b95945050505050565b60008060006127d6612c67565b90925090506127e582826127ec565b9250505090565b6000610ef783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612de9565b60008061283b838561397d565b905083811015610ef75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b54565b60008060008060008061289f87612e17565b905060006128ac88612e33565b905060006128b989612e55565b6128c28a612e78565b6128cc919061397d565b905060006128d98a612e9b565b905060006128f1846128eb8d88612990565b90612990565b90506128fd8184612990565b90506129098183612990565b9b949a5092985090965094509092505050565b600080808061292b8a866129d2565b905060006129398a876129d2565b905060006129478a886129d2565b905060006129558a896129d2565b905060006129638a8a6129d2565b90506000612979826128eb858188818c8c612990565b959f959e50939c50939a5050505050505050505050565b6000610ef783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061278f565b6000826129e157506000610b24565b60006129ed8385613995565b9050826129fa85836139b4565b14610ef75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610b54565b6017805460ff60a01b1916600160a01b1790556000612a718260026127ec565b90506000612a7f8383612990565b905047612a8b83612ebe565b6000612a974783612990565b9050612aa38382613037565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506017805460ff60a01b19169055505050565b80612b0557612b056130f5565b6001600160a01b03841660009081526007602052604090205460ff168015612b4657506001600160a01b03831660009081526007602052604090205460ff16155b15612b5b57612b5684848461312f565b612c59565b6001600160a01b03841660009081526007602052604090205460ff16158015612b9c57506001600160a01b03831660009081526007602052604090205460ff165b15612bac57612b56848484613280565b6001600160a01b03841660009081526007602052604090205460ff16158015612bee57506001600160a01b03831660009081526007602052604090205460ff16155b15612bfe57612b56848484613340565b6001600160a01b03841660009081526007602052604090205460ff168015612c3e57506001600160a01b03831660009081526007602052604090205460ff165b15612c4e57612b5684848461339b565b612c59848484613340565b612c616130f5565b50505050565b600d54600c546000918291825b600854811015612db957826003600060088481548110612c9657612c966138cf565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612d015750816004600060088481548110612cda57612cda6138cf565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612d1757600d54600c54945094505050509091565b612d5d6003600060088481548110612d3157612d316138cf565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612990565b9250612da56004600060088481548110612d7957612d796138cf565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612990565b915080612db181613928565b915050612c74565b50600c54600d54612dc9916127ec565b821015612de057600d54600c549350935050509091565b90939092509050565b60008183612e0a5760405162461bcd60e51b8152600401610b5491906135c5565b5060006127c084866139b4565b601654600090610b2490606490611c2890859061ffff166129d2565b601654600090610b2490606490611c2890859062010000900461ffff166129d2565b601654600090610b2490606490611c28908590600160301b900461ffff166129d2565b601654600090610b2490606490611c28908590600160201b900461ffff166129d2565b601654600090610b2490606490611c28908590600160401b900461ffff166129d2565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612ef357612ef36138cf565b60200260200101906001600160a01b031690816001600160a01b0316815250506016600a9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f8a9190613943565b81600181518110612f9d57612f9d6138cf565b6001600160a01b039283166020918202929092010152601654612fca913091600160501b900416846120b1565b60165460405163791ac94760e01b8152600160501b9091046001600160a01b03169063791ac947906130099085906000908690309042906004016139d6565b600060405180830381600087803b15801561302357600080fd5b505af1158015612787573d6000803e3d6000fd5b601654613056903090600160501b90046001600160a01b0316846120b1565b60165460405163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a4820152600160501b9091046001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156130c9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906130ee9190613a47565b5050505050565b60165461ffff16158015613113575060165462010000900461ffff16155b1561311a57565b6016805469ffffffffffffffffffff19169055565b60008060008060006131408661288d565b94509450945094509450600080600061315f898888888861118a6127c9565b6001600160a01b038e16600090815260046020526040902054929550909350915061318a908a612990565b6001600160a01b038c166000908152600460209081526040808320939093556003905220546131b99084612990565b6001600160a01b03808d1660009081526003602052604080822093909355908c16815220546131e8908361282e565b6001600160a01b038b1660009081526003602052604090205561320a86613425565b61321385613425565b61321c846134ad565b613226818861356c565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a60405161326b91815260200190565b60405180910390a35050505050505050505050565b60008060008060006132918661288d565b9450945094509450945060008060006132b0898888888861118a6127c9565b6001600160a01b038e1660009081526003602052604090205492955090935091506132db9084612990565b6001600160a01b03808d16600090815260036020908152604080832094909455918d16815260049091522054613311908961282e565b6001600160a01b038b166000908152600460209081526040808320939093556003905220546131e8908361282e565b60008060008060006133518661288d565b945094509450945094506000806000613370898888888861118a6127c9565b6001600160a01b038e1660009081526003602052604090205492955090935091506131b99084612990565b60008060008060006133ac8661288d565b9450945094509450945060008060006133cb898888888861118a6127c9565b6001600160a01b038e1660009081526004602052604090205492955090935091506133f6908a612990565b6001600160a01b038c166000908152600460209081526040808320939093556003905220546132db9084612990565b600061342f6127c9565b9050600061343d83836129d2565b3060009081526003602052604090205490915061345a908261282e565b3060009081526003602090815260408083209390935560079052205460ff1615611a125730600090815260046020526040902054613498908461282e565b30600090815260046020526040902055505050565b60006134b76127c9565b905060006134c583836129d2565b6010546001600160a01b03166000908152600360205260409020549091506134ed908261282e565b601080546001600160a01b03908116600090815260036020908152604080832095909555925490911681526007909152205460ff1615611a12576010546001600160a01b031660009081526004602052604090205461354c908461282e565b6010546001600160a01b0316600090815260046020526040902055505050565b600d546135799083612990565b600d55600e54613589908261282e565b600e555050565b6001600160a01b03811681146135a557600080fd5b50565b6000602082840312156135ba57600080fd5b8135610ef781613590565b600060208083528351808285015260005b818110156135f2578581018301518582016040015282016135d6565b81811115613604576000604083870101525b50601f01601f1916929092016040019392505050565b6000806040838503121561362d57600080fd5b823561363881613590565b946020939093013593505050565b803561ffff8116811461365857600080fd5b919050565b600080600080600060a0868803121561367557600080fd5b61367e86613646565b945061368c60208701613646565b935061369a60408701613646565b92506136a860608701613646565b91506136b660808701613646565b90509295509295909350565b6000806000606084860312156136d757600080fd5b83356136e281613590565b925060208401356136f281613590565b929592945050506040919091013590565b60006020828403121561371557600080fd5b5035919050565b80151581146135a557600080fd5b6000806040838503121561373d57600080fd5b82359150602083013561374f8161371c565b809150509250929050565b6000806000806000806000806000806101408b8d03121561377a57600080fd5b6137838b613646565b995061379160208c01613646565b985061379f60408c01613646565b97506137ad60608c01613646565b96506137bb60808c01613646565b95506137c960a08c01613646565b94506137d760c08c01613646565b93506137e560e08c01613646565b92506137f46101008c01613646565b91506138036101208c01613646565b90509295989b9194979a5092959850565b60006020828403121561382657600080fd5b8135610ef78161371c565b6000806040838503121561384457600080fd5b823561384f81613590565b9150602083013561374f81613590565b600181811c9082168061387357607f821691505b6020821081141561389457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561390d5761390d6138e5565b500390565b634e487b7160e01b600052603160045260246000fd5b600060001982141561393c5761393c6138e5565b5060010190565b60006020828403121561395557600080fd5b8151610ef781613590565b60006020828403121561397257600080fd5b8151610ef78161371c565b60008219821115613990576139906138e5565b500190565b60008160001904831182151516156139af576139af6138e5565b500290565b6000826139d157634e487b7160e01b600052601260045260246000fd5b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015613a265784516001600160a01b031683529383019391830191600101613a01565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215613a5c57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204ea26f251a1265c3715db7ba2540a662a9e260e7b2144e12baac9c5844bdcd2f64736f6c634300080a0033
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.