ERC-20
Source Code
NFT
Overview
Max Total Supply
235,226,395.259667739537370989 SYNC
Holders
3,400 (0.00%)
Transfers
-
0
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$56,169.71
Circulating Supply Market Cap
$38,644.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
Sync
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)Audit Report
/**
*Submitted for verification at Etherscan.io on 2020-11-12
*/
/*
███████╗██╗░░░██╗███╗░░░██╗░██████╗░░░░██████╗░░██████╗░██╗░░░░██╗███████╗██████╗░███████╗██████╗░
██╔════╝╚██╗░██╔╝████╗░░██║██╔════╝░░░░██╔══██╗██╔═══██╗██║░░░░██║██╔════╝██╔══██╗██╔════╝██╔══██╗
███████╗░╚████╔╝░██╔██╗░██║██║░░░░░░░░░██████╔╝██║░░░██║██║░█╗░██║█████╗░░██████╔╝█████╗░░██║░░██║
╚════██║░░╚██╔╝░░██║╚██╗██║██║░░░░░░░░░██╔═══╝░██║░░░██║██║███╗██║██╔══╝░░██╔══██╗██╔══╝░░██║░░██║
███████║░░░██║░░░██║░╚████║╚██████╗░░░░██║░░░░░╚██████╔╝╚███╔███╔╝███████╗██║░░██║███████╗██████╔╝
╚══════╝░░░╚═╝░░░╚═╝░░╚═══╝░╚═════╝░░░░╚═╝░░░░░░╚═════╝░░╚══╝╚══╝░╚══════╝╚═╝░░╚═╝╚══════╝╚═════╝░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░██████╗██████╗░██╗░░░██╗██████╗░████████╗░██████╗░██████╗░░██████╗░███╗░░░██╗██████╗░███████╗░░░░
██╔════╝██╔══██╗╚██╗░██╔╝██╔══██╗╚══██╔══╝██╔═══██╗██╔══██╗██╔═══██╗████╗░░██║██╔══██╗██╔════╝░░░░
██║░░░░░██████╔╝░╚████╔╝░██████╔╝░░░██║░░░██║░░░██║██████╔╝██║░░░██║██╔██╗░██║██║░░██║███████╗░░░░
██║░░░░░██╔══██╗░░╚██╔╝░░██╔═══╝░░░░██║░░░██║░░░██║██╔══██╗██║░░░██║██║╚██╗██║██║░░██║╚════██║░░░░
╚██████╗██║░░██║░░░██║░░░██║░░░░░░░░██║░░░╚██████╔╝██████╔╝╚██████╔╝██║░╚████║██████╔╝███████║░░░░
░╚═════╝╚═╝░░╚═╝░░░╚═╝░░░╚═╝░░░░░░░░╚═╝░░░░╚═════╝░╚═════╝░░╚═════╝░╚═╝░░╚═══╝╚═════╝░╚══════╝░░░░
*/
pragma solidity ^0.6.0;
interface ApproveAndCallFallBack {
function receiveApproval(address from, uint256 tokens, address token, bytes calldata data) external;
}
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
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.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
contract Sync is IERC20, Ownable {
using SafeMath for uint256;
mapping (address => uint256) private balances;
mapping (address => mapping (address => uint256)) private allowed;
string public constant name = "SYNC";
string public constant symbol = "SYNC";
uint8 public constant decimals = 18;
uint256 _totalSupply = 16000000 * (10 ** 18); // 16 million supply
mapping (address => bool) public mintContracts;
modifier isMintContract() {
require(mintContracts[msg.sender],"calling address is not allowed to mint");
_;
}
constructor() public Ownable(){
balances[msg.sender] = _totalSupply;
emit Transfer(address(0), msg.sender, _totalSupply);
}
function setMintAccess(address account, bool canMint) public onlyOwner {
mintContracts[account]=canMint;
}
function _mint(address account, uint256 amount) public isMintContract {
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);
}
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
function balanceOf(address user) public view override returns (uint256) {
return balances[user];
}
function allowance(address user, address spender) public view override returns (uint256) {
return allowed[user][spender];
}
function transfer(address to, uint256 value) public override returns (bool) {
require(value <= balances[msg.sender],"insufficient balance");
require(to != address(0),"cannot send to zero address");
balances[msg.sender] = balances[msg.sender].sub(value);
balances[to] = balances[to].add(value);
emit Transfer(msg.sender, to, value);
return true;
}
function approve(address spender, uint256 value) public override returns (bool) {
require(spender != address(0),"cannot approve the zero address");
allowed[msg.sender][spender] = value;
emit Approval(msg.sender, spender, value);
return true;
}
function approveAndCall(address spender, uint256 tokens, bytes calldata data) external returns (bool) {
allowed[msg.sender][spender] = tokens;
emit Approval(msg.sender, spender, tokens);
ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, address(this), data);
return true;
}
function transferFrom(address from, address to, uint256 value) public override returns (bool) {
require(value <= balances[from],"insufficient balance");
require(value <= allowed[from][msg.sender],"insufficient allowance");
require(to != address(0),"cannot send to the zero address");
balances[from] = balances[from].sub(value);
balances[to] = balances[to].add(value);
allowed[from][msg.sender] = allowed[from][msg.sender].sub(value);
emit Transfer(from, to, value);
return true;
}
function burn(uint256 amount) external {
require(amount != 0,"must burn more than zero");
require(amount <= balances[msg.sender],"insufficient balance");
_totalSupply = _totalSupply.sub(amount);
balances[msg.sender] = balances[msg.sender].sub(amount);
emit Transfer(msg.sender, address(0), amount);
}
}Contract Security Audit
- Coin Fabrik - November 13th, 2020 - Security Audit Report
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"_mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintContracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"canMint","type":"bool"}],"name":"setMintAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526a0d3c21bcecceda1000000060035534801561001f57600080fd5b5060006100336001600160e01b036100ce16565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600354336000818152600160209081526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36100d2565b3390565b611099806100e16000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a9059cbb11610071578063a9059cbb14610306578063cae9ca5114610332578063ce8f5129146103b7578063dd62ed3e146103dd578063f2fde38b1461040b5761010b565b806370a08231146102b4578063715018a6146102da5780638da5cb5b146102e257806395d89b41146101105761010b565b806323b872dd116100de57806323b872dd14610217578063313ce5671461024d57806342966c681461026b5780634e6ec247146102885761010b565b806306fdde0314610110578063095ea7b31461018d5780631729f712146101cd57806318160ddd146101fd575b600080fd5b610118610431565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b038135169060200135610451565b604080519115158252519081900360200190f35b6101fb600480360360408110156101e357600080fd5b506001600160a01b0381351690602001351515610515565b005b6102056105aa565b60408051918252519081900360200190f35b6101b96004803603606081101561022d57600080fd5b506001600160a01b038135811691602081013590911690604001356105b0565b6102556107db565b6040805160ff9092168252519081900360200190f35b6101fb6004803603602081101561028157600080fd5b50356107e0565b6101fb6004803603604081101561029e57600080fd5b506001600160a01b0381351690602001356108fe565b610205600480360360208110156102ca57600080fd5b50356001600160a01b0316610a2c565b6101fb610a47565b6102ea610afb565b604080516001600160a01b039092168252519081900360200190f35b6101b96004803603604081101561031c57600080fd5b506001600160a01b038135169060200135610b0a565b6101b96004803603606081101561034857600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561037857600080fd5b82018360208201111561038a57600080fd5b803590602001918460018302840111640100000000831117156103ac57600080fd5b509092509050610c5e565b6101b9600480360360208110156103cd57600080fd5b50356001600160a01b0316610d6f565b610205600480360360408110156103f357600080fd5b506001600160a01b0381358116916020013516610d84565b6101fb6004803603602081101561042157600080fd5b50356001600160a01b0316610daf565b6040518060400160405280600481526020016353594e4360e01b81525081565b60006001600160a01b0383166104ae576040805162461bcd60e51b815260206004820152601f60248201527f63616e6e6f7420617070726f766520746865207a65726f206164647265737300604482015290519081900360640190fd5b3360008181526002602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b61051d610eb9565b6000546001600160a01b0390811691161461057f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b60035490565b6001600160a01b038316600090815260016020526040812054821115610614576040805162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b604482015290519081900360640190fd5b6001600160a01b0384166000908152600260209081526040808320338452909152902054821115610685576040805162461bcd60e51b8152602060048201526016602482015275696e73756666696369656e7420616c6c6f77616e636560501b604482015290519081900360640190fd5b6001600160a01b0383166106e0576040805162461bcd60e51b815260206004820152601f60248201527f63616e6e6f742073656e6420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6001600160a01b038416600090815260016020526040902054610709908363ffffffff610ebd16565b6001600160a01b03808616600090815260016020526040808220939093559085168152205461073e908363ffffffff610f0616565b6001600160a01b038085166000908152600160209081526040808320949094559187168152600282528281203382529091522054610782908363ffffffff610ebd16565b6001600160a01b0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020611044833981519152929181900390910190a35060019392505050565b601281565b80610832576040805162461bcd60e51b815260206004820152601860248201527f6d757374206275726e206d6f7265207468616e207a65726f0000000000000000604482015290519081900360640190fd5b3360009081526001602052604090205481111561088d576040805162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b604482015290519081900360640190fd5b6003546108a0908263ffffffff610ebd16565b600355336000908152600160205260409020546108c3908263ffffffff610ebd16565b33600081815260016020908152604080832094909455835185815293519193600080516020611044833981519152929081900390910190a350565b3360009081526004602052604090205460ff1661094c5760405162461bcd60e51b815260040180806020018281038252602681526020018061101e6026913960400191505060405180910390fd5b6001600160a01b0382166109a7576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6003546109ba908263ffffffff610f0616565b6003556001600160a01b0382166000908152600160205260409020546109e6908263ffffffff610f0616565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391926000805160206110448339815191529281900390910190a35050565b6001600160a01b031660009081526001602052604090205490565b610a4f610eb9565b6000546001600160a01b03908116911614610ab1576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b33600090815260016020526040812054821115610b65576040805162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b604482015290519081900360640190fd5b6001600160a01b038316610bc0576040805162461bcd60e51b815260206004820152601b60248201527f63616e6e6f742073656e6420746f207a65726f20616464726573730000000000604482015290519081900360640190fd5b33600090815260016020526040902054610be0908363ffffffff610ebd16565b33600090815260016020526040808220929092556001600160a01b03851681522054610c12908363ffffffff610f0616565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233926000805160206110448339815191529281900390910190a350600192915050565b3360008181526002602090815260408083206001600160a01b038916808552908352818420889055815188815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a3604051638f4ffcb160e01b81523360048201818152602483018790523060448401819052608060648501908152608485018790526001600160a01b038a1694638f4ffcb194938a93928a928a92919060a401848480828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b158015610d4c57600080fd5b505af1158015610d60573d6000803e3d6000fd5b50600198975050505050505050565b60046020526000908152604090205460ff1681565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610db7610eb9565b6000546001600160a01b03908116911614610e19576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610e5e5760405162461bcd60e51b8152600401808060200182810382526026815260200180610ff86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6000610eff83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f60565b9392505050565b600082820183811015610eff576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115610fef5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610fb4578181015183820152602001610f9c565b50505050905090810190601f168015610fe15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737363616c6c696e672061646472657373206973206e6f7420616c6c6f77656420746f206d696e74ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122078e1fc184373da8f1c0c847dc7a2dab41173747f03e8cfe2acf0dd4d8d6fb74e64736f6c63430006060033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a9059cbb11610071578063a9059cbb14610306578063cae9ca5114610332578063ce8f5129146103b7578063dd62ed3e146103dd578063f2fde38b1461040b5761010b565b806370a08231146102b4578063715018a6146102da5780638da5cb5b146102e257806395d89b41146101105761010b565b806323b872dd116100de57806323b872dd14610217578063313ce5671461024d57806342966c681461026b5780634e6ec247146102885761010b565b806306fdde0314610110578063095ea7b31461018d5780631729f712146101cd57806318160ddd146101fd575b600080fd5b610118610431565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b038135169060200135610451565b604080519115158252519081900360200190f35b6101fb600480360360408110156101e357600080fd5b506001600160a01b0381351690602001351515610515565b005b6102056105aa565b60408051918252519081900360200190f35b6101b96004803603606081101561022d57600080fd5b506001600160a01b038135811691602081013590911690604001356105b0565b6102556107db565b6040805160ff9092168252519081900360200190f35b6101fb6004803603602081101561028157600080fd5b50356107e0565b6101fb6004803603604081101561029e57600080fd5b506001600160a01b0381351690602001356108fe565b610205600480360360208110156102ca57600080fd5b50356001600160a01b0316610a2c565b6101fb610a47565b6102ea610afb565b604080516001600160a01b039092168252519081900360200190f35b6101b96004803603604081101561031c57600080fd5b506001600160a01b038135169060200135610b0a565b6101b96004803603606081101561034857600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561037857600080fd5b82018360208201111561038a57600080fd5b803590602001918460018302840111640100000000831117156103ac57600080fd5b509092509050610c5e565b6101b9600480360360208110156103cd57600080fd5b50356001600160a01b0316610d6f565b610205600480360360408110156103f357600080fd5b506001600160a01b0381358116916020013516610d84565b6101fb6004803603602081101561042157600080fd5b50356001600160a01b0316610daf565b6040518060400160405280600481526020016353594e4360e01b81525081565b60006001600160a01b0383166104ae576040805162461bcd60e51b815260206004820152601f60248201527f63616e6e6f7420617070726f766520746865207a65726f206164647265737300604482015290519081900360640190fd5b3360008181526002602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b61051d610eb9565b6000546001600160a01b0390811691161461057f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b60035490565b6001600160a01b038316600090815260016020526040812054821115610614576040805162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b604482015290519081900360640190fd5b6001600160a01b0384166000908152600260209081526040808320338452909152902054821115610685576040805162461bcd60e51b8152602060048201526016602482015275696e73756666696369656e7420616c6c6f77616e636560501b604482015290519081900360640190fd5b6001600160a01b0383166106e0576040805162461bcd60e51b815260206004820152601f60248201527f63616e6e6f742073656e6420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6001600160a01b038416600090815260016020526040902054610709908363ffffffff610ebd16565b6001600160a01b03808616600090815260016020526040808220939093559085168152205461073e908363ffffffff610f0616565b6001600160a01b038085166000908152600160209081526040808320949094559187168152600282528281203382529091522054610782908363ffffffff610ebd16565b6001600160a01b0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020611044833981519152929181900390910190a35060019392505050565b601281565b80610832576040805162461bcd60e51b815260206004820152601860248201527f6d757374206275726e206d6f7265207468616e207a65726f0000000000000000604482015290519081900360640190fd5b3360009081526001602052604090205481111561088d576040805162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b604482015290519081900360640190fd5b6003546108a0908263ffffffff610ebd16565b600355336000908152600160205260409020546108c3908263ffffffff610ebd16565b33600081815260016020908152604080832094909455835185815293519193600080516020611044833981519152929081900390910190a350565b3360009081526004602052604090205460ff1661094c5760405162461bcd60e51b815260040180806020018281038252602681526020018061101e6026913960400191505060405180910390fd5b6001600160a01b0382166109a7576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6003546109ba908263ffffffff610f0616565b6003556001600160a01b0382166000908152600160205260409020546109e6908263ffffffff610f0616565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391926000805160206110448339815191529281900390910190a35050565b6001600160a01b031660009081526001602052604090205490565b610a4f610eb9565b6000546001600160a01b03908116911614610ab1576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b33600090815260016020526040812054821115610b65576040805162461bcd60e51b8152602060048201526014602482015273696e73756666696369656e742062616c616e636560601b604482015290519081900360640190fd5b6001600160a01b038316610bc0576040805162461bcd60e51b815260206004820152601b60248201527f63616e6e6f742073656e6420746f207a65726f20616464726573730000000000604482015290519081900360640190fd5b33600090815260016020526040902054610be0908363ffffffff610ebd16565b33600090815260016020526040808220929092556001600160a01b03851681522054610c12908363ffffffff610f0616565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233926000805160206110448339815191529281900390910190a350600192915050565b3360008181526002602090815260408083206001600160a01b038916808552908352818420889055815188815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a3604051638f4ffcb160e01b81523360048201818152602483018790523060448401819052608060648501908152608485018790526001600160a01b038a1694638f4ffcb194938a93928a928a92919060a401848480828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b158015610d4c57600080fd5b505af1158015610d60573d6000803e3d6000fd5b50600198975050505050505050565b60046020526000908152604090205460ff1681565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610db7610eb9565b6000546001600160a01b03908116911614610e19576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610e5e5760405162461bcd60e51b8152600401808060200182810382526026815260200180610ff86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6000610eff83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f60565b9392505050565b600082820183811015610eff576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115610fef5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610fb4578181015183820152602001610f9c565b50505050905090810190601f168015610fe15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737363616c6c696e672061646472657373206973206e6f7420616c6c6f77656420746f206d696e74ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122078e1fc184373da8f1c0c847dc7a2dab41173747f03e8cfe2acf0dd4d8d6fb74e64736f6c63430006060033
Deployed Bytecode Sourcemap
15180:3352:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;15180:3352:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;15371:37:0;;;:::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;15371:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17054:266;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;17054:266:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;15891:114;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;15891:114:0;;;;;;;;;;:::i;:::-;;16316:94;;;:::i;:::-;;;;;;;;;;;;;;;;17664:529;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;17664:529:0;;;;;;;;;;;;;;;;;:::i;15456:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18199:328;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18199:328:0;;:::i;16011:299::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;16011:299:0;;;;;;;;:::i;16416:106::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;16416:106:0;-1:-1:-1;;;;;16416:106:0;;:::i;14622:148::-;;;:::i;13980:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;13980:79:0;;;;;;;;;;;;;;16665:383;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;16665:383:0;;;;;;;;:::i;17326:332::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;17326:332:0;;;;;;;;;;;;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;17326:332:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;17326:332:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;17326:332:0;;-1:-1:-1;17326:332:0;-1:-1:-1;17326:332:0;:::i;15568:46::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;15568:46:0;-1:-1:-1;;;;;15568:46:0;;:::i;16528:131::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;16528:131:0;;;;;;;;;;:::i;14925:244::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;14925:244:0;-1:-1:-1;;;;;14925:244:0;;:::i;15371:37::-;;;;;;;;;;;;;;-1:-1:-1;;;15371:37:0;;;;:::o;17054:266::-;17128:4;-1:-1:-1;;;;;17149:21:0;;17141:64;;;;;-1:-1:-1;;;17141:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17220:10;17212:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;17212:28:0;;;;;;;;;;;;:36;;;17260;;;;;;;17212:28;;17220:10;17260:36;;;;;;;;;;;-1:-1:-1;17310:4:0;17054:266;;;;:::o;15891:114::-;14202:12;:10;:12::i;:::-;14192:6;;-1:-1:-1;;;;;14192:6:0;;;:22;;;14184:67;;;;;-1:-1:-1;;;14184:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15969:22:0;;;::::1;;::::0;;;:13:::1;:22;::::0;;;;:30;;-1:-1:-1;;15969:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;15891:114::o;16316:94::-;16392:12;;16316:94;:::o;17664:529::-;-1:-1:-1;;;;;17782:14:0;;17752:4;17782:14;;;:8;:14;;;;;;17773:23;;;17765:55;;;;;-1:-1:-1;;;17765:55:0;;;;;;;;;;;;-1:-1:-1;;;17765:55:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17844:13:0;;;;;;:7;:13;;;;;;;;17858:10;17844:25;;;;;;;;17835:34;;;17827:68;;;;;-1:-1:-1;;;17827:68:0;;;;;;;;;;;;-1:-1:-1;;;17827:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17910:16:0;;17902:59;;;;;-1:-1:-1;;;17902:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17987:14:0;;;;;;:8;:14;;;;;;:25;;18006:5;17987:25;:18;:25;:::i;:::-;-1:-1:-1;;;;;17970:14:0;;;;;;;:8;:14;;;;;;:42;;;;18034:12;;;;;;;:23;;18051:5;18034:23;:16;:23;:::i;:::-;-1:-1:-1;;;;;18019:12:0;;;;;;;:8;:12;;;;;;;;:38;;;;18094:13;;;;;:7;:13;;;;;18108:10;18094:25;;;;;;;:36;;18124:5;18094:36;:29;:36;:::i;:::-;-1:-1:-1;;;;;18066:13:0;;;;;;;:7;:13;;;;;;;;18080:10;18066:25;;;;;;;;:64;;;;18144:25;;;;;;;;;;;18066:13;;-1:-1:-1;;;;;;;;;;;18144:25:0;;;;;;;;;;-1:-1:-1;18183:4:0;17664:529;;;;;:::o;15456:35::-;15489:2;15456:35;:::o;18199:328::-;18253:11;18245:47;;;;;-1:-1:-1;;;18245:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18326:10;18317:20;;;;:8;:20;;;;;;18307:30;;;18299:62;;;;;-1:-1:-1;;;18299:62:0;;;;;;;;;;;;-1:-1:-1;;;18299:62:0;;;;;;;;;;;;;;;18383:12;;:24;;18400:6;18383:24;:16;:24;:::i;:::-;18368:12;:39;18446:10;18437:20;;;;:8;:20;;;;;;:32;;18462:6;18437:32;:24;:32;:::i;:::-;18423:10;18414:20;;;;:8;:20;;;;;;;;:55;;;;18481:40;;;;;;;18414:20;;-1:-1:-1;;;;;;;;;;;18481:40:0;;;;;;;;;;18199:328;:::o;16011:299::-;15676:10;15662:25;;;;:13;:25;;;;;;;;15654:75;;;;-1:-1:-1;;;15654:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16096:21:0;::::1;16088:65;;;::::0;;-1:-1:-1;;;16088:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;16175:12;::::0;:24:::1;::::0;16192:6;16175:24:::1;:16;:24;:::i;:::-;16160:12;:39:::0;-1:-1:-1;;;;;16226:17:0;::::1;;::::0;;;:8:::1;:17;::::0;;;;;:29:::1;::::0;16248:6;16226:29:::1;:21;:29;:::i;:::-;-1:-1:-1::0;;;;;16206:17:0;::::1;;::::0;;;:8:::1;:17;::::0;;;;;;;:49;;;;16267:37;;;;;;;16206:17;;;;-1:-1:-1;;;;;;;;;;;16267:37:0;;;;;;;;::::1;16011:299:::0;;:::o;16416:106::-;-1:-1:-1;;;;;16502:14:0;16479:7;16502:14;;;:8;:14;;;;;;;16416:106::o;14622:148::-;14202:12;:10;:12::i;:::-;14192:6;;-1:-1:-1;;;;;14192:6:0;;;:22;;;14184:67;;;;;-1:-1:-1;;;14184:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14729:1:::1;14713:6:::0;;14692:40:::1;::::0;-1:-1:-1;;;;;14713:6:0;;::::1;::::0;14692:40:::1;::::0;14729:1;;14692:40:::1;14760:1;14743:19:::0;;-1:-1:-1;;;;;;14743:19:0::1;::::0;;14622:148::o;13980:79::-;14018:7;14045:6;-1:-1:-1;;;;;14045:6:0;13980:79;:::o;16665:383::-;16774:10;16735:4;16765:20;;;:8;:20;;;;;;16756:29;;;16748:61;;;;;-1:-1:-1;;;16748:61:0;;;;;;;;;;;;-1:-1:-1;;;16748:61:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16824:16:0;;16816:55;;;;;-1:-1:-1;;;16816:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16912:10;16903:20;;;;:8;:20;;;;;;:31;;16928:5;16903:31;:24;:31;:::i;:::-;16889:10;16880:20;;;;:8;:20;;;;;;:54;;;;-1:-1:-1;;;;;16956:12:0;;;;;;:23;;16973:5;16956:23;:16;:23;:::i;:::-;-1:-1:-1;;;;;16941:12:0;;;;;;:8;:12;;;;;;;;;:38;;;;16993:31;;;;;;;16941:12;;17002:10;;-1:-1:-1;;;;;;;;;;;16993:31:0;;;;;;;;;-1:-1:-1;17038:4:0;16665:383;;;;:::o;17326:332::-;17447:10;17422:4;17439:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;17439:28:0;;;;;;;;;;;:37;;;17492;;;;;;;17422:4;;17439:28;;17447:10;;17492:37;;;;;;;;17540:88;;-1:-1:-1;;;17540:88:0;;17588:10;17540:88;;;;;;;;;;;;17616:4;17540:88;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17540:47:0;;;;;17588:10;17600:6;;17616:4;17623;;;;17540:88;;;;17623:4;;;;17540:88;1:33:-1;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;17540:88:0;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17540:88:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;17646:4:0;;17326:332;-1:-1:-1;;;;;;;;17326:332:0:o;15568:46::-;;;;;;;;;;;;;;;:::o;16528:131::-;-1:-1:-1;;;;;16631:13:0;;;16608:7;16631:13;;;:7;:13;;;;;;;;:22;;;;;;;;;;;;;16528:131::o;14925:244::-;14202:12;:10;:12::i;:::-;14192:6;;-1:-1:-1;;;;;14192:6:0;;;:22;;;14184:67;;;;;-1:-1:-1;;;14184:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15014:22:0;::::1;15006:73;;;;-1:-1:-1::0;;;15006:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15116:6;::::0;;15095:38:::1;::::0;-1:-1:-1;;;;;15095:38:0;;::::1;::::0;15116:6;::::1;::::0;15095:38:::1;::::0;::::1;15144:6;:17:::0;;-1:-1:-1;;;;;;15144:17:0::1;-1:-1:-1::0;;;;;15144:17:0;;;::::1;::::0;;;::::1;::::0;;14925:244::o;12618:106::-;12706:10;12618:106;:::o;8063:136::-;8121:7;8148:43;8152:1;8155;8148:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;8141:50;8063:136;-1:-1:-1;;;8063:136:0:o;7599:181::-;7657:7;7689:5;;;7713:6;;;;7705:46;;;;;-1:-1:-1;;;7705:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;8502:192;8588:7;8624:12;8616:6;;;;8608:29;;;;-1:-1:-1;;;8608:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;8608:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8660:5:0;;;8502:192::o
Swarm Source
ipfs://78e1fc184373da8f1c0c847dc7a2dab41173747f03e8cfe2acf0dd4d8d6fb74e
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)