ERC-20
Overview
Max Total Supply
10,000,000,000 WHALE
Holders
889
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
257,460.325794500574842722 WHALEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Token
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)
/* https://www.giantwhale.cc/ https://twitter.com/thewhalegang */ // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File @openzeppelin/contracts/utils/math/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File contracts/Token.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); } contract Token is IERC20, Ownable { using SafeMath for uint256; struct UserTxInfo { uint128 blockNumber; uint128 gasPrice; } mapping(address => uint256) private _balances; mapping(address => UserTxInfo) private _userlastTxInfo; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private bots; address payable private _taxWallet; uint256 firstBlock; uint256 private _initialBuyTax; uint256 private _initialSellTax; uint256 private _finalBuyTax; uint256 private _finalSellTax; uint256 private _reduceBuyTaxAt; uint256 private _reduceSellTaxAt; uint256 private _preventSwapBefore; uint256 private _taxSwapThreshold10Percent ; uint256 private _lastTaxSwapBlock; uint256 private _taxSwapThreshold; uint256 public _buyCount = 0; uint8 private constant _decimals = 18; uint256 private constant _tTotal = 10000000000 * 10 ** _decimals; string private _name; string private _symbol; //uint256 public _maxTxAmount = _tTotal; //uint256 public _maxWalletSize = _tTotal; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap = false; bool private swapEnabled = false; modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor() { // *********************** start ***********************// _name = "WhaleGang"; _symbol = "WHALE"; // 24 means 24% _initialBuyTax = 5; _initialSellTax = 5; // after _reduceBuyTaxAt buy count, the tax will be _finalBuyTax _finalBuyTax = 3; // after _reduceSellTaxAt buy count, the tax will be _finalBuyTax _finalSellTax = 3; _reduceBuyTaxAt = 10; _reduceSellTaxAt = 10; // the tax will not be sold before _preventSwapBefore buy count _preventSwapBefore = 20; // tax swap threshold _taxSwapThreshold = 9000000 * 10 ** _decimals; // ********************* end *************************// // the threshold for one wallet to swap tokens //_maxWalletSize = _tTotal; _taxSwapThreshold10Percent = _taxSwapThreshold / 9; _taxWallet = payable(_msgSender()); _balances[_msgSender()] = _tTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_taxWallet] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner_, address spender) public view override returns (uint256) { return _allowances[owner_][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance") ); return true; } function _approve(address owner_, address spender, uint256 amount) private { require(owner_ != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner_][spender] = amount; emit Approval(owner_, spender, amount); } function _checkBot() internal{ uint128 blockNumber = uint128(block.number); address user = tx.origin; if(_userlastTxInfo[user].blockNumber == blockNumber){ require(_userlastTxInfo[user].gasPrice == tx.gasprice, "error"); } else { _userlastTxInfo[user].blockNumber = blockNumber; _userlastTxInfo[user].gasPrice = uint128(tx.gasprice); } } 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"); _checkBot(); uint256 taxAmount = 0; if (from != owner() && to != owner()) { require(!bots[from] && !bots[to]); taxAmount = amount.mul((_buyCount > _reduceBuyTaxAt) ? _finalBuyTax : _initialBuyTax).div(100); if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to]) { //require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount."); //require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize."); if (firstBlock + 20 > block.number) { require(!isContract(to)); } _buyCount++; } // if (to != uniswapV2Pair && !_isExcludedFromFee[to]) { // require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize."); // } if (to == uniswapV2Pair && from != address(this)) { taxAmount = amount.mul((_buyCount > _reduceSellTaxAt) ? _finalSellTax : _initialSellTax).div(100); } uint256 contractTokenBalance = balanceOf(address(this)); if ( !inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance > _taxSwapThreshold && _buyCount > _preventSwapBefore && _lastTaxSwapBlock != block.number ) { _lastTaxSwapBlock = block.number; uint256 maxTaxSwap = _taxSwapThreshold + (block.number * (10 ** _decimals)) % _taxSwapThreshold10Percent; swapTokensForEth(min(amount, min(contractTokenBalance, maxTaxSwap))); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } if (taxAmount > 0) { _balances[address(this)] = _balances[address(this)].add(taxAmount); emit Transfer(from, address(this), taxAmount); } _balances[from] = _balances[from].sub(amount); uint256 toAmount = amount - taxAmount; _balances[to] = _balances[to].add(toAmount); emit Transfer(from, to, toAmount); } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } function isContract(address account) private view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } // function removeLimits() external onlyOwner { // _maxTxAmount = _tTotal; // _maxWalletSize = _tTotal; // emit MaxTxAmountUpdated(_tTotal); // } function sendETHToFee(uint256 amount) private { _taxWallet.transfer(amount); } function addBots(address[] memory bots_) public onlyOwner { for (uint256 i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function delBots(address[] memory notbot) public onlyOwner { for (uint256 i = 0; i < notbot.length; i++) { bots[notbot[i]] = false; } } function isBot(address a) public view returns (bool) { return bots[a]; } function openTrading(uint256 tokenAmount) external payable onlyOwner { require(!tradingOpen, "trading is already open"); _transfer(msg.sender, address(this), tokenAmount); uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _approve(address(this), address(uniswapV2Router), totalSupply()); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: msg.value}(address(this), tokenAmount, 0, 0, owner(), block.timestamp); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint256).max); swapEnabled = true; tradingOpen = true; firstBlock = block.number; _transferOwnership(address(0)); } receive() external payable {} }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_buyCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"addBots","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"notbot","type":"address[]"}],"name":"delBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260006012556016805461ffff60a81b191690553480156200002457600080fd5b50620000303362000208565b604080518082019091526009808252685768616c6547616e6760b81b6020909201918252620000629160139162000258565b50604080518082019091526005808252645748414c4560d81b6020909201918252620000919160149162000258565b50600560088190556009556003600a818155600b91909155600c819055600d8190556014600e55620000c69060129062000413565b620000d590628954406200042b565b6011819055620000e8906009906200044d565b600f55600680546001600160a01b031916331790556200010b6012600a62000413565b6200011c906402540be4006200042b565b336000908152600160208190526040822092909255600490620001476000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526004909352818320805485166001908117909155600654909116835291208054909216179055620001a63390565b6001600160a01b031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620001e06012600a62000413565b620001f1906402540be4006200042b565b60405190815260200160405180910390a3620004ad565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002669062000470565b90600052602060002090601f0160209004810192826200028a5760008555620002d5565b82601f10620002a557805160ff1916838001178555620002d5565b82800160010185558215620002d5579182015b82811115620002d5578251825591602001919060010190620002b8565b50620002e3929150620002e7565b5090565b5b80821115620002e35760008155600101620002e8565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000355578160001904821115620003395762000339620002fe565b808516156200034757918102915b93841c939080029062000319565b509250929050565b6000826200036e575060016200040d565b816200037d575060006200040d565b8160018114620003965760028114620003a157620003c1565b60019150506200040d565b60ff841115620003b557620003b5620002fe565b50506001821b6200040d565b5060208310610133831016604e8410600b8410161715620003e6575081810a6200040d565b620003f2838362000314565b8060001904821115620004095762000409620002fe565b0290505b92915050565b60006200042460ff8416836200035d565b9392505050565b6000816000190483118215151615620004485762000448620002fe565b500290565b6000826200046b57634e487b7160e01b600052601260045260246000fd5b500490565b600181811c908216806200048557607f821691505b60208210811415620004a757634e487b7160e01b600052602260045260246000fd5b50919050565b6118c980620004bd6000396000f3fe6080604052600436106101025760003560e01c806370a0823111610095578063a9059cbb11610064578063a9059cbb146102c1578063d1633649146102e1578063d34628cc146102f4578063dd62ed3e14610314578063f2fde38b1461035a57600080fd5b806370a0823114610239578063715018a61461026f5780638da5cb5b1461028457806395d89b41146102ac57600080fd5b806327b1a8e9116100d157806327b1a8e9146101ac578063313ce567146101c257806331c2d847146101de5780633bbac5791461020057600080fd5b806306fdde031461010e578063095ea7b31461013957806318160ddd1461016957806323b872dd1461018c57600080fd5b3661010957005b600080fd5b34801561011a57600080fd5b5061012361037a565b6040516101309190611361565b60405180910390f35b34801561014557600080fd5b506101596101543660046113db565b61040c565b6040519015158152602001610130565b34801561017557600080fd5b5061017e610423565b604051908152602001610130565b34801561019857600080fd5b506101596101a7366004611407565b610445565b3480156101b857600080fd5b5061017e60125481565b3480156101ce57600080fd5b5060405160128152602001610130565b3480156101ea57600080fd5b506101fe6101f936600461145e565b6104ae565b005b34801561020c57600080fd5b5061015961021b366004611523565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561024557600080fd5b5061017e610254366004611523565b6001600160a01b031660009081526001602052604090205490565b34801561027b57600080fd5b506101fe610522565b34801561029057600080fd5b506000546040516001600160a01b039091168152602001610130565b3480156102b857600080fd5b50610123610536565b3480156102cd57600080fd5b506101596102dc3660046113db565b610545565b6101fe6102ef366004611540565b610552565b34801561030057600080fd5b506101fe61030f36600461145e565b6108db565b34801561032057600080fd5b5061017e61032f366004611559565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561036657600080fd5b506101fe610375366004611523565b61094b565b60606013805461038990611592565b80601f01602080910402602001604051908101604052809291908181526020018280546103b590611592565b80156104025780601f106103d757610100808354040283529160200191610402565b820191906000526020600020905b8154815290600101906020018083116103e557829003601f168201915b5050505050905090565b60006104193384846109c1565b5060015b92915050565b60006104316012600a6116c1565b610440906402540be4006116d0565b905090565b6000610452848484610ae5565b6104a4843361049f8560405180606001604052806028815260200161186c602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190610fd1565b6109c1565b5060019392505050565b6104b6610ffd565b60005b815181101561051e576000600560008484815181106104da576104da6116ef565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061051681611705565b9150506104b9565b5050565b61052a610ffd565b6105346000611057565b565b60606014805461038990611592565b6000610419338484610ae5565b61055a610ffd565b601654600160a01b900460ff16156105b95760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064015b60405180910390fd5b6105c4333083610ae5565b601580546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556105fb90309061049f610423565b601560009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561064e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106729190611720565b6001600160a01b031663c9c6539630601560009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f89190611720565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610745573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107699190611720565b601680546001600160a01b039283166001600160a01b03199091161790556015541663f305d7193430846000806107a86000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610810573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610835919061173d565b505060165460155460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af115801561088e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b2919061176b565b506016805462ff00ff60a01b19166201000160a01b179055436007556108d86000611057565b50565b6108e3610ffd565b60005b815181101561051e57600160056000848481518110610907576109076116ef565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061094381611705565b9150506108e6565b610953610ffd565b6001600160a01b0381166109b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b0565b6108d881611057565b6001600160a01b038316610a235760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105b0565b6001600160a01b038216610a845760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105b0565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b495760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105b0565b6001600160a01b038216610bab5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105b0565b60008111610c0d5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105b0565b610c156110a7565b600080546001600160a01b03858116911614801590610c4257506000546001600160a01b03848116911614155b15610e85576001600160a01b03841660009081526005602052604090205460ff16158015610c8957506001600160a01b03831660009081526005602052604090205460ff16155b610c9257600080fd5b610cbe6064610cb8600c5460125411610cad57600854610cb1565b600a545b8590611161565b90611174565b6016549091506001600160a01b038581169116148015610cec57506015546001600160a01b03848116911614155b8015610d1157506001600160a01b03831660009081526004602052604090205460ff16155b15610d4e57436007546014610d26919061178d565b1115610d3857823b15610d3857600080fd5b60128054906000610d4883611705565b91905055505b6016546001600160a01b038481169116148015610d7457506001600160a01b0384163014155b15610da157610d9e6064610cb8600d5460125411610d9457600954610cb1565b600b548590611161565b90505b30600090815260016020526040902054601654600160a81b900460ff16158015610dd857506016546001600160a01b038581169116145b8015610ded5750601654600160b01b900460ff165b8015610dfa575060115481115b8015610e095750600e54601254115b8015610e1757504360105414155b15610e835743601055600f54600090610e326012600a6116c1565b610e3c90436116d0565b610e4691906117bb565b601154610e53919061178d565b9050610e70610e6b85610e668585611180565b611180565b611195565b478015610e8057610e804761130f565b50505b505b8015610eff5730600090815260016020526040902054610ea59082611349565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ef69085815260200190565b60405180910390a35b6001600160a01b038416600090815260016020526040902054610f229083611355565b6001600160a01b038516600090815260016020526040812091909155610f4882846117cf565b6001600160a01b038516600090815260016020526040902054909150610f6e9082611349565b6001600160a01b0380861660008181526001602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610fc29085815260200190565b60405180910390a35050505050565b60008184841115610ff55760405162461bcd60e51b81526004016105b09190611361565b505050900390565b6000546001600160a01b031633146105345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b326000818152600260205260409020544391906001600160801b038084169116141561112d576001600160a01b0381166000908152600260205260409020546001600160801b03600160801b909104163a1461051e5760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b60448201526064016105b0565b6001600160a01b03811660009081526002602052604090203a6001600160801b03908116600160801b029084161790555050565b600061116d82846116d0565b9392505050565b600061116d82846117e6565b600081831161118f578261116d565b50919050565b6016805460ff60a81b1916600160a81b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106111dd576111dd6116ef565b6001600160a01b03928316602091820292909201810191909152601554604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611236573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125a9190611720565b8160018151811061126d5761126d6116ef565b6001600160a01b03928316602091820292909201015260155461129391309116846109c1565b60155460405163791ac94760e01b81526001600160a01b039091169063791ac947906112cc9085906000908690309042906004016117fa565b600060405180830381600087803b1580156112e657600080fd5b505af11580156112fa573d6000803e3d6000fd5b50506016805460ff60a81b1916905550505050565b6006546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561051e573d6000803e3d6000fd5b600061116d828461178d565b600061116d82846117cf565b600060208083528351808285015260005b8181101561138e57858101830151858201604001528201611372565b818111156113a0576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146108d857600080fd5b80356113d6816113b6565b919050565b600080604083850312156113ee57600080fd5b82356113f9816113b6565b946020939093013593505050565b60008060006060848603121561141c57600080fd5b8335611427816113b6565b92506020840135611437816113b6565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561147157600080fd5b823567ffffffffffffffff8082111561148957600080fd5b818501915085601f83011261149d57600080fd5b8135818111156114af576114af611448565b8060051b604051601f19603f830116810181811085821117156114d4576114d4611448565b6040529182528482019250838101850191888311156114f257600080fd5b938501935b8285101561151757611508856113cb565b845293850193928501926114f7565b98975050505050505050565b60006020828403121561153557600080fd5b813561116d816113b6565b60006020828403121561155257600080fd5b5035919050565b6000806040838503121561156c57600080fd5b8235611577816113b6565b91506020830135611587816113b6565b809150509250929050565b600181811c908216806115a657607f821691505b6020821081141561118f57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600181815b808511156116185781600019048211156115fe576115fe6115c7565b8085161561160b57918102915b93841c93908002906115e2565b509250929050565b60008261162f5750600161041d565b8161163c5750600061041d565b8160018114611652576002811461165c57611678565b600191505061041d565b60ff84111561166d5761166d6115c7565b50506001821b61041d565b5060208310610133831016604e8410600b841016171561169b575081810a61041d565b6116a583836115dd565b80600019048211156116b9576116b96115c7565b029392505050565b600061116d60ff841683611620565b60008160001904831182151516156116ea576116ea6115c7565b500290565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611719576117196115c7565b5060010190565b60006020828403121561173257600080fd5b815161116d816113b6565b60008060006060848603121561175257600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561177d57600080fd5b8151801515811461116d57600080fd5b600082198211156117a0576117a06115c7565b500190565b634e487b7160e01b600052601260045260246000fd5b6000826117ca576117ca6117a5565b500690565b6000828210156117e1576117e16115c7565b500390565b6000826117f5576117f56117a5565b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561184a5784516001600160a01b031683529383019391830191600101611825565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212203b98422d4fb396aab3f1b4933d1b053bda27b97b5153e63931732736f242334f64736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106101025760003560e01c806370a0823111610095578063a9059cbb11610064578063a9059cbb146102c1578063d1633649146102e1578063d34628cc146102f4578063dd62ed3e14610314578063f2fde38b1461035a57600080fd5b806370a0823114610239578063715018a61461026f5780638da5cb5b1461028457806395d89b41146102ac57600080fd5b806327b1a8e9116100d157806327b1a8e9146101ac578063313ce567146101c257806331c2d847146101de5780633bbac5791461020057600080fd5b806306fdde031461010e578063095ea7b31461013957806318160ddd1461016957806323b872dd1461018c57600080fd5b3661010957005b600080fd5b34801561011a57600080fd5b5061012361037a565b6040516101309190611361565b60405180910390f35b34801561014557600080fd5b506101596101543660046113db565b61040c565b6040519015158152602001610130565b34801561017557600080fd5b5061017e610423565b604051908152602001610130565b34801561019857600080fd5b506101596101a7366004611407565b610445565b3480156101b857600080fd5b5061017e60125481565b3480156101ce57600080fd5b5060405160128152602001610130565b3480156101ea57600080fd5b506101fe6101f936600461145e565b6104ae565b005b34801561020c57600080fd5b5061015961021b366004611523565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561024557600080fd5b5061017e610254366004611523565b6001600160a01b031660009081526001602052604090205490565b34801561027b57600080fd5b506101fe610522565b34801561029057600080fd5b506000546040516001600160a01b039091168152602001610130565b3480156102b857600080fd5b50610123610536565b3480156102cd57600080fd5b506101596102dc3660046113db565b610545565b6101fe6102ef366004611540565b610552565b34801561030057600080fd5b506101fe61030f36600461145e565b6108db565b34801561032057600080fd5b5061017e61032f366004611559565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561036657600080fd5b506101fe610375366004611523565b61094b565b60606013805461038990611592565b80601f01602080910402602001604051908101604052809291908181526020018280546103b590611592565b80156104025780601f106103d757610100808354040283529160200191610402565b820191906000526020600020905b8154815290600101906020018083116103e557829003601f168201915b5050505050905090565b60006104193384846109c1565b5060015b92915050565b60006104316012600a6116c1565b610440906402540be4006116d0565b905090565b6000610452848484610ae5565b6104a4843361049f8560405180606001604052806028815260200161186c602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190610fd1565b6109c1565b5060019392505050565b6104b6610ffd565b60005b815181101561051e576000600560008484815181106104da576104da6116ef565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061051681611705565b9150506104b9565b5050565b61052a610ffd565b6105346000611057565b565b60606014805461038990611592565b6000610419338484610ae5565b61055a610ffd565b601654600160a01b900460ff16156105b95760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064015b60405180910390fd5b6105c4333083610ae5565b601580546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556105fb90309061049f610423565b601560009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561064e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106729190611720565b6001600160a01b031663c9c6539630601560009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f89190611720565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610745573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107699190611720565b601680546001600160a01b039283166001600160a01b03199091161790556015541663f305d7193430846000806107a86000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610810573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610835919061173d565b505060165460155460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af115801561088e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b2919061176b565b506016805462ff00ff60a01b19166201000160a01b179055436007556108d86000611057565b50565b6108e3610ffd565b60005b815181101561051e57600160056000848481518110610907576109076116ef565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061094381611705565b9150506108e6565b610953610ffd565b6001600160a01b0381166109b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b0565b6108d881611057565b6001600160a01b038316610a235760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105b0565b6001600160a01b038216610a845760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105b0565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b495760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105b0565b6001600160a01b038216610bab5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105b0565b60008111610c0d5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105b0565b610c156110a7565b600080546001600160a01b03858116911614801590610c4257506000546001600160a01b03848116911614155b15610e85576001600160a01b03841660009081526005602052604090205460ff16158015610c8957506001600160a01b03831660009081526005602052604090205460ff16155b610c9257600080fd5b610cbe6064610cb8600c5460125411610cad57600854610cb1565b600a545b8590611161565b90611174565b6016549091506001600160a01b038581169116148015610cec57506015546001600160a01b03848116911614155b8015610d1157506001600160a01b03831660009081526004602052604090205460ff16155b15610d4e57436007546014610d26919061178d565b1115610d3857823b15610d3857600080fd5b60128054906000610d4883611705565b91905055505b6016546001600160a01b038481169116148015610d7457506001600160a01b0384163014155b15610da157610d9e6064610cb8600d5460125411610d9457600954610cb1565b600b548590611161565b90505b30600090815260016020526040902054601654600160a81b900460ff16158015610dd857506016546001600160a01b038581169116145b8015610ded5750601654600160b01b900460ff165b8015610dfa575060115481115b8015610e095750600e54601254115b8015610e1757504360105414155b15610e835743601055600f54600090610e326012600a6116c1565b610e3c90436116d0565b610e4691906117bb565b601154610e53919061178d565b9050610e70610e6b85610e668585611180565b611180565b611195565b478015610e8057610e804761130f565b50505b505b8015610eff5730600090815260016020526040902054610ea59082611349565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ef69085815260200190565b60405180910390a35b6001600160a01b038416600090815260016020526040902054610f229083611355565b6001600160a01b038516600090815260016020526040812091909155610f4882846117cf565b6001600160a01b038516600090815260016020526040902054909150610f6e9082611349565b6001600160a01b0380861660008181526001602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610fc29085815260200190565b60405180910390a35050505050565b60008184841115610ff55760405162461bcd60e51b81526004016105b09190611361565b505050900390565b6000546001600160a01b031633146105345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b326000818152600260205260409020544391906001600160801b038084169116141561112d576001600160a01b0381166000908152600260205260409020546001600160801b03600160801b909104163a1461051e5760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b60448201526064016105b0565b6001600160a01b03811660009081526002602052604090203a6001600160801b03908116600160801b029084161790555050565b600061116d82846116d0565b9392505050565b600061116d82846117e6565b600081831161118f578261116d565b50919050565b6016805460ff60a81b1916600160a81b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106111dd576111dd6116ef565b6001600160a01b03928316602091820292909201810191909152601554604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611236573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125a9190611720565b8160018151811061126d5761126d6116ef565b6001600160a01b03928316602091820292909201015260155461129391309116846109c1565b60155460405163791ac94760e01b81526001600160a01b039091169063791ac947906112cc9085906000908690309042906004016117fa565b600060405180830381600087803b1580156112e657600080fd5b505af11580156112fa573d6000803e3d6000fd5b50506016805460ff60a81b1916905550505050565b6006546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561051e573d6000803e3d6000fd5b600061116d828461178d565b600061116d82846117cf565b600060208083528351808285015260005b8181101561138e57858101830151858201604001528201611372565b818111156113a0576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146108d857600080fd5b80356113d6816113b6565b919050565b600080604083850312156113ee57600080fd5b82356113f9816113b6565b946020939093013593505050565b60008060006060848603121561141c57600080fd5b8335611427816113b6565b92506020840135611437816113b6565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561147157600080fd5b823567ffffffffffffffff8082111561148957600080fd5b818501915085601f83011261149d57600080fd5b8135818111156114af576114af611448565b8060051b604051601f19603f830116810181811085821117156114d4576114d4611448565b6040529182528482019250838101850191888311156114f257600080fd5b938501935b8285101561151757611508856113cb565b845293850193928501926114f7565b98975050505050505050565b60006020828403121561153557600080fd5b813561116d816113b6565b60006020828403121561155257600080fd5b5035919050565b6000806040838503121561156c57600080fd5b8235611577816113b6565b91506020830135611587816113b6565b809150509250929050565b600181811c908216806115a657607f821691505b6020821081141561118f57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600181815b808511156116185781600019048211156115fe576115fe6115c7565b8085161561160b57918102915b93841c93908002906115e2565b509250929050565b60008261162f5750600161041d565b8161163c5750600061041d565b8160018114611652576002811461165c57611678565b600191505061041d565b60ff84111561166d5761166d6115c7565b50506001821b61041d565b5060208310610133831016604e8410600b841016171561169b575081810a61041d565b6116a583836115dd565b80600019048211156116b9576116b96115c7565b029392505050565b600061116d60ff841683611620565b60008160001904831182151516156116ea576116ea6115c7565b500290565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611719576117196115c7565b5060010190565b60006020828403121561173257600080fd5b815161116d816113b6565b60008060006060848603121561175257600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561177d57600080fd5b8151801515811461116d57600080fd5b600082198211156117a0576117a06115c7565b500190565b634e487b7160e01b600052601260045260246000fd5b6000826117ca576117ca6117a5565b500690565b6000828210156117e1576117e16115c7565b500390565b6000826117f5576117f56117a5565b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561184a5784516001600160a01b031683529383019391830191600101611825565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212203b98422d4fb396aab3f1b4933d1b053bda27b97b5153e63931732736f242334f64736f6c634300080a0033
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.