Overview
Max Total Supply
6,122.893526132582189945 SHAKE
Holders
985 (0.00%)
Transfers
-
0
Market
Price
$6.89 @ 0.003074 ETH
Onchain Market Cap
-
Circulating Supply Market Cap
$5,225.98
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
ShakeERC20
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-09-24
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
/**
* @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;
}
}
/**
* @title Roles
* @dev Library for managing addresses assigned to a Role.
*/
library Roles {
struct Role {
mapping (address => bool) bearer;
}
/**
* @dev give an account access to this role
*/
function add(Role storage role, address account) internal {
require(account != address(0));
require(!has(role, account));
role.bearer[account] = true;
}
/**
* @dev remove an account's access to this role
*/
function remove(Role storage role, address account) internal {
require(account != address(0));
require(has(role, account));
role.bearer[account] = false;
}
/**
* @dev check if an account has this role
* @return bool
*/
function has(Role storage role, address account) internal view returns (bool) {
require(account != address(0));
return role.bearer[account];
}
}
contract MinterRole {
using Roles for Roles.Role;
event MinterAdded(address indexed account);
event MinterRemoved(address indexed account);
Roles.Role private _minters;
constructor(address sender) public {
if (!isMinter(sender)) {
_addMinter(sender);
}
}
modifier onlyMinter() {
require(isMinter(msg.sender), "MinterRole: caller does not have the Minter role");
_;
}
function isMinter(address account) public view returns (bool) {
return _minters.has(account);
}
function addMinter(address account) public onlyMinter {
_addMinter(account);
}
function renounceMinter() public {
_removeMinter(msg.sender);
}
function _addMinter(address account) internal {
_minters.add(account);
emit MinterAdded(account);
}
function _removeMinter(address account) internal {
_minters.remove(account);
emit MinterRemoved(account);
}
}
/**
* @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);
}
/**
* @title Standard ERC20 token
*
* @dev Implementation of the basic standard token.
* https://eips.ethereum.org/EIPS/eip-20
* Originally based on code by FirstBlood:
* https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*
* This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
* all accounts just by listening to said events. Note that this isn't required by the specification, and other
* compliant implementations may not do it.
*/
contract ERC20 is IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for {name} and {symbol}, initializes {decimals} with
* a default value of 18.
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name, string memory symbol) public {
_name = name;
_symbol = symbol;
_decimals = 18;
}
/**
* @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. This is the value {ERC20} uses, unless {_setupDecimals} is
* called.
*
* NOTE: 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;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view override 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 virtual override returns (bool) {
_transfer(msg.sender, recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(msg.sender, spender, amount);
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 `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance"));
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 virtual 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 virtual returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
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 virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_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 virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `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 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This 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 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}
/**
* @title Standard ERC20 token, with minting and burn functionality.
*
*/
contract ShakeERC20 is ERC20, MinterRole {
uint256 public immutable MAX_TOTAL_SUPPLY;
uint256 public totalMinted = 0;
uint256 public totalBurned = 0;
constructor(
//string memory name, string memory symbol
) public
ERC20('SHAKE token by SpaceSwap v2', 'SHAKE')
MinterRole(address(msg.sender))
{
MAX_TOTAL_SUPPLY = 10000*10**18; //10 000 SHAKE
}
/**
* @dev Function to mint tokens
* @param to The address that will receive the minted tokens.
* @param value The amount of tokens to mint.
* @return A boolean that indicates if the operation was successful.
*/
function mint(address to, uint256 value) public onlyMinter returns (bool) {
require(totalSupply().add(value) <= MAX_TOTAL_SUPPLY, "Can`t mint more than MAX_TOTAL_SUPPLY");
_mint(to, value);
totalMinted = totalMinted.add(value);
return true;
}
/**
* @dev Function to burn tokens
* @param to The address that tokens will burn.
* @param value The amount of tokens to burn.
* @return A boolean that indicates if the operation was successful.
*/
function burn(address to, uint256 value) public onlyMinter returns (bool) {
_burn(to, value);
totalBurned = totalBurned.add(value);
return true;
}
/**
* @dev Minter can claim any tokens that transfered to this contract address
*/
function reclaimToken(ERC20 token) external onlyMinter {
require(address(token) != address(0));
uint256 balance = token.balanceOf(address(this));
token.transfer(msg.sender, balance);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
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":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"token","type":"address"}],"name":"reclaimToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60a0604052600060075560006008553480156200001b57600080fd5b50604080518082018252601b81527f5348414b4520746f6b656e2062792053706163655377617020763200000000006020808301918252835180850190945260058452645348414b4560d81b9084015281513393916200007f9160039190620001d0565b50805162000095906004906020840190620001d0565b50506005805460ff1916601217905550620000b081620000d5565b620000c057620000c081620000f8565b5069021e19e0c9bab24000006080526200026c565b6000620000f28260066200014a60201b620009ba1790919060201c565b92915050565b620001138160066200018060201b620009ef1790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60006001600160a01b0382166200016057600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b0381166200019457600080fd5b620001a082826200014a565b15620001ab57600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200021357805160ff191683800117855562000243565b8280016001018555821562000243579182015b828111156200024357825182559160200191906001019062000226565b506200025192915062000255565b5090565b5b8082111562000251576000815560010162000256565b6080516112486200028c600039806106a3528061074352506112486000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063a457c2d711610071578063a457c2d714610374578063a9059cbb146103a0578063aa271e1a146103cc578063d89135cd146103f2578063dd62ed3e146103fa5761012c565b806395d89b411461030a578063983b2d561461031257806398650275146103385780639dc29fac14610340578063a2309ff81461036c5761012c565b8063313ce567116100f4578063313ce5671461026657806333039d3d14610284578063395093511461028c57806340c10f19146102b857806370a08231146102e45761012c565b806306fdde0314610131578063095ea7b3146101ae57806317ffc320146101ee57806318160ddd1461021657806323b872dd14610230575b600080fd5b610139610428565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101da600480360360408110156101c457600080fd5b506001600160a01b0381351690602001356104be565b604080519115158252519081900360200190f35b6102146004803603602081101561020457600080fd5b50356001600160a01b03166104d4565b005b61021e610629565b60408051918252519081900360200190f35b6101da6004803603606081101561024657600080fd5b506001600160a01b0381358116916020810135909116906040013561062f565b61026e610698565b6040805160ff9092168252519081900360200190f35b61021e6106a1565b6101da600480360360408110156102a257600080fd5b506001600160a01b0381351690602001356106c5565b6101da600480360360408110156102ce57600080fd5b506001600160a01b0381351690602001356106fb565b61021e600480360360208110156102fa57600080fd5b50356001600160a01b03166107d4565b6101396107ef565b6102146004803603602081101561032857600080fd5b50356001600160a01b0316610850565b6102146108a0565b6101da6004803603604081101561035657600080fd5b506001600160a01b0381351690602001356108ab565b61021e610914565b6101da6004803603604081101561038a57600080fd5b506001600160a01b03813516906020013561091a565b6101da600480360360408110156103b657600080fd5b506001600160a01b038135169060200135610969565b6101da600480360360208110156103e257600080fd5b50356001600160a01b0316610976565b61021e610989565b61021e6004803603604081101561041057600080fd5b506001600160a01b038135811691602001351661098f565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104b45780601f10610489576101008083540402835291602001916104b4565b820191906000526020600020905b81548152906001019060200180831161049757829003601f168201915b5050505050905090565b60006104cb338484610a3b565b50600192915050565b6104dd33610976565b6105185760405162461bcd60e51b815260040180806020018281038252603081526020018061112c6030913960400191505060405180910390fd5b6001600160a01b03811661052b57600080fd5b6000816001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561057a57600080fd5b505afa15801561058e573d6000803e3d6000fd5b505050506040513d60208110156105a457600080fd5b50516040805163a9059cbb60e01b81523360048201526024810183905290519192506001600160a01b0384169163a9059cbb916044808201926020929091908290030181600087803b1580156105f957600080fd5b505af115801561060d573d6000803e3d6000fd5b505050506040513d602081101561062357600080fd5b50505050565b60025490565b600061063c848484610b27565b61068e84336106898560405180606001604052806028815260200161115c602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610c82565b610a3b565b5060019392505050565b60055460ff1690565b7f000000000000000000000000000000000000000000000000000000000000000081565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104cb9185906106899086610d19565b600061070633610976565b6107415760405162461bcd60e51b815260040180806020018281038252603081526020018061112c6030913960400191505060405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006107748361076e610629565b90610d19565b11156107b15760405162461bcd60e51b81526004018080602001828103825260258152602001806110e16025913960400191505060405180910390fd5b6107bb8383610d7a565b6007546107c89083610d19565b60075550600192915050565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104b45780601f10610489576101008083540402835291602001916104b4565b61085933610976565b6108945760405162461bcd60e51b815260040180806020018281038252603081526020018061112c6030913960400191505060405180910390fd5b61089d81610e6a565b50565b6108a933610eac565b565b60006108b633610976565b6108f15760405162461bcd60e51b815260040180806020018281038252603081526020018061112c6030913960400191505060405180910390fd5b6108fb8383610eee565b6008546109089083610d19565b60085550600192915050565b60075481565b60006104cb3384610689856040518060600160405280602581526020016111ee602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610c82565b60006104cb338484610b27565b60006109836006836109ba565b92915050565b60085481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006001600160a01b0382166109cf57600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b038116610a0257600080fd5b610a0c82826109ba565b15610a1657600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b038316610a805760405162461bcd60e51b81526004018080602001828103825260248152602001806111ca6024913960400191505060405180910390fd5b6001600160a01b038216610ac55760405162461bcd60e51b81526004018080602001828103825260228152602001806110bf6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b6c5760405162461bcd60e51b81526004018080602001828103825260258152602001806111a56025913960400191505060405180910390fd5b6001600160a01b038216610bb15760405162461bcd60e51b815260040180806020018281038252602381526020018061107a6023913960400191505060405180910390fd5b610bbc838383610fea565b610bf981604051806060016040528060268152602001611106602691396001600160a01b0386166000908152602081905260409020549190610c82565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610c289082610d19565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610d115760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610cd6578181015183820152602001610cbe565b50505050905090810190601f168015610d035780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610d73576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610dd5576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610de160008383610fea565b600254610dee9082610d19565b6002556001600160a01b038216600090815260208190526040902054610e149082610d19565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610e756006826109ef565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610eb7600682610fef565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6001600160a01b038216610f335760405162461bcd60e51b81526004018080602001828103825260218152602001806111846021913960400191505060405180910390fd5b610f3f82600083610fea565b610f7c8160405180606001604052806022815260200161109d602291396001600160a01b0385166000908152602081905260409020549190610c82565b6001600160a01b038316600090815260208190526040902055600254610fa29082611037565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b505050565b6001600160a01b03811661100257600080fd5b61100c82826109ba565b61101557600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000610d7383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c8256fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737343616e6074206d696e74206d6f7265207468616e204d41585f544f54414c5f535550504c5945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f96a8a6726e24856948a2bdfc011e024a9dd3f75f36569fe506fbf42da29b90864736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063a457c2d711610071578063a457c2d714610374578063a9059cbb146103a0578063aa271e1a146103cc578063d89135cd146103f2578063dd62ed3e146103fa5761012c565b806395d89b411461030a578063983b2d561461031257806398650275146103385780639dc29fac14610340578063a2309ff81461036c5761012c565b8063313ce567116100f4578063313ce5671461026657806333039d3d14610284578063395093511461028c57806340c10f19146102b857806370a08231146102e45761012c565b806306fdde0314610131578063095ea7b3146101ae57806317ffc320146101ee57806318160ddd1461021657806323b872dd14610230575b600080fd5b610139610428565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101da600480360360408110156101c457600080fd5b506001600160a01b0381351690602001356104be565b604080519115158252519081900360200190f35b6102146004803603602081101561020457600080fd5b50356001600160a01b03166104d4565b005b61021e610629565b60408051918252519081900360200190f35b6101da6004803603606081101561024657600080fd5b506001600160a01b0381358116916020810135909116906040013561062f565b61026e610698565b6040805160ff9092168252519081900360200190f35b61021e6106a1565b6101da600480360360408110156102a257600080fd5b506001600160a01b0381351690602001356106c5565b6101da600480360360408110156102ce57600080fd5b506001600160a01b0381351690602001356106fb565b61021e600480360360208110156102fa57600080fd5b50356001600160a01b03166107d4565b6101396107ef565b6102146004803603602081101561032857600080fd5b50356001600160a01b0316610850565b6102146108a0565b6101da6004803603604081101561035657600080fd5b506001600160a01b0381351690602001356108ab565b61021e610914565b6101da6004803603604081101561038a57600080fd5b506001600160a01b03813516906020013561091a565b6101da600480360360408110156103b657600080fd5b506001600160a01b038135169060200135610969565b6101da600480360360208110156103e257600080fd5b50356001600160a01b0316610976565b61021e610989565b61021e6004803603604081101561041057600080fd5b506001600160a01b038135811691602001351661098f565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104b45780601f10610489576101008083540402835291602001916104b4565b820191906000526020600020905b81548152906001019060200180831161049757829003601f168201915b5050505050905090565b60006104cb338484610a3b565b50600192915050565b6104dd33610976565b6105185760405162461bcd60e51b815260040180806020018281038252603081526020018061112c6030913960400191505060405180910390fd5b6001600160a01b03811661052b57600080fd5b6000816001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561057a57600080fd5b505afa15801561058e573d6000803e3d6000fd5b505050506040513d60208110156105a457600080fd5b50516040805163a9059cbb60e01b81523360048201526024810183905290519192506001600160a01b0384169163a9059cbb916044808201926020929091908290030181600087803b1580156105f957600080fd5b505af115801561060d573d6000803e3d6000fd5b505050506040513d602081101561062357600080fd5b50505050565b60025490565b600061063c848484610b27565b61068e84336106898560405180606001604052806028815260200161115c602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610c82565b610a3b565b5060019392505050565b60055460ff1690565b7f00000000000000000000000000000000000000000000021e19e0c9bab240000081565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104cb9185906106899086610d19565b600061070633610976565b6107415760405162461bcd60e51b815260040180806020018281038252603081526020018061112c6030913960400191505060405180910390fd5b7f00000000000000000000000000000000000000000000021e19e0c9bab24000006107748361076e610629565b90610d19565b11156107b15760405162461bcd60e51b81526004018080602001828103825260258152602001806110e16025913960400191505060405180910390fd5b6107bb8383610d7a565b6007546107c89083610d19565b60075550600192915050565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104b45780601f10610489576101008083540402835291602001916104b4565b61085933610976565b6108945760405162461bcd60e51b815260040180806020018281038252603081526020018061112c6030913960400191505060405180910390fd5b61089d81610e6a565b50565b6108a933610eac565b565b60006108b633610976565b6108f15760405162461bcd60e51b815260040180806020018281038252603081526020018061112c6030913960400191505060405180910390fd5b6108fb8383610eee565b6008546109089083610d19565b60085550600192915050565b60075481565b60006104cb3384610689856040518060600160405280602581526020016111ee602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610c82565b60006104cb338484610b27565b60006109836006836109ba565b92915050565b60085481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006001600160a01b0382166109cf57600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b038116610a0257600080fd5b610a0c82826109ba565b15610a1657600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b038316610a805760405162461bcd60e51b81526004018080602001828103825260248152602001806111ca6024913960400191505060405180910390fd5b6001600160a01b038216610ac55760405162461bcd60e51b81526004018080602001828103825260228152602001806110bf6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b6c5760405162461bcd60e51b81526004018080602001828103825260258152602001806111a56025913960400191505060405180910390fd5b6001600160a01b038216610bb15760405162461bcd60e51b815260040180806020018281038252602381526020018061107a6023913960400191505060405180910390fd5b610bbc838383610fea565b610bf981604051806060016040528060268152602001611106602691396001600160a01b0386166000908152602081905260409020549190610c82565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610c289082610d19565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610d115760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610cd6578181015183820152602001610cbe565b50505050905090810190601f168015610d035780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610d73576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610dd5576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610de160008383610fea565b600254610dee9082610d19565b6002556001600160a01b038216600090815260208190526040902054610e149082610d19565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610e756006826109ef565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610eb7600682610fef565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6001600160a01b038216610f335760405162461bcd60e51b81526004018080602001828103825260218152602001806111846021913960400191505060405180910390fd5b610f3f82600083610fea565b610f7c8160405180606001604052806022815260200161109d602291396001600160a01b0385166000908152602081905260409020549190610c82565b6001600160a01b038316600090815260208190526040902055600254610fa29082611037565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b505050565b6001600160a01b03811661100257600080fd5b61100c82826109ba565b61101557600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000610d7383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c8256fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737343616e6074206d696e74206d6f7265207468616e204d41585f544f54414c5f535550504c5945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f96a8a6726e24856948a2bdfc011e024a9dd3f75f36569fe506fbf42da29b90864736f6c634300060c0033
Deployed Bytecode Sourcemap
19987:1710:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11508:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13612:167;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13612:167:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;21478:216;;;;;;;;;;;;;;;;-1:-1:-1;21478:216:0;-1:-1:-1;;;;;21478:216:0;;:::i;:::-;;12583:100;;;:::i;:::-;;;;;;;;;;;;;;;;14261:317;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14261:317:0;;;;;;;;;;;;;;;;;:::i;12435:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20036:41;;;:::i;14987:214::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14987:214:0;;;;;;;;:::i;20661:283::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20661:283:0;;;;;;;;:::i;12746:119::-;;;;;;;;;;;;;;;;-1:-1:-1;12746:119:0;-1:-1:-1;;;;;12746:119:0;;:::i;11710:87::-;;;:::i;6919:92::-;;;;;;;;;;;;;;;;-1:-1:-1;6919:92:0;-1:-1:-1;;;;;6919:92:0;;:::i;7019:77::-;;;:::i;21186:178::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21186:178:0;;;;;;;;:::i;20086:30::-;;;:::i;15704:265::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15704:265:0;;;;;;;;:::i;13078:173::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13078:173:0;;;;;;;;:::i;6802:109::-;;;;;;;;;;;;;;;;-1:-1:-1;6802:109:0;-1:-1:-1;;;;;6802:109:0;;:::i;20123:30::-;;;:::i;13314:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13314:151:0;;;;;;;;;;:::i;11508:83::-;11578:5;11571:12;;;;;;;;-1:-1:-1;;11571:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11545:13;;11571:12;;11578:5;;11571:12;;11578:5;11571:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11508:83;:::o;13612:167::-;13695:4;13712:37;13721:10;13733:7;13742:6;13712:8;:37::i;:::-;-1:-1:-1;13767:4:0;13612:167;;;;:::o;21478:216::-;6701:20;6710:10;6701:8;:20::i;:::-;6693:81;;;;-1:-1:-1;;;6693:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21552:28:0;::::1;21544:37;;;::::0;::::1;;21592:15;21610:5;-1:-1:-1::0;;;;;21610:15:0::1;;21634:4;21610:30;;;;;;;;;;;;;-1:-1:-1::0;;;;;21610:30:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;21610:30:0;21651:35:::1;::::0;;-1:-1:-1;;;21651:35:0;;21666:10:::1;21651:35;::::0;::::1;::::0;;;;;;;;;21610:30;;-1:-1:-1;;;;;;21651:14:0;::::1;::::0;::::1;::::0;:35;;;;;21610:30:::1;::::0;21651:35;;;;;;;;-1:-1:-1;21651:14:0;:35;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;;;21478:216:0:o;12583:100::-;12663:12;;12583:100;:::o;14261:317::-;14367:4;14384:36;14394:6;14402:9;14413:6;14384:9;:36::i;:::-;14431:117;14440:6;14448:10;14460:87;14496:6;14460:87;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14460:19:0;;;;;;:11;:19;;;;;;;;14480:10;14460:31;;;;;;;;;:87;:35;:87::i;:::-;14431:8;:117::i;:::-;-1:-1:-1;14566:4:0;14261:317;;;;;:::o;12435:83::-;12501:9;;;;12435:83;:::o;20036:41::-;;;:::o;14987:214::-;15101:10;15075:4;15122:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;15122:32:0;;;;;;;;;;15075:4;;15092:79;;15113:7;;15122:48;;15159:10;15122:36;:48::i;20661:283::-;20729:4;6701:20;6710:10;6701:8;:20::i;:::-;6693:81;;;;-1:-1:-1;;;6693:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20782:16:::1;20754:24;20772:5;20754:13;:11;:13::i;:::-;:17:::0;::::1;:24::i;:::-;:44;;20746:94;;;;-1:-1:-1::0;;;20746:94:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20851:16;20857:2;20861:5;20851;:16::i;:::-;20892:11;::::0;:22:::1;::::0;20908:5;20892:15:::1;:22::i;:::-;20878:11;:36:::0;-1:-1:-1;20932:4:0::1;20661:283:::0;;;;:::o;12746:119::-;-1:-1:-1;;;;;12839:18:0;12812:7;12839:18;;;;;;;;;;;;12746:119::o;11710:87::-;11782:7;11775:14;;;;;;;;-1:-1:-1;;11775:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11749:13;;11775:14;;11782:7;;11775:14;;11782:7;11775:14;;;;;;;;;;;;;;;;;;;;;;;;6919:92;6701:20;6710:10;6701:8;:20::i;:::-;6693:81;;;;-1:-1:-1;;;6693:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6984:19:::1;6995:7;6984:10;:19::i;:::-;6919:92:::0;:::o;7019:77::-;7063:25;7077:10;7063:13;:25::i;:::-;7019:77::o;21186:178::-;21254:4;6701:20;6710:10;6701:8;:20::i;:::-;6693:81;;;;-1:-1:-1;;;6693:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21271:16:::1;21277:2;21281:5;21271;:16::i;:::-;21312:11;::::0;:22:::1;::::0;21328:5;21312:15:::1;:22::i;:::-;21298:11;:36:::0;-1:-1:-1;21352:4:0::1;21186:178:::0;;;;:::o;20086:30::-;;;;:::o;15704:265::-;15797:4;15814:125;15823:10;15835:7;15844:94;15881:15;15844:94;;;;;;;;;;;;;;;;;15856:10;15844:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;15844:32:0;;;;;;;;;;;:94;:36;:94::i;13078:173::-;13164:4;13181:40;13191:10;13203:9;13214:6;13181:9;:40::i;6802:109::-;6858:4;6882:21;:8;6895:7;6882:12;:21::i;:::-;6875:28;6802:109;-1:-1:-1;;6802:109:0:o;20123:30::-;;;;:::o;13314:151::-;-1:-1:-1;;;;;13430:18:0;;;13403:7;13430:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13314:151::o;6157:165::-;6229:4;-1:-1:-1;;;;;6254:21:0;;6246:30;;;;;;-1:-1:-1;;;;;;6294:20:0;:11;:20;;;;;;;;;;;;;;;6157:165::o;5609:186::-;-1:-1:-1;;;;;5686:21:0;;5678:30;;;;;;5728:18;5732:4;5738:7;5728:3;:18::i;:::-;5727:19;5719:28;;;;;;-1:-1:-1;;;;;5760:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;5760:27:0;5783:4;5760:27;;;5609:186::o;18847:346::-;-1:-1:-1;;;;;18949:19:0;;18941:68;;;;-1:-1:-1;;;18941:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19028:21:0;;19020:68;;;;-1:-1:-1;;;19020:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19101:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19153:32;;;;;;;;;;;;;;;;;18847:346;;;:::o;16459:539::-;-1:-1:-1;;;;;16565:20:0;;16557:70;;;;-1:-1:-1;;;16557:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16646:23:0;;16638:71;;;;-1:-1:-1;;;16638:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16722:47;16743:6;16751:9;16762:6;16722:20;:47::i;:::-;16802:71;16824:6;16802:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16802:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;16782:17:0;;;:9;:17;;;;;;;;;;;:91;;;;16907:20;;;;;;;:32;;16932:6;16907:24;:32::i;:::-;-1:-1:-1;;;;;16884:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;16955:35;;;;;;;16884:20;;16955:35;;;;;;;;;;;;;16459:539;;;:::o;1806:192::-;1892:7;1928:12;1920:6;;;;1912:29;;;;-1:-1:-1;;;1912:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1964:5:0;;;1806:192::o;903:181::-;961:7;993:5;;;1017:6;;;;1009:46;;;;;-1:-1:-1;;;1009:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1075:1;903:181;-1:-1:-1;;;903:181:0:o;17280:378::-;-1:-1:-1;;;;;17364:21:0;;17356:65;;;;;-1:-1:-1;;;17356:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17434:49;17463:1;17467:7;17476:6;17434:20;:49::i;:::-;17511:12;;:24;;17528:6;17511:16;:24::i;:::-;17496:12;:39;-1:-1:-1;;;;;17567:18:0;;:9;:18;;;;;;;;;;;:30;;17590:6;17567:22;:30::i;:::-;-1:-1:-1;;;;;17546:18:0;;:9;:18;;;;;;;;;;;:51;;;;17613:37;;;;;;;17546:18;;:9;;17613:37;;;;;;;;;;17280:378;;:::o;7104:122::-;7161:21;:8;7174:7;7161:12;:21::i;:::-;7198:20;;-1:-1:-1;;;;;7198:20:0;;;;;;;;7104:122;:::o;7234:130::-;7294:24;:8;7310:7;7294:15;:24::i;:::-;7334:22;;-1:-1:-1;;;;;7334:22:0;;;;;;;;7234:130;:::o;17991:418::-;-1:-1:-1;;;;;18075:21:0;;18067:67;;;;-1:-1:-1;;;18067:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18147:49;18168:7;18185:1;18189:6;18147:20;:49::i;:::-;18230:68;18253:6;18230:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18230:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;18209:18:0;;:9;:18;;;;;;;;;;:89;18324:12;;:24;;18341:6;18324:16;:24::i;:::-;18309:12;:39;18364:37;;;;;;;;18390:1;;-1:-1:-1;;;;;18364:37:0;;;;;;;;;;;;17991:418;;:::o;19802:92::-;;;;:::o;5874:189::-;-1:-1:-1;;;;;5954:21:0;;5946:30;;;;;;5995:18;5999:4;6005:7;5995:3;:18::i;:::-;5987:27;;;;;;-1:-1:-1;;;;;6027:20:0;6050:5;6027:20;;;;;;;;;;;:28;;-1:-1:-1;;6027:28:0;;;5874:189::o;1367:136::-;1425:7;1452:43;1456:1;1459;1452:43;;;;;;;;;;;;;;;;;:3;:43::i
Swarm Source
ipfs://f96a8a6726e24856948a2bdfc011e024a9dd3f75f36569fe506fbf42da29b908
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)