ERC-20
Overview
Max Total Supply
4,461,110,300.72 TED
Holders
4,789
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:
TEDToken
Compiler Version
v0.5.10+commit.5a6ea5b1
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-07-20 */ pragma solidity ^0.5.0; 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) { require(b <= a, "SafeMath: subtraction overflow"); 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-solidity/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) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); 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) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through `transferFrom`. This is * zero by default. * * This value changes when `approve` or `transferFrom` are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * > 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); } contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See `IERC20.totalSupply`. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See `IERC20.balanceOf`. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See `IERC20.transfer`. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See `IERC20.allowance`. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See `IERC20.approve`. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } /** * @dev See `IERC20.transferFrom`. * * Emits an `Approval` event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of `ERC20`; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to `transfer`, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a `Transfer` event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { 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); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a `Transfer` event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destoys `amount` tokens from `account`, reducing the * total supply. * * Emits a `Transfer` event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an `Approval` event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Destoys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See `_burn` and `_approve`. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount)); } } contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. * * > Note that this information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * `IERC20.balanceOf` and `IERC20.transfer`. */ function decimals() public view returns (uint8) { return _decimals; } } contract TEDToken is ERC20, ERC20Detailed { uint256 public burned; string private constant NAME = "Token Economy Doin"; string private constant SYMBOL = "TED"; uint8 private constant DECIMALS = 18; uint256 private constant INITIAL_SUPPLY = 45 * 10**26; constructor () public ERC20Detailed(NAME, SYMBOL, DECIMALS) { _mint(msg.sender, INITIAL_SUPPLY); } function burn(uint256 value) public returns(bool) { burned = burned.add(value); _burn(msg.sender, value); return true; } function burnFrom(address from, uint256 value) public returns(bool) { burned = burned.add(value); _burnFrom(from, value); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"burned","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601281526020017f546f6b656e2045636f6e6f6d7920446f696e00000000000000000000000000008152506040518060400160405280600381526020017f544544000000000000000000000000000000000000000000000000000000000081525060128260039080519060200190620000989291906200027b565b508151620000ae9060049060208501906200027b565b506005805460ff191660ff9290921691909117905550620000de9050336b0e8a5010cf2a411214000000620000e4565b62000320565b6001600160a01b0382166200015a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200017681600254620001ff60201b620008681790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001a991839062000868620001ff821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156200027457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002be57805160ff1916838001178555620002ee565b82800160010185558215620002ee579182015b82811115620002ee578251825591602001919060010190620002d1565b50620002fc92915062000300565b5090565b6200031d91905b80821115620002fc576000815560010162000307565b90565b610acf80620003306000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b41146102bd578063a457c2d7146102c5578063a9059cbb146102f1578063dd62ed3e1461031d576100ea565b806370a082311461026357806373f425611461028957806379cc679014610291576100ea565b806323b872dd116100c857806323b872dd146101c6578063313ce567146101fc578063395093511461021a57806342966c6814610246576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101ac575b600080fd5b6100f761034b565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b0381351690602001356103e1565b604080519115158252519081900360200190f35b6101b46103f7565b60408051918252519081900360200190f35b610198600480360360608110156101dc57600080fd5b506001600160a01b038135811691602081013590911690604001356103fd565b610204610454565b6040805160ff9092168252519081900360200190f35b6101986004803603604081101561023057600080fd5b506001600160a01b03813516906020013561045d565b6101986004803603602081101561025c57600080fd5b5035610499565b6101b46004803603602081101561027957600080fd5b50356001600160a01b03166104c4565b6101b46104df565b610198600480360360408110156102a757600080fd5b506001600160a01b0381351690602001356104e5565b6100f7610508565b610198600480360360408110156102db57600080fd5b506001600160a01b038135169060200135610569565b6101986004803603604081101561030757600080fd5b506001600160a01b0381351690602001356105a5565b6101b46004803603604081101561033357600080fd5b506001600160a01b03813581169160200135166105b2565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103d75780601f106103ac576101008083540402835291602001916103d7565b820191906000526020600020905b8154815290600101906020018083116103ba57829003601f168201915b5050505050905090565b60006103ee3384846105dd565b50600192915050565b60025490565b600061040a8484846106c9565b6001600160a01b03841660009081526001602090815260408083203380855292529091205461044a918691610445908663ffffffff61080b16565b6105dd565b5060019392505050565b60055460ff1690565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103ee918590610445908663ffffffff61086816565b6006546000906104af908363ffffffff61086816565b6006556104bc33836108c9565b506001919050565b6001600160a01b031660009081526020819052604090205490565b60065481565b6006546000906104fb908363ffffffff61086816565b6006556103ee83836109a2565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103d75780601f106103ac576101008083540402835291602001916103d7565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103ee918590610445908663ffffffff61080b16565b60006103ee3384846106c9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166106225760405162461bcd60e51b8152600401808060200182810382526024815260200180610a776024913960400191505060405180910390fd5b6001600160a01b0382166106675760405162461bcd60e51b8152600401808060200182810382526022815260200180610a0f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661070e5760405162461bcd60e51b8152600401808060200182810382526025815260200180610a526025913960400191505060405180910390fd5b6001600160a01b0382166107535760405162461bcd60e51b81526004018080602001828103825260238152602001806109ec6023913960400191505060405180910390fd5b6001600160a01b03831660009081526020819052604090205461077c908263ffffffff61080b16565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546107b1908263ffffffff61086816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610862576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156108c2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03821661090e5760405162461bcd60e51b8152600401808060200182810382526021815260200180610a316021913960400191505060405180910390fd5b600254610921908263ffffffff61080b16565b6002556001600160a01b03821660009081526020819052604090205461094d908263ffffffff61080b16565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6109ac82826108c9565b6001600160a01b0382166000908152600160209081526040808320338085529252909120546109e7918491610445908563ffffffff61080b16565b505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a7230582041a8f091b4c70b0e0505bed62f834db9633191a03632892e6f86cf18c707466e64736f6c634300050a0032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b41146102bd578063a457c2d7146102c5578063a9059cbb146102f1578063dd62ed3e1461031d576100ea565b806370a082311461026357806373f425611461028957806379cc679014610291576100ea565b806323b872dd116100c857806323b872dd146101c6578063313ce567146101fc578063395093511461021a57806342966c6814610246576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101ac575b600080fd5b6100f761034b565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b0381351690602001356103e1565b604080519115158252519081900360200190f35b6101b46103f7565b60408051918252519081900360200190f35b610198600480360360608110156101dc57600080fd5b506001600160a01b038135811691602081013590911690604001356103fd565b610204610454565b6040805160ff9092168252519081900360200190f35b6101986004803603604081101561023057600080fd5b506001600160a01b03813516906020013561045d565b6101986004803603602081101561025c57600080fd5b5035610499565b6101b46004803603602081101561027957600080fd5b50356001600160a01b03166104c4565b6101b46104df565b610198600480360360408110156102a757600080fd5b506001600160a01b0381351690602001356104e5565b6100f7610508565b610198600480360360408110156102db57600080fd5b506001600160a01b038135169060200135610569565b6101986004803603604081101561030757600080fd5b506001600160a01b0381351690602001356105a5565b6101b46004803603604081101561033357600080fd5b506001600160a01b03813581169160200135166105b2565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103d75780601f106103ac576101008083540402835291602001916103d7565b820191906000526020600020905b8154815290600101906020018083116103ba57829003601f168201915b5050505050905090565b60006103ee3384846105dd565b50600192915050565b60025490565b600061040a8484846106c9565b6001600160a01b03841660009081526001602090815260408083203380855292529091205461044a918691610445908663ffffffff61080b16565b6105dd565b5060019392505050565b60055460ff1690565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103ee918590610445908663ffffffff61086816565b6006546000906104af908363ffffffff61086816565b6006556104bc33836108c9565b506001919050565b6001600160a01b031660009081526020819052604090205490565b60065481565b6006546000906104fb908363ffffffff61086816565b6006556103ee83836109a2565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103d75780601f106103ac576101008083540402835291602001916103d7565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103ee918590610445908663ffffffff61080b16565b60006103ee3384846106c9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166106225760405162461bcd60e51b8152600401808060200182810382526024815260200180610a776024913960400191505060405180910390fd5b6001600160a01b0382166106675760405162461bcd60e51b8152600401808060200182810382526022815260200180610a0f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661070e5760405162461bcd60e51b8152600401808060200182810382526025815260200180610a526025913960400191505060405180910390fd5b6001600160a01b0382166107535760405162461bcd60e51b81526004018080602001828103825260238152602001806109ec6023913960400191505060405180910390fd5b6001600160a01b03831660009081526020819052604090205461077c908263ffffffff61080b16565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546107b1908263ffffffff61086816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610862576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156108c2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03821661090e5760405162461bcd60e51b8152600401808060200182810382526021815260200180610a316021913960400191505060405180910390fd5b600254610921908263ffffffff61080b16565b6002556001600160a01b03821660009081526020819052604090205461094d908263ffffffff61080b16565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6109ac82826108c9565b6001600160a01b0382166000908152600160209081526040808320338085529252909120546109e7918491610445908563ffffffff61080b16565b505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a7230582041a8f091b4c70b0e0505bed62f834db9633191a03632892e6f86cf18c707466e64736f6c634300050a0032
Deployed Bytecode Sourcemap
13973:738:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13973:738:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13025: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;13025:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6961:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6961:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5984:91;;;:::i;:::-;;;;;;;;;;;;;;;;7580:256;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7580:256:0;;;;;;;;;;;;;;;;;:::i;13883:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8245:206;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8245:206:0;;;;;;;;:::i;14380:152::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14380:152:0;;:::i;6138:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6138:110:0;-1:-1:-1;;;;;6138:110:0;;:::i;14022:21::-;;;:::i;14540:168::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14540:168:0;;;;;;;;:::i;13227:87::-;;;:::i;8954:216::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8954:216:0;;;;;;;;:::i;6461:156::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6461:156:0;;;;;;;;:::i;6680:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6680:134:0;;;;;;;;;;:::i;13025:83::-;13095:5;13088:12;;;;;;;;-1:-1:-1;;13088:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13062:13;;13088:12;;13095:5;;13088:12;;13095:5;13088:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13025:83;:::o;6961:148::-;7026:4;7043:36;7052:10;7064:7;7073:5;7043:8;:36::i;:::-;-1:-1:-1;7097:4:0;6961:148;;;;:::o;5984:91::-;6055:12;;5984:91;:::o;7580:256::-;7669:4;7686:36;7696:6;7704:9;7715:6;7686:9;:36::i;:::-;-1:-1:-1;;;;;7762:19:0;;;;;;:11;:19;;;;;;;;7750:10;7762:31;;;;;;;;;7733:73;;7742:6;;7762:43;;7798:6;7762:43;:35;:43;:::i;:::-;7733:8;:73::i;:::-;-1:-1:-1;7824:4:0;7580:256;;;;;:::o;13883:83::-;13949:9;;;;13883:83;:::o;8245:206::-;8351:10;8325:4;8372:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;8372:32:0;;;;;;;;;;8325:4;;8342:79;;8363:7;;8372:48;;8409:10;8372:48;:36;:48;:::i;14380:152::-;14450:6;;14424:4;;14450:17;;14461:5;14450:17;:10;:17;:::i;:::-;14441:6;:26;14478:24;14484:10;14496:5;14478;:24::i;:::-;-1:-1:-1;14520:4:0;14380:152;;;:::o;6138:110::-;-1:-1:-1;;;;;6222:18:0;6195:7;6222:18;;;;;;;;;;;;6138:110::o;14022:21::-;;;;:::o;14540:168::-;14628:6;;14602:4;;14628:17;;14639:5;14628:17;:10;:17;:::i;:::-;14619:6;:26;14656:22;14666:4;14672:5;14656:9;:22::i;13227:87::-;13299:7;13292:14;;;;;;;;-1:-1:-1;;13292:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13266:13;;13292:14;;13299:7;;13292:14;;13299:7;13292:14;;;;;;;;;;;;;;;;;;;;;;;;8954:216;9065:10;9039:4;9086:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;9086:32:0;;;;;;;;;;9039:4;;9056:84;;9077:7;;9086:53;;9123:15;9086:53;:36;:53;:::i;6461:156::-;6530:4;6547:40;6557:10;6569:9;6580:6;6547:9;:40::i;6680:134::-;-1:-1:-1;;;;;6779:18:0;;;6752:7;6779:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6680:134::o;11756:335::-;-1:-1:-1;;;;;11849:19:0;;11841:68;;;;-1:-1:-1;;;11841:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11928:21:0;;11920:68;;;;-1:-1:-1;;;11920:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12001:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;12052:31;;;;;;;;;;;;;;;;;11756:335;;;:::o;9660:429::-;-1:-1:-1;;;;;9758:20:0;;9750:70;;;;-1:-1:-1;;;9750:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9839:23:0;;9831:71;;;;-1:-1:-1;;;9831:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9935:17:0;;:9;:17;;;;;;;;;;;:29;;9957:6;9935:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;9915:17:0;;;:9;:17;;;;;;;;;;;:49;;;;9998:20;;;;;;;:32;;10023:6;9998:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;9975:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;10046:35;;;;;;;9975:20;;10046:35;;;;;;;;;;;;;9660:429;;;:::o;738:184::-;796:7;829:1;824;:6;;816:49;;;;;-1:-1:-1;;;816:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;888:5:0;;;738:184::o;282:181::-;340:7;372:5;;;396:6;;;;388:46;;;;;-1:-1:-1;;;388:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;454:1;282:181;-1:-1:-1;;;282:181:0:o;11010:306::-;-1:-1:-1;;;;;11085:21:0;;11077:67;;;;-1:-1:-1;;;11077:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11172:12;;:23;;11189:5;11172:23;:16;:23;:::i;:::-;11157:12;:38;-1:-1:-1;;;;;11227:18:0;;:9;:18;;;;;;;;;;;:29;;11250:5;11227:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;11206:18:0;;:9;:18;;;;;;;;;;;:50;;;;11272:36;;;;;;;11206:9;;11272:36;;;;;;;;;;;11010:306;;:::o;12276:188::-;12348:22;12354:7;12363:6;12348:5;:22::i;:::-;-1:-1:-1;;;;;12411:20:0;;;;;;:11;:20;;;;;;;;12399:10;12411:32;;;;;;;;;12381:75;;12390:7;;12411:44;;12448:6;12411:44;:36;:44;:::i;12381:75::-;12276:188;;:::o
Swarm Source
bzzr://41a8f091b4c70b0e0505bed62f834db9633191a03632892e6f86cf18c707466e
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.