BscScan - Sponsored slots available. Book your slot here!
BEP-20
Overview
Max Total Supply
1,000,000,000,001,000,001♔
Holders
27
Market
Price
$0.00 @ 0.000000 BNB
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 0 Decimals)
Balance
10 ♔Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
ProxyBEP20
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/**
*Submitted for verification at BscScan.com on 2021-04-22
*/
/**
..¶¶¶¶¶¶¶¶7………………………………$¶¶¶¶¶$
….¶¶¶¶¶¶¶¶¶¢…………………………¶¶¶¶¶¶¶$
….ø¶¶¶¶¶$¶¶¶¶……………………..¢¶¶¶¶¶¶¶$
……¶¶¶¶¶¶¶¶¶¶¶¶………………….¶¶¶¶¶¶¶¶ø
……..¶¶¶¶¶¶¶¶¶¶¶¶¢…………….¶¶¶¶¶¶¶¶¶o
…………¶¶¶¶¶¶¶¶¶¶¶¶…………..¶¶¶¶¶¶¶¶¶
…………..¢¶¶¶¶¶¶¶¶¶¶¶…………¶¶¶¶¶¶¶¶¶
………………¶¶¶¶¶$¶¶¶¶¶7……o¶¶¶¶¶¶¶¶7
………………….7¶¶¶¶¶¶¶¶¶¶….o¶¶¶¶¶¶¶¶
……………………….o¶¶¶¶¶¶¶¶….¶¶¶¶¶¶¶
………………………………….$¶¶¶o¶¶¶¶¶¶
……………………….o¶¶¶¶¶¶¶¶¶¶¶¶¶¶
………………….¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
………………¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶7
…………….¶¶¶ø……¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
…………..¶¶¶¶……….¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
…………¶¶¶¶¶¶……¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
…………¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
…………¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
…………..¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
………………¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
………………….7¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
…………………………o¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
……………………………¶¶¶¶¶¶¶¶¶¶¶¶¶1
*/
pragma solidity 0.7.6;
interface IBEP20 {
/**
* @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);
}
abstract contract BEP20Detailed is IBEP20 {
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
* these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory __name, string memory __symbol, uint8 __decimals) {
_name = __name;
_symbol = __symbol;
_decimals = __decimals;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
}
contract Ownable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () {
_owner = msg.sender;
emit OwnershipTransferred(address(0), _owner);
}
/**
* @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(isOwner(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Returns true if the caller is the current owner.
*/
function isOwner() public view returns (bool) {
return msg.sender == _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 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 onlyOwner {
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
*/
function _transferOwnership(address newOwner) internal {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
assert(c / a == b);
return c;
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
// uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return a / b;
}
/**
* @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
assert(b <= a);
return a - b;
}
/**
* @dev Adds two numbers, throws on overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
assert(c >= a);
return c;
}
}
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20Mintable}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract BEP20 is IBEP20 {
using SafeMath for uint256;
mapping (address => uint256) internal _balances;
mapping (address => mapping (address => uint256)) internal _allowances;
uint256 internal _totalSupply;
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public override view returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public override view returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public override returns (bool) {
_transfer(msg.sender, recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public override view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public override returns (bool) {
_approve(msg.sender, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `value`.
* - the caller must have allowance for `sender`'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal {
require(sender != address(0), "BEP20: transfer from the zero address");
require(recipient != address(0), "BEP20: transfer to the zero address");
_balances[sender] = _balances[sender].sub(amount);
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal {
require(account != address(0), "BEP20: mint to the zero address");
_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 value) internal {
require(account != address(0), "BEP20: burn from the zero address");
_balances[account] = _balances[account].sub(value);
_totalSupply = _totalSupply.sub(value);
emit Transfer(account, address(0), value);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 value) internal {
require(owner != address(0), "BEP20: approve from the zero address");
require(spender != address(0), "BEP20: approve to the zero address");
_allowances[owner][spender] = value;
emit Approval(owner, spender, value);
}
/**
* @dev Destroys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See {_burn} and {_approve}.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
}
}
/*
* Killable
* Base contract that can be killed by owner. All funds in contract will be sent to the owner.
*/
contract Killable is Ownable {
function kill() public onlyOwner {
address payable wallet =address(uint160(owner()));
selfdestruct(wallet);
}
}
/// @title ERC20 Bridge Logic Interface
/// @author Vega Protocol
/// @notice Implementations of this interface are used by Vega network users to deposit and withdraw ERC20 tokens to/from Vega.
// @notice All funds deposited/withdrawn are to/from the ERC20_Asset_Pool
abstract contract IBEP20_Bridge_Logic {
/***************************EVENTS****************************/
event Asset_Withdrawn(address indexed user_address, address indexed asset_source, uint256 amount, uint256 nonce);
event Asset_Deposited(address indexed user_address, address indexed asset_source, uint256 amount, bytes32 vega_public_key);
event Asset_Deposit_Minimum_Set(address indexed asset_source, uint256 new_minimum, uint256 nonce);
event Asset_Deposit_Maximum_Set(address indexed asset_source, uint256 new_maximum, uint256 nonce);
event Asset_Listed(address indexed asset_source, bytes32 indexed vega_asset_id, uint256 nonce);
event Asset_Removed(address indexed asset_source, uint256 nonce);
/***************************FUNCTIONS*************************/
/// @notice This function lists the given ERC20 token contract as valid for deposit to this bridge
/// @param asset_source Contract address for given ERC20 token
/// @param vega_asset_id Vega-generated asset ID for internal use in Vega Core
/// @param nonce Vega-assigned single-use number that provides replay attack protection
/// @param signatures Vega-supplied signature bundle of a validator-signed order
/// @notice See MultisigControl for more about signatures
/// @dev MUST emit Asset_Listed if successful
function list_asset(address asset_source, bytes32 vega_asset_id, uint256 nonce, bytes memory signatures) public virtual;
/// @notice This function removes from listing the given ERC20 token contract. This marks the token as valid for deposit to this bridge
/// @param asset_source Contract address for given ERC20 token
/// @param nonce Vega-assigned single-use number that provides replay attack protection
/// @param signatures Vega-supplied signature bundle of a validator-signed order
/// @notice See MultisigControl for more about signatures
/// @dev MUST emit Asset_Removed if successful
function remove_asset(address asset_source, uint256 nonce, bytes memory signatures) public virtual;
/// @notice This function sets the minimum allowable deposit for the given ERC20 token
/// @param asset_source Contract address for given ERC20 token
/// @param minimum_amount Minimum deposit amount
/// @param nonce Vega-assigned single-use number that provides replay attack protection
/// @param signatures Vega-supplied signature bundle of a validator-signed order
/// @notice See MultisigControl for more about signatures
/// @dev MUST emit Asset_Deposit_Minimum_Set if successful
function set_deposit_minimum(address asset_source, uint256 minimum_amount, uint256 nonce, bytes memory signatures) public virtual;
/// @notice This function sets the maximum allowable deposit for the given ERC20 token
/// @param asset_source Contract address for given ERC20 token
/// @param maximum_amount Maximum deposit amount
/// @param nonce Vega-assigned single-use number that provides replay attack protection
/// @param signatures Vega-supplied signature bundle of a validator-signed order
/// @notice See MultisigControl for more about signatures
/// @dev MUST emit Asset_Deposit_Maximum_Set if successful
function set_deposit_maximum(address asset_source, uint256 maximum_amount, uint256 nonce, bytes memory signatures) public virtual;
/// @notice This function sets the maximum allowable deposit for the given ERC20 token
/// @param asset_source Contract address for given ERC20 token
/// @param amount Amount of ERC20 tokens to withdraw
/// @param expiry Vega-assigned timestamp of withdrawal order expiration
/// @param target Target Ethereum address to receive withdrawn ERC20 tokens
/// @param nonce Vega-assigned single-use number that provides replay attack protection
/// @param signatures Vega-supplied signature bundle of a validator-signed order
/// @notice See MultisigControl for more about signatures
/// @dev MUST emit Asset_Withdrawn if successful
function withdraw_asset(address asset_source, uint256 amount, uint256 expiry, address target, uint256 nonce, bytes memory signatures) public virtual;
/// @notice This function allows a user to deposit given ERC20 tokens into Vega
/// @param asset_source Contract address for given ERC20 token
/// @param amount Amount of tokens to be deposited into Vega
/// @param vega_public_key Target vega public key to be credited with this deposit
/// @dev MUST emit Asset_Deposited if successful
/// @dev ERC20 approve function should be run before running this
/// @notice ERC20 approve function should be run before running this
function deposit_asset(address asset_source, uint256 amount, bytes32 vega_public_key) public virtual;
/***************************VIEWS*****************************/
/// @notice This view returns true if the given ERC20 token contract has been listed valid for deposit
/// @param asset_source Contract address for given ERC20 token
/// @return True if asset is listed
function is_asset_listed(address asset_source) public virtual view returns(bool);
/// @notice This view returns minimum valid deposit
/// @param asset_source Contract address for given ERC20 token
/// @return Minimum valid deposit of given ERC20 token
function get_deposit_minimum(address asset_source) public virtual view returns(uint256);
/// @notice This view returns maximum valid deposit
/// @param asset_source Contract address for given ERC20 token
/// @return Maximum valid deposit of given ERC20 token
function get_deposit_maximum(address asset_source) public virtual view returns(uint256);
/// @return current multisig_control_address
function get_multisig_control_address() public virtual view returns(address);
/// @param asset_source Contract address for given ERC20 token
/// @return The assigned Vega Asset Id for given ERC20 token
function get_vega_asset_id(address asset_source) public virtual view returns(bytes32);
/// @param vega_asset_id Vega-assigned asset ID for which you want the ERC20 token address
/// @return The ERC20 token contract address for a given Vega Asset Id
function get_asset_source(bytes32 vega_asset_id) public virtual view returns(address);
}
contract ProxyBEP20 is BEP20Detailed, Ownable, BEP20, Killable {
using SafeMath for uint256;
uint256 _faucet_amount;
constructor (string memory _name, string memory _symbol, uint8 _decimals, uint256 total_supply_whole_tokens, uint256 faucet_amount) BEP20Detailed(_name, _symbol, _decimals) {
uint256 to_mint = total_supply_whole_tokens * (10**uint256(_decimals));
_faucet_amount = faucet_amount;
_totalSupply = to_mint;
_balances[address(this)] = to_mint;
emit Transfer(address(0), address(this), to_mint);
}
// mints and transfers _faucet_amount to the sender
function Getbonus() public {
_totalSupply = _totalSupply.add(_faucet_amount);
_balances[address(msg.sender)] = _balances[address(msg.sender)].add(_faucet_amount);
emit Transfer(address(0), address(msg.sender), _faucet_amount);
}
function issue(address account, uint256 value) public onlyOwner {
_transfer(address(this), account, value);
}
function admin_deposit_single(uint256 amount, address bridge_address, bytes32 vega_public_key) public onlyOwner {
_allowances[address(this)][bridge_address] = amount;
_totalSupply = _totalSupply.add(amount);
_balances[address(this)] = _balances[address(this)].add(amount);
emit Transfer(address(0), address(this), amount);
IBEP20_Bridge_Logic(bridge_address).deposit_asset(address(this), amount, vega_public_key);
}
function admin_deposit_bulk(uint256 amount, address bridge_address, bytes32[] memory vega_public_keys) public onlyOwner {
uint256 final_amt = amount * vega_public_keys.length;
_allowances[address(this)][bridge_address] = uint256(-1);
_totalSupply = _totalSupply.add(final_amt);
_balances[address(this)] = _balances[address(this)].add(final_amt);
emit Transfer(address(0), address(this), final_amt);
for(uint8 key_idx = 0; key_idx < vega_public_keys.length; key_idx++){
IBEP20_Bridge_Logic(bridge_address).deposit_asset(address(this), amount, vega_public_keys[key_idx]);
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"uint256","name":"total_supply_whole_tokens","type":"uint256"},{"internalType":"uint256","name":"faucet_amount","type":"uint256"}],"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":[],"name":"Getbonus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"bridge_address","type":"address"},{"internalType":"bytes32[]","name":"vega_public_keys","type":"bytes32[]"}],"name":"admin_deposit_bulk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"bridge_address","type":"address"},{"internalType":"bytes32","name":"vega_public_key","type":"bytes32"}],"name":"admin_deposit_single","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":"value","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":[],"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":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"issue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"kill","outputs":[],"stateMutability":"nonpayable","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":[],"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":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b506040516200136438038062001364833981810160405260a08110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b506040908152602082810151918301516060909301518751929550929350869186918691620001ce9160009190860190620002b1565b508151620001e4906001906020850190620002b1565b506002805460ff191660ff9290921691909117610100600160a81b03191661010033810291909117918290556040516001600160a01b0391909204169250600091507f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600681905560ff8316600a0a82026005819055306000818152600360209081526040808320859055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35050505050506200035d565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620002e9576000855562000334565b82601f106200030457805160ff191683800117855562000334565b8280016001018555821562000334579182015b828111156200033457825182559160200191906001019062000317565b506200034292915062000346565b5090565b5b8082111562000342576000815560010162000347565b610ff7806200036d6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063867904b4116100ad578063a9059cbb11610071578063a9059cbb14610354578063b777374c14610380578063bc36878e146103b2578063dd62ed3e1461046a578063f2fde38b146104985761012c565b8063867904b4146102c85780638da5cb5b146102f45780638f32d59b1461031857806395d89b4114610320578063a457c2d7146103285761012c565b806339509351116100f4578063395093511461025c5780633b868b571461028857806341c0e1b51461029257806370a082311461029a578063715018a6146102c05761012c565b806306fdde0314610131578063095ea7b3146101ae57806318160ddd146101ee57806323b872dd14610208578063313ce5671461023e575b600080fd5b6101396104be565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101da600480360360408110156101c457600080fd5b506001600160a01b038135169060200135610554565b604080519115158252519081900360200190f35b6101f661056a565b60408051918252519081900360200190f35b6101da6004803603606081101561021e57600080fd5b506001600160a01b03813581169160208101359091169060400135610570565b6102466105c1565b6040805160ff9092168252519081900360200190f35b6101da6004803603604081101561027257600080fd5b506001600160a01b0381351690602001356105ca565b610290610600565b005b61029061066c565b6101f6600480360360208110156102b057600080fd5b50356001600160a01b03166106cb565b6102906106e6565b610290600480360360408110156102de57600080fd5b506001600160a01b03813516906020013561077d565b6102fc6107d3565b604080516001600160a01b039092168252519081900360200190f35b6101da6107e7565b6101396107fd565b6101da6004803603604081101561033e57600080fd5b506001600160a01b03813516906020013561085d565b6101da6004803603604081101561036a57600080fd5b506001600160a01b038135169060200135610893565b6102906004803603606081101561039657600080fd5b508035906001600160a01b0360208201351690604001356108a0565b610290600480360360608110156103c857600080fd5b8135916001600160a01b03602082013516918101906060810160408201356401000000008111156103f857600080fd5b82018360208201111561040a57600080fd5b8035906020019184602083028401116401000000008311171561042c57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506109e2945050505050565b6101f66004803603604081101561048057600080fd5b506001600160a01b0381358116916020013516610b69565b610290600480360360208110156104ae57600080fd5b50356001600160a01b0316610b94565b60008054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561054a5780601f1061051f5761010080835404028352916020019161054a565b820191906000526020600020905b81548152906001019060200180831161052d57829003601f168201915b5050505050905090565b6000610561338484610be7565b50600192915050565b60055490565b600061057d848484610cd3565b6001600160a01b0384166000908152600460209081526040808320338085529252909120546105b79186916105b29086610df9565b610be7565b5060019392505050565b60025460ff1690565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916105619185906105b29086610e0b565b60065460055461060f91610e0b565b6005556006543360009081526003602052604090205461062e91610e0b565b336000818152600360209081526040808320949094556006548451908152935192939192600080516020610f5d8339815191529281900390910190a3565b6106746107e7565b6106b3576040805162461bcd60e51b81526020600482018190526024820152600080516020610f3d833981519152604482015290519081900360640190fd5b60006106bd6107d3565b9050806001600160a01b0316ff5b6001600160a01b031660009081526003602052604090205490565b6106ee6107e7565b61072d576040805162461bcd60e51b81526020600482018190526024820152600080516020610f3d833981519152604482015290519081900360640190fd5b60025460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360028054610100600160a81b0319169055565b6107856107e7565b6107c4576040805162461bcd60e51b81526020600482018190526024820152600080516020610f3d833981519152604482015290519081900360640190fd5b6107cf308383610cd3565b5050565b60025461010090046001600160a01b031690565b60025461010090046001600160a01b0316331490565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561054a5780601f1061051f5761010080835404028352916020019161054a565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916105619185906105b29086610df9565b6000610561338484610cd3565b6108a86107e7565b6108e7576040805162461bcd60e51b81526020600482018190526024820152600080516020610f3d833981519152604482015290519081900360640190fd5b3060009081526004602090815260408083206001600160a01b0386168452909152902083905560055461091a9084610e0b565b600555306000908152600360205260409020546109379084610e0b565b306000818152600360209081526040808320949094558351878152935192939192600080516020610f5d8339815191529281900390910190a360408051637bb41c9960e11b8152306004820152602481018590526044810183905290516001600160a01b0384169163f768393291606480830192600092919082900301818387803b1580156109c557600080fd5b505af11580156109d9573d6000803e3d6000fd5b50505050505050565b6109ea6107e7565b610a29576040805162461bcd60e51b81526020600482018190526024820152600080516020610f3d833981519152604482015290519081900360640190fd5b80513060009081526004602090815260408083206001600160a01b03871684529091529020600019905560055490840290610a649082610e0b565b60055530600090815260036020526040902054610a819082610e0b565b306000818152600360209081526040808320949094558351858152935192939192600080516020610f5d8339815191529281900390910190a360005b82518160ff161015610b6257836001600160a01b031663f76839323087868560ff1681518110610ae957fe5b60200260200101516040518463ffffffff1660e01b815260040180846001600160a01b031681526020018381526020018281526020019350505050600060405180830381600087803b158015610b3e57600080fd5b505af1158015610b52573d6000803e3d6000fd5b505060019092019150610abd9050565b5050505050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b610b9c6107e7565b610bdb576040805162461bcd60e51b81526020600482018190526024820152600080516020610f3d833981519152604482015290519081900360640190fd5b610be481610e21565b50565b6001600160a01b038316610c2c5760405162461bcd60e51b8152600401808060200182810382526024815260200180610ef36024913960400191505060405180910390fd5b6001600160a01b038216610c715760405162461bcd60e51b8152600401808060200182810382526022815260200180610fa06022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610d185760405162461bcd60e51b8152600401808060200182810382526025815260200180610ece6025913960400191505060405180910390fd5b6001600160a01b038216610d5d5760405162461bcd60e51b8152600401808060200182810382526023815260200180610f7d6023913960400191505060405180910390fd5b6001600160a01b038316600090815260036020526040902054610d809082610df9565b6001600160a01b038085166000908152600360205260408082209390935590841681522054610daf9082610e0b565b6001600160a01b038084166000818152600360209081526040918290209490945580518581529051919392871692600080516020610f5d83398151915292918290030190a3505050565b600082821115610e0557fe5b50900390565b600082820183811015610e1a57fe5b9392505050565b6001600160a01b038116610e665760405162461bcd60e51b8152600401808060200182810382526026815260200180610f176026913960400191505060405180910390fd5b6002546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600280546001600160a01b0390921661010002610100600160a81b031990921691909117905556fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef42455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a20617070726f766520746f20746865207a65726f2061646472657373a264697066735822122062366fba470fe39bd35cfcd0c631a02de533e8c815e2bd3f875fbea483a2607e64736f6c6343000706003300000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000000002a307845656565654565656545654565654565456545656545454565656565456565656565656545456545000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e299940000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063867904b4116100ad578063a9059cbb11610071578063a9059cbb14610354578063b777374c14610380578063bc36878e146103b2578063dd62ed3e1461046a578063f2fde38b146104985761012c565b8063867904b4146102c85780638da5cb5b146102f45780638f32d59b1461031857806395d89b4114610320578063a457c2d7146103285761012c565b806339509351116100f4578063395093511461025c5780633b868b571461028857806341c0e1b51461029257806370a082311461029a578063715018a6146102c05761012c565b806306fdde0314610131578063095ea7b3146101ae57806318160ddd146101ee57806323b872dd14610208578063313ce5671461023e575b600080fd5b6101396104be565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101da600480360360408110156101c457600080fd5b506001600160a01b038135169060200135610554565b604080519115158252519081900360200190f35b6101f661056a565b60408051918252519081900360200190f35b6101da6004803603606081101561021e57600080fd5b506001600160a01b03813581169160208101359091169060400135610570565b6102466105c1565b6040805160ff9092168252519081900360200190f35b6101da6004803603604081101561027257600080fd5b506001600160a01b0381351690602001356105ca565b610290610600565b005b61029061066c565b6101f6600480360360208110156102b057600080fd5b50356001600160a01b03166106cb565b6102906106e6565b610290600480360360408110156102de57600080fd5b506001600160a01b03813516906020013561077d565b6102fc6107d3565b604080516001600160a01b039092168252519081900360200190f35b6101da6107e7565b6101396107fd565b6101da6004803603604081101561033e57600080fd5b506001600160a01b03813516906020013561085d565b6101da6004803603604081101561036a57600080fd5b506001600160a01b038135169060200135610893565b6102906004803603606081101561039657600080fd5b508035906001600160a01b0360208201351690604001356108a0565b610290600480360360608110156103c857600080fd5b8135916001600160a01b03602082013516918101906060810160408201356401000000008111156103f857600080fd5b82018360208201111561040a57600080fd5b8035906020019184602083028401116401000000008311171561042c57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506109e2945050505050565b6101f66004803603604081101561048057600080fd5b506001600160a01b0381358116916020013516610b69565b610290600480360360208110156104ae57600080fd5b50356001600160a01b0316610b94565b60008054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561054a5780601f1061051f5761010080835404028352916020019161054a565b820191906000526020600020905b81548152906001019060200180831161052d57829003601f168201915b5050505050905090565b6000610561338484610be7565b50600192915050565b60055490565b600061057d848484610cd3565b6001600160a01b0384166000908152600460209081526040808320338085529252909120546105b79186916105b29086610df9565b610be7565b5060019392505050565b60025460ff1690565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916105619185906105b29086610e0b565b60065460055461060f91610e0b565b6005556006543360009081526003602052604090205461062e91610e0b565b336000818152600360209081526040808320949094556006548451908152935192939192600080516020610f5d8339815191529281900390910190a3565b6106746107e7565b6106b3576040805162461bcd60e51b81526020600482018190526024820152600080516020610f3d833981519152604482015290519081900360640190fd5b60006106bd6107d3565b9050806001600160a01b0316ff5b6001600160a01b031660009081526003602052604090205490565b6106ee6107e7565b61072d576040805162461bcd60e51b81526020600482018190526024820152600080516020610f3d833981519152604482015290519081900360640190fd5b60025460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360028054610100600160a81b0319169055565b6107856107e7565b6107c4576040805162461bcd60e51b81526020600482018190526024820152600080516020610f3d833981519152604482015290519081900360640190fd5b6107cf308383610cd3565b5050565b60025461010090046001600160a01b031690565b60025461010090046001600160a01b0316331490565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561054a5780601f1061051f5761010080835404028352916020019161054a565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916105619185906105b29086610df9565b6000610561338484610cd3565b6108a86107e7565b6108e7576040805162461bcd60e51b81526020600482018190526024820152600080516020610f3d833981519152604482015290519081900360640190fd5b3060009081526004602090815260408083206001600160a01b0386168452909152902083905560055461091a9084610e0b565b600555306000908152600360205260409020546109379084610e0b565b306000818152600360209081526040808320949094558351878152935192939192600080516020610f5d8339815191529281900390910190a360408051637bb41c9960e11b8152306004820152602481018590526044810183905290516001600160a01b0384169163f768393291606480830192600092919082900301818387803b1580156109c557600080fd5b505af11580156109d9573d6000803e3d6000fd5b50505050505050565b6109ea6107e7565b610a29576040805162461bcd60e51b81526020600482018190526024820152600080516020610f3d833981519152604482015290519081900360640190fd5b80513060009081526004602090815260408083206001600160a01b03871684529091529020600019905560055490840290610a649082610e0b565b60055530600090815260036020526040902054610a819082610e0b565b306000818152600360209081526040808320949094558351858152935192939192600080516020610f5d8339815191529281900390910190a360005b82518160ff161015610b6257836001600160a01b031663f76839323087868560ff1681518110610ae957fe5b60200260200101516040518463ffffffff1660e01b815260040180846001600160a01b031681526020018381526020018281526020019350505050600060405180830381600087803b158015610b3e57600080fd5b505af1158015610b52573d6000803e3d6000fd5b505060019092019150610abd9050565b5050505050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b610b9c6107e7565b610bdb576040805162461bcd60e51b81526020600482018190526024820152600080516020610f3d833981519152604482015290519081900360640190fd5b610be481610e21565b50565b6001600160a01b038316610c2c5760405162461bcd60e51b8152600401808060200182810382526024815260200180610ef36024913960400191505060405180910390fd5b6001600160a01b038216610c715760405162461bcd60e51b8152600401808060200182810382526022815260200180610fa06022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610d185760405162461bcd60e51b8152600401808060200182810382526025815260200180610ece6025913960400191505060405180910390fd5b6001600160a01b038216610d5d5760405162461bcd60e51b8152600401808060200182810382526023815260200180610f7d6023913960400191505060405180910390fd5b6001600160a01b038316600090815260036020526040902054610d809082610df9565b6001600160a01b038085166000908152600360205260408082209390935590841681522054610daf9082610e0b565b6001600160a01b038084166000818152600360209081526040918290209490945580518581529051919392871692600080516020610f5d83398151915292918290030190a3505050565b600082821115610e0557fe5b50900390565b600082820183811015610e1a57fe5b9392505050565b6001600160a01b038116610e665760405162461bcd60e51b8152600401808060200182810382526026815260200180610f176026913960400191505060405180910390fd5b6002546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600280546001600160a01b0390921661010002610100600160a81b031990921691909117905556fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef42455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a20617070726f766520746f20746865207a65726f2061646472657373a264697066735822122062366fba470fe39bd35cfcd0c631a02de533e8c815e2bd3f875fbea483a2607e64736f6c63430007060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f42400000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000000002a307845656565654565656545654565654565456545656545454565656565456565656565656545456545000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e299940000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE
Arg [1] : _symbol (string): ♔
Arg [2] : _decimals (uint8): 0
Arg [3] : total_supply_whole_tokens (uint256): 1000000
Arg [4] : faucet_amount (uint256): 1000000000000000000
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000f4240
Arg [4] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000002a
Arg [6] : 3078456565656545656565456545656545654565456565454545656565654565
Arg [7] : 6565656565654545654500000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : e299940000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
23852:2175:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4827:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11321:157;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11321:157:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;10308:100;;;:::i;:::-;;;;;;;;;;;;;;;;11949:265;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11949:265:0;;;;;;;;;;;;;;;;;:::i;5679:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12623:206;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12623:206:0;;;;;;;;:::i;24492:260::-;;;:::i;:::-;;17003:132;;;:::i;10471:119::-;;;;;;;;;;;;;;;;-1:-1:-1;10471:119:0;-1:-1:-1;;;;;10471:119:0;;:::i;7014:140::-;;;:::i;24760:123::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24760:123:0;;;;;;;;:::i;6205:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;6205:79:0;;;;;;;;;;;;;;6571:92;;;:::i;5029:87::-;;;:::i;13332:216::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13332:216:0;;;;;;;;:::i;10803:165::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;10803:165:0;;;;;;;;:::i;24891:468::-;;;;;;;;;;;;;;;;-1:-1:-1;24891:468:0;;;-1:-1:-1;;;;;24891:468:0;;;;;;;;;;:::i;25367:657::-;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25367:657:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25367:657:0;;-1:-1:-1;25367:657:0;;-1:-1:-1;;;;;25367:657:0:i;11031:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11031:143:0;;;;;;;;;;:::i;7309:109::-;;;;;;;;;;;;;;;;-1:-1:-1;7309:109:0;-1:-1:-1;;;;;7309:109:0;;:::i;4827:83::-;4897:5;4890:12;;;;;;;;-1:-1:-1;;4890:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4864:13;;4890:12;;4897:5;;4890:12;;4897:5;4890:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4827:83;:::o;11321:157::-;11395:4;11412:36;11421:10;11433:7;11442:5;11412:8;:36::i;:::-;-1:-1:-1;11466:4:0;11321:157;;;;:::o;10308:100::-;10388:12;;10308:100;:::o;11949:265::-;12047:4;12064:36;12074:6;12082:9;12093:6;12064:9;:36::i;:::-;-1:-1:-1;;;;;12140:19:0;;;;;;:11;:19;;;;;;;;12128:10;12140:31;;;;;;;;;12111:73;;12120:6;;12140:43;;12176:6;12140:35;:43::i;:::-;12111:8;:73::i;:::-;-1:-1:-1;12202:4:0;11949:265;;;;;:::o;5679:83::-;5745:9;;;;5679:83;:::o;12623:206::-;12729:10;12703:4;12750:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12750:32:0;;;;;;;;;;12703:4;;12720:79;;12741:7;;12750:48;;12787:10;12750:36;:48::i;24492:260::-;24562:14;;24545:12;;:32;;:16;:32::i;:::-;24530:12;:47;24656:14;;24639:10;24621:30;;;;:9;:30;;;;;;:50;;:34;:50::i;:::-;24606:10;24588:30;;;;:9;:30;;;;;;;;:83;;;;24729:14;;24687:57;;;;;;;24606:10;;24588:30;;-1:-1:-1;;;;;;;;;;;24687:57:0;;;;;;;;;24492:260::o;17003:132::-;6417:9;:7;:9::i;:::-;6409:54;;;;;-1:-1:-1;;;6409:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6409:54:0;;;;;;;;;;;;;;;17047:22:::1;17087:7;:5;:7::i;:::-;17047:49;;17120:6;-1:-1:-1::0;;;;;17107:20:0::1;;10471:119:::0;-1:-1:-1;;;;;10564:18:0;10537:7;10564:18;;;:9;:18;;;;;;;10471:119::o;7014:140::-;6417:9;:7;:9::i;:::-;6409:54;;;;;-1:-1:-1;;;6409:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6409:54:0;;;;;;;;;;;;;;;7097:6:::1;::::0;7076:40:::1;::::0;7113:1:::1;::::0;7097:6:::1;::::0;::::1;-1:-1:-1::0;;;;;7097:6:0::1;::::0;7076:40:::1;::::0;7113:1;;7076:40:::1;7127:6;:19:::0;;-1:-1:-1;;;;;;7127:19:0::1;::::0;;7014:140::o;24760:123::-;6417:9;:7;:9::i;:::-;6409:54;;;;;-1:-1:-1;;;6409:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6409:54:0;;;;;;;;;;;;;;;24835:40:::1;24853:4;24860:7;24869:5;24835:9;:40::i;:::-;24760:123:::0;;:::o;6205:79::-;6270:6;;;;;-1:-1:-1;;;;;6270:6:0;;6205:79::o;6571:92::-;6649:6;;;;;-1:-1:-1;;;;;6649:6:0;6635:10;:20;;6571:92::o;5029:87::-;5101:7;5094:14;;;;;;;;-1:-1:-1;;5094:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5068:13;;5094:14;;5101:7;;5094:14;;5101:7;5094:14;;;;;;;;;;;;;;;;;;;;;;;;13332:216;13443:10;13417:4;13464:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;13464:32:0;;;;;;;;;;13417:4;;13434:84;;13455:7;;13464:53;;13501:15;13464:36;:53::i;10803:165::-;10881:4;10898:40;10908:10;10920:9;10931:6;10898:9;:40::i;24891:468::-;6417:9;:7;:9::i;:::-;6409:54;;;;;-1:-1:-1;;;6409:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6409:54:0;;;;;;;;;;;;;;;25035:4:::1;25015:26;::::0;;;:11:::1;:26;::::0;;;;;;;-1:-1:-1;;;;;25015:42:0;::::1;::::0;;;;;;;:51;;;25092:12:::1;::::0;:24:::1;::::0;25060:6;25092:16:::1;:24::i;:::-;25077:12;:39:::0;25172:4:::1;25154:24;::::0;;;:9:::1;:24;::::0;;;;;:36:::1;::::0;25183:6;25154:28:::1;:36::i;:::-;25145:4;25127:24;::::0;;;:9:::1;:24;::::0;;;;;;;:63;;;;25206:43;;;;;;;25145:4;;25127:24;;-1:-1:-1;;;;;;;;;;;25206:43:0;;;;;;;;::::1;25262:89;::::0;;-1:-1:-1;;;25262:89:0;;25320:4:::1;25262:89;::::0;::::1;::::0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25262:49:0;::::1;::::0;::::1;::::0;:89;;;;;-1:-1:-1;;25262:89:0;;;;;;;-1:-1:-1;25262:49:0;:89;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;24891:468:::0;;;:::o;25367:657::-;6417:9;:7;:9::i;:::-;6409:54;;;;;-1:-1:-1;;;6409:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6409:54:0;;;;;;;;;;;;;;;25528:23;;25582:4:::1;25499:17;25562:26:::0;;;:11:::1;:26;::::0;;;;;;;-1:-1:-1;;;;;25562:42:0;::::1;::::0;;;;;;;-1:-1:-1;;25562:56:0;;25644:12:::1;::::0;25519:32;;::::1;::::0;25644:27:::1;::::0;25519:32;25644:16:::1;:27::i;:::-;25629:12;:42:::0;25727:4:::1;25709:24;::::0;;;:9:::1;:24;::::0;;;;;:39:::1;::::0;25738:9;25709:28:::1;:39::i;:::-;25700:4;25682:24;::::0;;;:9:::1;:24;::::0;;;;;;;:66;;;;25764:46;;;;;;;25700:4;;25682:24;;-1:-1:-1;;;;;;;;;;;25764:46:0;;;;;;;;::::1;25825:13;25821:194;25854:16;:23;25844:7;:33;;;25821:194;;;25924:14;-1:-1:-1::0;;;;;25904:49:0::1;;25962:4;25969:6;25977:16;25994:7;25977:25;;;;;;;;;;;;;;;;25904:99;;;;;;;;;;;;;-1:-1:-1::0;;;;;25904:99:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;25879:9:0::1;::::0;;::::1;::::0;-1:-1:-1;25821:194:0::1;::::0;-1:-1:-1;25821:194:0::1;;;6474:1;25367:657:::0;;;:::o;11031:143::-;-1:-1:-1;;;;;11139:18:0;;;11112:7;11139:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11031:143::o;7309:109::-;6417:9;:7;:9::i;:::-;6409:54;;;;;-1:-1:-1;;;6409:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6409:54:0;;;;;;;;;;;;;;;7382:28:::1;7401:8;7382:18;:28::i;:::-;7309:109:::0;:::o;16135:335::-;-1:-1:-1;;;;;16228:19:0;;16220:68;;;;-1:-1:-1;;;16220:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16307:21:0;;16299:68;;;;-1:-1:-1;;;16299:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16380:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;16431:31;;;;;;;;;;;;;;;;;16135:335;;;:::o;14038:429::-;-1:-1:-1;;;;;14136:20:0;;14128:70;;;;-1:-1:-1;;;14128:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14217:23:0;;14209:71;;;;-1:-1:-1;;;14209:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14313:17:0;;;;;;:9;:17;;;;;;:29;;14335:6;14313:21;:29::i;:::-;-1:-1:-1;;;;;14293:17:0;;;;;;;:9;:17;;;;;;:49;;;;14376:20;;;;;;;:32;;14401:6;14376:24;:32::i;:::-;-1:-1:-1;;;;;14353:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;14424:35;;;;;;;14353:20;;14424:35;;;;-1:-1:-1;;;;;;;;;;;14424:35:0;;;;;;;;14038:429;;;:::o;8510:113::-;8568:7;8596:1;8591;:6;;8584:14;;;;-1:-1:-1;8612:5:0;;;8510:113::o;8690:133::-;8748:7;8776:5;;;8795:6;;;;8788:14;;;;8816:1;8690:133;-1:-1:-1;;;8690:133:0:o;7524:229::-;-1:-1:-1;;;;;7598:22:0;;7590:73;;;;-1:-1:-1;;;7590:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7700:6;;7679:38;;-1:-1:-1;;;;;7679:38:0;;;;7700:6;;;;;7679:38;;;;;7728:6;:17;;-1:-1:-1;;;;;7728:17:0;;;;;-1:-1:-1;;;;;;7728:17:0;;;;;;;;;7524:229::o
Swarm Source
ipfs://62366fba470fe39bd35cfcd0c631a02de533e8c815e2bd3f875fbea483a2607e
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)