Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Source Code
Overview
Max Total Supply
80,000,000 Trister
Holders
9,026
Transfers
-
0 (0%)
Market
Onchain Market Cap
-
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:
TristersLightCoin
Compiler Version
v0.5.4+commit.9549d8ff
Contract Source Code (Solidity Multiple files format)
pragma solidity <= 0.5.4;
import 'SafeMath.sol';
import 'Ownable.sol';
import 'Address.sol';
import 'IERC20.sol';
contract TristersLightCoin is Ownable, IERC20 {
using SafeMath for uint256;
using Address for address;
string public constant name = 'Trister’s Light Coin';
string public constant symbol = 'Trister';
uint256 public constant decimals = 18;
uint256 public constant totalSupply = 8000 * 10000 * 10 ** decimals;
uint256 public constant FounderAllocation = 500 * 10000 * 10 ** decimals;
uint256 public constant FounderLockupAmount = 300 * 10000 * 10 ** decimals;
uint256 public constant FounderLockupCliff = 180 days;
uint256 public constant FounderReleaseInterval = 30 days;
uint256 public constant FounderReleaseAmount = 50 * 10000 * 10 ** decimals;
address public founder = address(0);
uint256 public founderLockupStartTime = 0;
uint256 public founderReleasedAmount = 0;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed from, address indexed to, uint256 value);
event ChangeFounder(address indexed previousFounder, address indexed newFounder);
event SetMinter(address indexed minter);
constructor(address _founder, address _operator) public {
require(_founder != address(0), "TristersLightCoin: founder is the zero address");
require(_operator != address(0), "TristersLightCoin: operator is the zero address");
founder = _founder;
founderLockupStartTime = block.timestamp;
_balances[address(this)] = totalSupply;
_transfer(address(this), _operator, FounderAllocation.sub(FounderLockupAmount));
}
function release() public {
uint256 currentTime = block.timestamp;
uint256 cliffTime = founderLockupStartTime.add(FounderLockupCliff);
if (currentTime < cliffTime) return;
if (founderReleasedAmount >= FounderLockupAmount) return;
uint256 month = currentTime.sub(cliffTime).div(FounderReleaseInterval);
uint256 releaseAmount = month.mul(FounderReleaseAmount);
if (releaseAmount > FounderLockupAmount) releaseAmount = FounderLockupAmount;
if (releaseAmount <= founderReleasedAmount) return;
uint256 amount = releaseAmount.sub(founderReleasedAmount);
founderReleasedAmount = releaseAmount;
_transfer(address(this), founder, amount);
}
function balanceOf(address account) public view returns (uint256) {
return _balances[account];
}
function transfer(address to, uint256 amount) public returns (bool) {
_transfer(msg.sender, to, amount);
return true;
}
function allowance(address from, address to) public view returns (uint256) {
return _allowances[from][to];
}
function approve(address to, uint256 amount) public returns (bool) {
_approve(msg.sender, to, amount);
return true;
}
function transferFrom(address from, address to, uint256 amount) public returns (bool) {
uint256 remaining = _allowances[from][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance");
_transfer(from, to, amount);
_approve(from, msg.sender, remaining);
return true;
}
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");
_balances[from] = _balances[from].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[to] = _balances[to].add(amount);
emit Transfer(from, to, amount);
}
function _approve(address from, address to, uint256 amount) private {
require(from != address(0), "ERC20: approve from the zero address");
require(to != address(0), "ERC20: approve to the zero address");
_allowances[from][to] = amount;
emit Approval(from, to, amount);
}
function changeFounder(address _founder) public onlyOwner {
require(_founder != address(0), "TristersLightCoin: founder is the zero address");
emit ChangeFounder(founder, _founder);
founder = _founder;
}
function setMinter(address minter) public onlyOwner {
require(minter != address(0), "TristersLightCoin: minter is the zero address");
require(minter.isContract(), "TristersLightCoin: minter is not contract");
_transfer(address(this), minter, totalSupply.sub(FounderAllocation));
emit SetMinter(minter);
}
}pragma solidity <= 0.5.4;
library Address {
function isContract(address account) internal view returns (bool) {
uint256 size;
assembly { size := extcodesize(account) } //solium-disable-line security/no-inline-assembly
return size > 0;
}
function toPayable(address account) internal pure returns (address payable) {
return address(uint160(account));
}
}pragma solidity <= 0.5.4;
interface IERC20 {
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
pragma solidity <= 0.5.4;
contract Ownable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
constructor() internal {
_owner = msg.sender;
emit OwnershipTransferred(address(0), _owner);
}
function owner() public view returns (address) {
return _owner;
}
function isOwner() public view returns (bool) {
return msg.sender == _owner;
}
modifier onlyOwner() {
require(msg.sender == _owner, "Ownable: caller is not the owner");
_;
}
function transferOwnership(address newOwner) public onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}pragma solidity ^0.5.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*
* _Available since v2.4.0._
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*
* _Available since v2.4.0._
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*
* _Available since v2.4.0._
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"founderLockupStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"amount","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":"from","type":"address"},{"name":"to","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"FounderAllocation","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FounderLockupAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"founder","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FounderReleaseAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"release","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_founder","type":"address"}],"name":"changeFounder","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"founderReleasedAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"minter","type":"address"}],"name":"setMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"FounderLockupCliff","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FounderReleaseInterval","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_founder","type":"address"},{"name":"_operator","type":"address"}],"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":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousFounder","type":"address"},{"indexed":true,"name":"newFounder","type":"address"}],"name":"ChangeFounder","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"minter","type":"address"}],"name":"SetMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]Contract Creation Code
608060405260018054600160a060020a0319169055600060028190556003553480156200002b57600080fd5b50604051604080620016dc833981018060405260408110156200004d57600080fd5b50805160209091015160008054600160a060020a0319163317808255604051600160a060020a039190911691907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600160a060020a038216151562000102576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806200165a602e913960400191505060405180910390fd5b600160a060020a038116151562000165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018062001688602f913960400191505060405180910390fd5b60018054600160a060020a031916600160a060020a038416179055426002553060008181526004602052604090206a422ca8b0a00a42500000009055620001e69082620001d76a0422ca8b0a00a4250000006a027b46536c66c8e3000000640100000000620001ee810262000db31704565b64010000000062000248810204565b505062000522565b60006200024183836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250620003f8640100000000026401000000009004565b9392505050565b600160a060020a0383161515620002ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180620016b76025913960400191505060405180910390fd5b600160a060020a03821615156200030e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180620016116023913960400191505060405180910390fd5b6200035d81606060405190810160405280602681526020016200163460269139600160a060020a038616600090815260046020526040902054919064010000000062000b4c620003f882021704565b600160a060020a0380851660009081526004602052604080822093909355908416815220546200039c908264010000000062000d4f620004ad82021704565b600160a060020a0380841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115620004a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620004695781810151838201526020016200044f565b50505050905090810190601f168015620004975780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156200024157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6110df80620005326000396000f3fe608060405234801561001057600080fd5b506004361061016a576000357c01000000000000000000000000000000000000000000000000000000009004806386d1a69f116100e0578063a9059cbb11610099578063a9059cbb1461033e578063dd62ed3e1461036a578063f2fde38b14610398578063fca3b5aa146103be578063fedacfa4146103e4578063ff197038146103ec5761016a565b806386d1a69f146102ee5780638da5cb5b146102f85780638f32d59b1461030057806393c32e061461030857806395d89b411461032e578063a42d91d8146103365761016a565b806326e5be361161013257806326e5be361461028457806330cf480b1461028c578063313ce567146102945780634d853ee51461029c5780635f6e84ee146102c057806370a08231146102c85761016a565b806306fdde031461016f57806307e4498c146101ec578063095ea7b31461020657806318160ddd1461024657806323b872dd1461024e575b600080fd5b6101776103f4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b1578181015183820152602001610199565b50505050905090810190601f1680156101de5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f461042b565b60408051918252519081900360200190f35b6102326004803603604081101561021c57600080fd5b50600160a060020a038135169060200135610431565b604080519115158252519081900360200190f35b6101f4610448565b6102326004803603606081101561026457600080fd5b50600160a060020a03813581169160208101359091169060400135610457565b6101f46104cc565b6101f46104db565b6101f46104ea565b6102a46104ef565b60408051600160a060020a039092168252519081900360200190f35b6101f46104fe565b6101f4600480360360208110156102de57600080fd5b5035600160a060020a031661050c565b6102f6610527565b005b6102a4610625565b610232610634565b6102f66004803603602081101561031e57600080fd5b5035600160a060020a0316610645565b61017761075a565b6101f4610791565b6102326004803603604081101561035457600080fd5b50600160a060020a038135169060200135610797565b6101f46004803603604081101561038057600080fd5b50600160a060020a03813581169160200135166107a4565b6102f6600480360360208110156103ae57600080fd5b5035600160a060020a03166107cf565b6102f6600480360360208110156103d457600080fd5b5035600160a060020a03166108e3565b6101f4610a48565b6101f4610a4f565b60408051808201909152601681527f54726973746572e2809973204c6967687420436f696e00000000000000000000602082015281565b60025481565b600061043e338484610a56565b5060015b92915050565b6a422ca8b0a00a425000000081565b6000806104a9836060604051908101604052806028815260200161101a60289139600160a060020a0388166000908152600560209081526040808320338452909152902054919063ffffffff610b4c16565b90506104b6858585610be6565b6104c1853383610a56565b506001949350505050565b6a0422ca8b0a00a42500000081565b6a027b46536c66c8e300000081565b601281565b600154600160a060020a031681565b6969e10de76676d080000081565b600160a060020a031660009081526004602052604090205490565b60025442906000906105429062ed4e0063ffffffff610d4f16565b905080821015610553575050610623565b6003546a027b46536c66c8e30000001161056e575050610623565b600061059362278d00610587858563ffffffff610db316565b9063ffffffff610df516565b905060006105b1826969e10de76676d080000063ffffffff610e3716565b90506a027b46536c66c8e30000008111156105d457506a027b46536c66c8e30000005b60035481116105e65750505050610623565b60006105fd60035483610db390919063ffffffff16565b600383905560015490915061061d903090600160a060020a031683610be6565b50505050505b565b600054600160a060020a031690565b600054600160a060020a0316331490565b600054600160a060020a031633146106a7576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600160a060020a03811615156106f15760405160e560020a62461bcd02815260040180806020018281038252602e815260200180610fcb602e913960400191505060405180910390fd5b600154604051600160a060020a038084169216907f0d6a44001f99eb1e3e879ad45c4f03a44f9fec7dedebb037550b0c8180372ae190600090a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60408051808201909152600781527f5472697374657200000000000000000000000000000000000000000000000000602082015281565b60035481565b600061043e338484610be6565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600054600160a060020a03163314610831576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600160a060020a038116151561087b5760405160e560020a62461bcd028152600401808060200182810382526026815260200180610f306026913960400191505060405180910390fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600054600160a060020a03163314610945576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600160a060020a038116151561098f5760405160e560020a62461bcd02815260040180806020018281038252602d815260200180610f78602d913960400191505060405180910390fd5b6109a181600160a060020a0316610e97565b15156109e15760405160e560020a62461bcd0281526004018080602001828103825260298152602001806110676029913960400191505060405180910390fd5b610a113082610a0c6a422ca8b0a00a42500000006a0422ca8b0a00a42500000063ffffffff610db316565b610be6565b604051600160a060020a038216907fcec52196e972044edde8689a1b608e459c5946b7f3e5c8cd3d6d8e126d422e1c90600090a250565b62ed4e0081565b62278d0081565b600160a060020a0383161515610aa05760405160e560020a62461bcd0281526004018080602001828103825260248152602001806110906024913960400191505060405180910390fd5b600160a060020a0382161515610aea5760405160e560020a62461bcd028152600401808060200182810382526022815260200180610f566022913960400191505060405180910390fd5b600160a060020a03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008184841115610bde5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ba3578181015183820152602001610b8b565b50505050905090810190601f168015610bd05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600160a060020a0383161515610c305760405160e560020a62461bcd0281526004018080602001828103825260258152602001806110426025913960400191505060405180910390fd5b600160a060020a0382161515610c7a5760405160e560020a62461bcd028152600401808060200182810382526023815260200180610f0d6023913960400191505060405180910390fd5b610cbe8160606040519081016040528060268152602001610fa560269139600160a060020a038616600090815260046020526040902054919063ffffffff610b4c16565b600160a060020a038085166000908152600460205260408082209390935590841681522054610cf3908263ffffffff610d4f16565b600160a060020a0380841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082820183811015610dac576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000610dac83836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610b4c565b6000610dac83836040805190810160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610e9f565b6000821515610e4857506000610442565b828202828482811515610e5757fe5b0414610dac5760405160e560020a62461bcd028152600401808060200182810382526021815260200180610ff96021913960400191505060405180910390fd5b6000903b1190565b600081818411610ef45760405160e560020a62461bcd02815260040180806020018281038252838181518152602001915080519060200190808383600083811015610ba3578181015183820152602001610b8b565b5060008385811515610f0257fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737354726973746572734c69676874436f696e3a206d696e74657220697320746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554726973746572734c69676874436f696e3a20666f756e64657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737354726973746572734c69676874436f696e3a206d696e746572206973206e6f7420636f6e747261637445524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a7230582066f3060a5bd5d337cbb8e02db99cf1d83dea5df4850c76b197cb803e0edc9b1d002945524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554726973746572734c69676874436f696e3a20666f756e64657220697320746865207a65726f206164647265737354726973746572734c69676874436f696e3a206f70657261746f7220697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573730000000000000000000000000a5bde63330f6a9968d04d67c859cf01200f88bf0000000000000000000000005b3e75f2f181950d390407321239c68124b15fca
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061016a576000357c01000000000000000000000000000000000000000000000000000000009004806386d1a69f116100e0578063a9059cbb11610099578063a9059cbb1461033e578063dd62ed3e1461036a578063f2fde38b14610398578063fca3b5aa146103be578063fedacfa4146103e4578063ff197038146103ec5761016a565b806386d1a69f146102ee5780638da5cb5b146102f85780638f32d59b1461030057806393c32e061461030857806395d89b411461032e578063a42d91d8146103365761016a565b806326e5be361161013257806326e5be361461028457806330cf480b1461028c578063313ce567146102945780634d853ee51461029c5780635f6e84ee146102c057806370a08231146102c85761016a565b806306fdde031461016f57806307e4498c146101ec578063095ea7b31461020657806318160ddd1461024657806323b872dd1461024e575b600080fd5b6101776103f4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b1578181015183820152602001610199565b50505050905090810190601f1680156101de5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f461042b565b60408051918252519081900360200190f35b6102326004803603604081101561021c57600080fd5b50600160a060020a038135169060200135610431565b604080519115158252519081900360200190f35b6101f4610448565b6102326004803603606081101561026457600080fd5b50600160a060020a03813581169160208101359091169060400135610457565b6101f46104cc565b6101f46104db565b6101f46104ea565b6102a46104ef565b60408051600160a060020a039092168252519081900360200190f35b6101f46104fe565b6101f4600480360360208110156102de57600080fd5b5035600160a060020a031661050c565b6102f6610527565b005b6102a4610625565b610232610634565b6102f66004803603602081101561031e57600080fd5b5035600160a060020a0316610645565b61017761075a565b6101f4610791565b6102326004803603604081101561035457600080fd5b50600160a060020a038135169060200135610797565b6101f46004803603604081101561038057600080fd5b50600160a060020a03813581169160200135166107a4565b6102f6600480360360208110156103ae57600080fd5b5035600160a060020a03166107cf565b6102f6600480360360208110156103d457600080fd5b5035600160a060020a03166108e3565b6101f4610a48565b6101f4610a4f565b60408051808201909152601681527f54726973746572e2809973204c6967687420436f696e00000000000000000000602082015281565b60025481565b600061043e338484610a56565b5060015b92915050565b6a422ca8b0a00a425000000081565b6000806104a9836060604051908101604052806028815260200161101a60289139600160a060020a0388166000908152600560209081526040808320338452909152902054919063ffffffff610b4c16565b90506104b6858585610be6565b6104c1853383610a56565b506001949350505050565b6a0422ca8b0a00a42500000081565b6a027b46536c66c8e300000081565b601281565b600154600160a060020a031681565b6969e10de76676d080000081565b600160a060020a031660009081526004602052604090205490565b60025442906000906105429062ed4e0063ffffffff610d4f16565b905080821015610553575050610623565b6003546a027b46536c66c8e30000001161056e575050610623565b600061059362278d00610587858563ffffffff610db316565b9063ffffffff610df516565b905060006105b1826969e10de76676d080000063ffffffff610e3716565b90506a027b46536c66c8e30000008111156105d457506a027b46536c66c8e30000005b60035481116105e65750505050610623565b60006105fd60035483610db390919063ffffffff16565b600383905560015490915061061d903090600160a060020a031683610be6565b50505050505b565b600054600160a060020a031690565b600054600160a060020a0316331490565b600054600160a060020a031633146106a7576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600160a060020a03811615156106f15760405160e560020a62461bcd02815260040180806020018281038252602e815260200180610fcb602e913960400191505060405180910390fd5b600154604051600160a060020a038084169216907f0d6a44001f99eb1e3e879ad45c4f03a44f9fec7dedebb037550b0c8180372ae190600090a36001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60408051808201909152600781527f5472697374657200000000000000000000000000000000000000000000000000602082015281565b60035481565b600061043e338484610be6565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600054600160a060020a03163314610831576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600160a060020a038116151561087b5760405160e560020a62461bcd028152600401808060200182810382526026815260200180610f306026913960400191505060405180910390fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600054600160a060020a03163314610945576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600160a060020a038116151561098f5760405160e560020a62461bcd02815260040180806020018281038252602d815260200180610f78602d913960400191505060405180910390fd5b6109a181600160a060020a0316610e97565b15156109e15760405160e560020a62461bcd0281526004018080602001828103825260298152602001806110676029913960400191505060405180910390fd5b610a113082610a0c6a422ca8b0a00a42500000006a0422ca8b0a00a42500000063ffffffff610db316565b610be6565b604051600160a060020a038216907fcec52196e972044edde8689a1b608e459c5946b7f3e5c8cd3d6d8e126d422e1c90600090a250565b62ed4e0081565b62278d0081565b600160a060020a0383161515610aa05760405160e560020a62461bcd0281526004018080602001828103825260248152602001806110906024913960400191505060405180910390fd5b600160a060020a0382161515610aea5760405160e560020a62461bcd028152600401808060200182810382526022815260200180610f566022913960400191505060405180910390fd5b600160a060020a03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008184841115610bde5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ba3578181015183820152602001610b8b565b50505050905090810190601f168015610bd05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600160a060020a0383161515610c305760405160e560020a62461bcd0281526004018080602001828103825260258152602001806110426025913960400191505060405180910390fd5b600160a060020a0382161515610c7a5760405160e560020a62461bcd028152600401808060200182810382526023815260200180610f0d6023913960400191505060405180910390fd5b610cbe8160606040519081016040528060268152602001610fa560269139600160a060020a038616600090815260046020526040902054919063ffffffff610b4c16565b600160a060020a038085166000908152600460205260408082209390935590841681522054610cf3908263ffffffff610d4f16565b600160a060020a0380841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082820183811015610dac576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000610dac83836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610b4c565b6000610dac83836040805190810160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610e9f565b6000821515610e4857506000610442565b828202828482811515610e5757fe5b0414610dac5760405160e560020a62461bcd028152600401808060200182810382526021815260200180610ff96021913960400191505060405180910390fd5b6000903b1190565b600081818411610ef45760405160e560020a62461bcd02815260040180806020018281038252838181518152602001915080519060200190808383600083811015610ba3578181015183820152602001610b8b565b5060008385811515610f0257fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737354726973746572734c69676874436f696e3a206d696e74657220697320746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554726973746572734c69676874436f696e3a20666f756e64657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737354726973746572734c69676874436f696e3a206d696e746572206973206e6f7420636f6e747261637445524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a7230582066f3060a5bd5d337cbb8e02db99cf1d83dea5df4850c76b197cb803e0edc9b1d0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000a5bde63330f6a9968d04d67c859cf01200f88bf0000000000000000000000005b3e75f2f181950d390407321239c68124b15fca
-----Decoded View---------------
Arg [0] : _founder (address): 0x0A5bdE63330f6A9968D04D67C859cF01200f88bF
Arg [1] : _operator (address): 0x5b3e75F2F181950d390407321239c68124B15FCA
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000a5bde63330f6a9968d04d67c859cf01200f88bf
Arg [1] : 0000000000000000000000005b3e75f2f181950d390407321239c68124b15fca
Deployed Bytecode Sourcemap
116:4613:4:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;116:4613:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233:54;;;:::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;233:54:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;858:41;;;:::i;:::-;;;;;;;;;;;;;;;;2948:137;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2948:137:4;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;383:67;;;:::i;3091:314::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3091:314:4;;;;;;;;;;;;;;;;;:::i;457:72::-;;;:::i;535:74::-;;;:::i;340:37::-;;;:::i;817:35::-;;;:::i;:::-;;;;-1:-1:-1;;;;;817:35:4;;;;;;;;;;;;;;736:74;;;:::i;2563:108::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2563:108:4;-1:-1:-1;;;;;2563:108:4;;:::i;1834:723::-;;;:::i;:::-;;290:77:2;;;:::i;373:90::-;;;:::i;4148:232:4:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4148:232:4;-1:-1:-1;;;;;4148:232:4;;:::i;293:41::-;;;:::i;905:40::-;;;:::i;2677:139::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2677:139:4;;;;;;;;:::i;2822:120::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;2822:120:4;;;;;;;;;;:::i;589:232:2:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;589:232:2;-1:-1:-1;;;;;589:232:2;;:::i;4386:340:4:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4386:340:4;-1:-1:-1;;;;;4386:340:4;;:::i;615:53::-;;;:::i;674:56::-;;;:::i;233:54::-;;;;;;;;;;;;;;;;;;;:::o;858:41::-;;;;:::o;2948:137::-;3009:4;3025:32;3034:10;3046:2;3050:6;3025:8;:32::i;:::-;-1:-1:-1;3074:4:4;2948:137;;;;;:::o;383:67::-;421:29;383:67;:::o;3091:314::-;3171:4;3187:17;3207:85;3241:6;3207:85;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3207:17:4;;;;;;:11;:17;;;;;;;;3225:10;3207:29;;;;;;;;;:85;;:33;:85;:::i;:::-;3187:105;;3303:27;3313:4;3319:2;3323:6;3303:9;:27::i;:::-;3340:37;3349:4;3355:10;3367:9;3340:8;:37::i;:::-;-1:-1:-1;3394:4:4;;3091:314;-1:-1:-1;;;;3091:314:4:o;457:72::-;501:28;457:72;:::o;535:74::-;581:28;535:74;:::o;340:37::-;375:2;340:37;:::o;817:35::-;;;-1:-1:-1;;;;;817:35:4;;:::o;736:74::-;783:27;736:74;:::o;2563:108::-;-1:-1:-1;;;;;2646:18:4;2620:7;2646:18;;;:9;:18;;;;;;;2563:108::o;1834:723::-;1937:22;;1892:15;;1870:19;;1937:46;;660:8;1937:46;:26;:46;:::i;:::-;1917:66;;2011:9;1997:11;:23;1993:36;;;2022:7;;;;1993:36;2042:21;;581:28;-1:-1:-1;2038:57:4;;2088:7;;;;2038:57;2104:13;2120:54;723:7;2120:26;:11;2136:9;2120:26;:15;:26;:::i;:::-;:30;:54;:30;:54;:::i;:::-;2104:70;-1:-1:-1;2184:21:4;2208:31;2104:70;783:27;2208:31;:9;:31;:::i;:::-;2184:55;-1:-1:-1;581:28:4;2253:35;;2249:76;;;-1:-1:-1;581:28:4;2249:76;2356:21;;2339:38;;2335:51;;2379:7;;;;;;2335:51;2395:14;2412:40;2430:21;;2412:13;:17;;:40;;;;:::i;:::-;2462:21;:37;;;2534:7;;2395:57;;-1:-1:-1;2509:41:4;;2527:4;;-1:-1:-1;;;;;2534:7:4;2395:57;2509:9;:41::i;:::-;1834:723;;;;;;:::o;290:77:2:-;328:7;354:6;-1:-1:-1;;;;;354:6:2;290:77;:::o;373:90::-;413:4;450:6;-1:-1:-1;;;;;450:6:2;436:10;:20;;373:90::o;4148:232:4:-;522:6:2;;-1:-1:-1;;;;;522:6:2;508:10;:20;500:65;;;;;-1:-1:-1;;;;;500:65:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4224:22:4;;;;4216:81;;;;-1:-1:-1;;;;;4216:81:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4327:7;;4313:32;;-1:-1:-1;;;;;4313:32:4;;;;4327:7;;4313:32;;4327:7;;4313:32;4355:7;:18;;-1:-1:-1;;4355:18:4;-1:-1:-1;;;;;4355:18:4;;;;;;;;;;4148:232::o;293:41::-;;;;;;;;;;;;;;;;;;;:::o;905:40::-;;;;:::o;2677:139::-;2739:4;2755:33;2765:10;2777:2;2781:6;2755:9;:33::i;2822:120::-;-1:-1:-1;;;;;2914:17:4;;;2888:7;2914:17;;;:11;:17;;;;;;;;:21;;;;;;;;;;;;;2822:120::o;589:232:2:-;522:6;;-1:-1:-1;;;;;522:6:2;508:10;:20;500:65;;;;;-1:-1:-1;;;;;500:65:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;669:22:2;;;;661:73;;;;-1:-1:-1;;;;;661:73:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;770:6;;;749:38;;-1:-1:-1;;;;;749:38:2;;;;770:6;;;749:38;;;797:6;:17;;-1:-1:-1;;797:17:2;-1:-1:-1;;;;;797:17:2;;;;;;;;;;589:232::o;4386:340:4:-;522:6:2;;-1:-1:-1;;;;;522:6:2;508:10;:20;500:65;;;;;-1:-1:-1;;;;;500:65:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4456:20:4;;;;4448:78;;;;-1:-1:-1;;;;;4448:78:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4544:19;:6;-1:-1:-1;;;;;4544:17:4;;:19::i;:::-;4536:73;;;;;;-1:-1:-1;;;;;4536:73:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4619:68;4637:4;4644:6;4652:34;421:29;501:28;4652:34;:15;:34;:::i;:::-;4619:9;:68::i;:::-;4702:17;;-1:-1:-1;;;;;4702:17:4;;;;;;;;4386:340;:::o;615:53::-;660:8;615:53;:::o;674:56::-;723:7;674:56;:::o;3835:307::-;-1:-1:-1;;;;;3921:18:4;;;;3913:67;;;;-1:-1:-1;;;;;3913:67:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3998:16:4;;;;3990:63;;;;-1:-1:-1;;;;;3990:63:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4064:17:4;;;;;;;:11;:17;;;;;;;;:21;;;;;;;;;;;;;:30;;;4109:26;;;;;;;;;;;;;;;;;3835:307;;;:::o;1732:187:3:-;1818:7;1853:12;1845:6;;;;1837:29;;;;-1:-1:-1;;;;;1837:29:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;1837:29:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1888:5:3;;;1732:187::o;3411:418:4:-;-1:-1:-1;;;;;3498:18:4;;;;3490:68;;;;-1:-1:-1;;;;;3490:68:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3576:16:4;;;;3568:64;;;;-1:-1:-1;;;;;3568:64:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3661:69;3681:6;3661:69;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3661:15:4;;;;;;:9;:15;;;;;;;:69;;:19;:69;:::i;:::-;-1:-1:-1;;;;;3643:15:4;;;;;;;:9;:15;;;;;;:87;;;;3756:13;;;;;;;:25;;3774:6;3756:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3740:13:4;;;;;;;:9;:13;;;;;;;;;:41;;;;3796:26;;;;;;;3740:13;;3796:26;;;;;;;;;;;;;3411:418;;;:::o;834:176:3:-;892:7;923:5;;;946:6;;;;938:46;;;;;-1:-1:-1;;;;;938:46:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;1002:1;834:176;-1:-1:-1;;;834:176:3:o;1274:134::-;1332:7;1358:43;1362:1;1365;1358:43;;;;;;;;;;;;;;;;;;:3;:43::i;3073:130::-;3131:7;3157:39;3161:1;3164;3157:39;;;;;;;;;;;;;;;;;;:3;:39::i;2159:459::-;2217:7;2458:6;;2454:45;;;-1:-1:-1;2487:1:3;2480:8;;2454:45;2521:5;;;2525:1;2521;:5;2544;;;;;;;;:10;2536:56;;;;-1:-1:-1;;;;;2536:56:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50:220:0;110:4;167:20;;255:8;;50:220::o;3718:338:3:-;3804:7;3904:12;3897:5;;;3889:28;;;;-1:-1:-1;;;;;3889:28:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;3889:28:3;;3927:9;3943:1;3939;:5;;;;;;;;;3718:338;-1:-1:-1;;;;;3718:338:3:o
Swarm Source
bzzr://66f3060a5bd5d337cbb8e02db99cf1d83dea5df4850c76b197cb803e0edc9b1d
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.
Add Token to MetaMask (Web3)