Feature Tip: Add private address tag to any address under My Name Tag !
Overview
Max Total Supply
14,989,837 RGP
Holders
49 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH (-0.56%)
Onchain Market Cap
$17,083.47
Circulating Supply Market Cap
$1,025.71
Other Info
Token Contract (WITH 18 Decimals)
Balance
400,000 RGPValue
$455.87 ( ~0.150136273987181 Eth) [2.6685%]Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
RigelToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-12-13
*/
/**
*
_______ __ __ _______ __ __
| \| \ | \ | \ | \ | \
| ▓▓▓▓▓▓▓\\▓▓ ______ ______ | ▓▓ | ▓▓▓▓▓▓▓\ ______ ______ _| ▓▓_ ______ _______ ______ | ▓▓
| ▓▓__| ▓▓ \/ \ / \| ▓▓ | ▓▓__/ ▓▓/ \ / \| ▓▓ \ / \ / \/ \| ▓▓
| ▓▓ ▓▓ ▓▓ ▓▓▓▓▓▓\ ▓▓▓▓▓▓\ ▓▓ | ▓▓ ▓▓ ▓▓▓▓▓▓\ ▓▓▓▓▓▓\\▓▓▓▓▓▓ | ▓▓▓▓▓▓\ ▓▓▓▓▓▓▓ ▓▓▓▓▓▓\ ▓▓
| ▓▓▓▓▓▓▓\ ▓▓ ▓▓ | ▓▓ ▓▓ ▓▓ ▓▓ | ▓▓▓▓▓▓▓| ▓▓ \▓▓ ▓▓ | ▓▓ | ▓▓ __| ▓▓ | ▓▓ ▓▓ | ▓▓ | ▓▓ ▓▓
| ▓▓ | ▓▓ ▓▓ ▓▓__| ▓▓ ▓▓▓▓▓▓▓▓ ▓▓ | ▓▓ | ▓▓ | ▓▓__/ ▓▓ | ▓▓| \ ▓▓__/ ▓▓ ▓▓_____| ▓▓__/ ▓▓ ▓▓
| ▓▓ | ▓▓ ▓▓\▓▓ ▓▓\▓▓ \ ▓▓ | ▓▓ | ▓▓ \▓▓ ▓▓ \▓▓ ▓▓\▓▓ ▓▓\▓▓ \\▓▓ ▓▓ ▓▓
\▓▓ \▓▓\▓▓_\▓▓▓▓▓▓▓ \▓▓▓▓▓▓▓\▓▓ \▓▓ \▓▓ \▓▓▓▓▓▓ \▓▓▓▓ \▓▓▓▓▓▓ \▓▓▓▓▓▓▓ \▓▓▓▓▓▓ \▓▓
| \__| ▓▓
\▓▓ ▓▓
\▓▓▓▓▓▓
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
/**
* @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);
}
// File: @openzeppelin/contracts/math/SafeMath.sol
/**
* @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;
}
}
// File: @openzeppelin/contracts/GSN/Context.sol
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// File: contracts/RigelToken.sol
/**
* @dev Implementation of the Owned Contract.
*
*/
contract Owned is Context {
address public _owner;
address public _newOwner;
event OwnershipTransferred(address indexed _from, address indexed _to);
modifier onlyOwner {
require(_msgSender() == _owner, "RigelToken: Only Owner can perform this task");
_;
}
function transferOwnership(address newOwner) public onlyOwner {
_newOwner = newOwner;
}
function acceptOwnership() public {
require(_msgSender() == _newOwner, "RigelToken: Token Contract Ownership has not been set for the address");
emit OwnershipTransferred(_owner, _newOwner);
_owner = _newOwner;
_newOwner = address(0);
}
}
/**
* @dev Implementation of the {IERC20} interface.
*
*/
contract RigelToken is IERC20, Owned {
using SafeMath for uint256;
mapping (address => uint256) private _balances; // Total balance per address (locked + unlocked)
mapping (address => uint256) private _unlockedTokens; // Unlocked Tokens, available for transfer
mapping (address => mapping (address => uint256)) private _allowances;
struct LockRecord {
uint256 lockingPeriod;
uint256 tokens;
bool isUnlocked;
}
mapping(address => LockRecord[]) private records; // Record of Locking periods and tokens per address
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
constructor( address owner ) public {
_name = "RigelToken";
_symbol = "RGP";
_decimals = 18;
_totalSupply = 20000000 * (10 ** 18);
_owner = owner;
_balances[_owner] = _totalSupply;
_unlockedTokens[_owner] = _totalSupply;
emit Transfer(address(0), _owner, _totalSupply );
}
/**
* @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`).
*/
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-balanceOf}.
*/
function unLockedBalanceOf(address account) public view returns (uint256) {
return _unlockedTokens[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(_msgSender(),recipient,amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view 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 override returns (bool) {
require(spender != address(0), "RigelToken: approve to the zero address");
_allowances[_msgSender()][spender] = amount;
emit Approval(_msgSender(), 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 override returns (bool) {
_transfer(sender,recipient,amount);
require(amount <= _allowances[sender][_msgSender()],"RigelToken: Check for approved token count failed");
_allowances[sender][_msgSender()] = _allowances[sender][_msgSender()].sub(amount);
emit Approval(sender, _msgSender(), _allowances[sender][_msgSender()]);
return true;
}
function _transfer(address sender, address recipient, uint256 amount) private {
require(recipient != address(0),"RigelToken: Cannot have recipient as zero address");
require(sender != address(0),"RigelToken: Cannot have sender as zero address");
require(_balances[sender] >= amount,"RigelToken: Insufficient Balance" );
require(_balances[recipient] + amount >= _balances[recipient],"RigelToken: Balance check failed");
// update the unlocked tokens based on time if required
_updateUnLockedTokens(sender, amount);
_unlockedTokens[sender] = _unlockedTokens[sender].sub(amount);
_unlockedTokens[recipient] = _unlockedTokens[recipient].add(amount);
_balances[sender] = _balances[sender].sub(amount);
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender,recipient,amount);
}
function _transferLock(address sender, address recipient, uint256 amount) private {
require(recipient != address(0),"RigelToken: Cannot have recipient as zero address");
require(sender != address(0),"RigelToken: Cannot have sender as zero address");
require(_balances[sender] >= amount,"RigelToken: Insufficient Balance" );
require(_balances[recipient] + amount >= _balances[recipient],"RigelToken: Balance check failed");
_balances[sender] = _balances[sender].sub(amount);
_balances[recipient] = _balances[recipient].add(amount);
_unlockedTokens[sender] = _unlockedTokens[sender].sub(amount);
emit Transfer(sender,recipient,amount);
}
/**
* @dev Destroys `amount` tokens from the `account`.
*
* See {ERC20-_burn}.
*/
function burn(address account, uint256 amount) public onlyOwner {
require(account != address(0), "RigelToken: burn from the zero address");
if( _balances[account] == _unlockedTokens[account]){
_unlockedTokens[account] = _unlockedTokens[account].sub(amount, "RigelToken: burn amount exceeds balance");
}
_balances[account] = _balances[account].sub(amount, "RigelToken: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
if(account != _msgSender()){
require(amount <= _allowances[account][_msgSender()],"RigelToken: Check for approved token count failed");
_allowances[account][_msgSender()] = _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance");
emit Approval(account, _msgSender(), _allowances[account][_msgSender()]);
}
}
// ------------------------------------------------------------------------
// Transfer the balance from token owner's _msgSender() to `to` _msgSender()
// - Owner's _msgSender() must have sufficient balance to transfer
// - 0 value transfers are allowed
// - takes in locking Period to lock the tokens to be used
// - if want to transfer without locking enter 0 in lockingPeriod argument
// ------------------------------------------------------------------------
function distributeTokens(address to, uint tokens, uint256 lockingPeriod) onlyOwner public returns (bool success) {
// if there is no lockingPeriod, add tokens to _unlockedTokens per address
if(lockingPeriod == 0)
_transfer(_msgSender(),to, tokens);
// if there is a lockingPeriod, add tokens to record mapping
else
_transferLock(_msgSender(),to, tokens);
_addRecord(to, tokens, lockingPeriod);
return true;
}
// ------------------------------------------------------------------------
// Adds record of addresses with locking period and tokens to lock
// ------------------------------------------------------------------------
function _addRecord(address to, uint tokens, uint256 lockingPeriod) private {
records[to].push(LockRecord(lockingPeriod,tokens, false));
}
// ------------------------------------------------------------------------
// Checks if there is required amount of unLockedTokens available
// ------------------------------------------------------------------------
function _updateUnLockedTokens(address _from, uint tokens) private returns (bool success) {
// if _unlockedTokens are greater than "tokens" of "to", initiate transfer
if(_unlockedTokens[_from] >= tokens){
return true;
}
// if _unlockedTokens are less than "tokens" of "to", update _unlockedTokens by checking record with "now" time
else{
_updateRecord(_from);
// check if _unlockedTokens are greater than "token" of "to", initiate transfer
if(_unlockedTokens[_from] >= tokens){
return true;
}
// otherwise revert
else{
revert("RigelToken: Insufficient unlocked tokens");
}
}
}
// ------------------------------------------------------------------------
// Unlocks the coins if lockingPeriod is expired
// ------------------------------------------------------------------------
function _updateRecord(address account) private returns (bool success){
LockRecord[] memory tempRecords = records[account];
uint256 unlockedTokenCount = 0;
for(uint256 i=0; i < tempRecords.length; i++){
if(tempRecords[i].lockingPeriod < now && tempRecords[i].isUnlocked == false){
unlockedTokenCount = unlockedTokenCount.add(tempRecords[i].tokens);
tempRecords[i].isUnlocked = true;
records[account][i] = LockRecord(tempRecords[i].lockingPeriod, tempRecords[i].tokens, tempRecords[i].isUnlocked);
}
}
_unlockedTokens[account] = _unlockedTokens[account].add(unlockedTokenCount);
return true;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"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":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","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":"_newOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","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":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"uint256","name":"lockingPeriod","type":"uint256"}],"name":"distributeTokens","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unLockedBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b5060405162001a4b38038062001a4b833981810160405260208110156200003757600080fd5b505160408051808201909152600a808252692934b3b2b62a37b5b2b760b11b60209092019182526200006c916007916200013b565b506040805180820190915260038082526205247560ec1b602090920191825262000099916008916200013b565b506009805460ff191660121790556a108b2a2c280290940000006006819055600080546001600160a01b038085166001600160a01b03199092169190911780835581168252600260209081526040808420859055835483168452600382528084208590558354815195865290519216937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a350620001d7565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200017e57805160ff1916838001178555620001ae565b82800160010185558215620001ae579182015b82811115620001ae57825182559160200191906001019062000191565b50620001bc929150620001c0565b5090565b5b80821115620001bc5760008155600101620001c1565b61186480620001e76000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806395d89b4111610097578063b74908fe11610066578063b74908fe1461030a578063cc254bdd14610312578063dd62ed3e14610344578063f2fde38b1461037257610100565b806395d89b41146102865780639dc29fac1461028e578063a9059cbb146102ba578063b2bdfa7b146102e657610100565b806324a14c24116100d357806324a14c2414610212578063313ce5671461023857806370a082311461025657806379ba50971461027c57610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d610398565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b03813516906020013561042e565b604080519115158252519081900360200190f35b6101ca610504565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b0381358116916020810135909116906040013561050a565b6101ca6004803603602081101561022857600080fd5b50356001600160a01b03166106ac565b6102406106c7565b6040805160ff9092168252519081900360200190f35b6101ca6004803603602081101561026c57600080fd5b50356001600160a01b03166106d0565b6102846106eb565b005b61010d6107a8565b610284600480360360408110156102a457600080fd5b506001600160a01b038135169060200135610809565b6101ae600480360360408110156102d057600080fd5b506001600160a01b038135169060200135610b98565b6102ee610bb5565b604080516001600160a01b039092168252519081900360200190f35b6102ee610bc4565b6101ae6004803603606081101561032857600080fd5b506001600160a01b038135169060208101359060400135610bd3565b6101ca6004803603604081101561035a57600080fd5b506001600160a01b0381358116916020013516610c70565b6102846004803603602081101561038857600080fd5b50356001600160a01b0316610c9b565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104245780601f106103f957610100808354040283529160200191610424565b820191906000526020600020905b81548152906001019060200180831161040757829003601f168201915b5050505050905090565b60006001600160a01b0383166104755760405162461bcd60e51b815260040180806020018281038252602781526020018061171f6027913960400191505060405180910390fd5b8160046000610482610d16565b6001600160a01b03908116825260208083019390935260409182016000908120918816808252919093529120919091556104ba610d16565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a35060015b92915050565b60065490565b6000610517848484610d1a565b6001600160a01b038416600090815260046020526040812090610538610d16565b6001600160a01b03166001600160a01b03168152602001908152602001600020548211156105975760405162461bcd60e51b815260040180806020018281038252603181526020018061176e6031913960400191505060405180910390fd5b6001600160a01b03841660009081526004602052604081206105de918491906105be610d16565b6001600160a01b0316815260208101919091526040016000205490610f9e565b6001600160a01b0385166000908152600460205260408120906105ff610d16565b6001600160a01b03168152602081019190915260400160002055610621610d16565b6001600160a01b038581166000818152600460205260408120939092169290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925919061066c610d16565b6001600160a01b03166001600160a01b03168152602001908152602001600020546040518082815260200191505060405180910390a35060019392505050565b6001600160a01b031660009081526003602052604090205490565b60095460ff1690565b6001600160a01b031660009081526002602052604090205490565b6001546001600160a01b03166106ff610d16565b6001600160a01b0316146107445760405162461bcd60e51b81526004018080602001828103825260458152602001806117ea6045913960600191505060405180910390fd5b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104245780601f106103f957610100808354040283529160200191610424565b6000546001600160a01b031661081d610d16565b6001600160a01b0316146108625760405162461bcd60e51b815260040180806020018281038252602c81526020018061169c602c913960400191505060405180910390fd5b6001600160a01b0382166108a75760405162461bcd60e51b81526004018080602001828103825260268152602001806116f96026913960400191505060405180910390fd5b6001600160a01b03821660009081526003602090815260408083205460029092529091205414156109295761090f816040518060600160405280602781526020016117c3602791396001600160a01b0385166000908152600360205260409020549190610fe7565b6001600160a01b0383166000908152600360205260409020555b610966816040518060600160405280602781526020016117c3602791396001600160a01b0385166000908152600260205260409020549190610fe7565b6001600160a01b03831660009081526002602052604090205560065461098c9082610f9e565b6006556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a36109d8610d16565b6001600160a01b0316826001600160a01b031614610b94576001600160a01b038216600090815260046020526040812090610a11610d16565b6001600160a01b03166001600160a01b0316815260200190815260200160002054811115610a705760405162461bcd60e51b815260040180806020018281038252603181526020018061176e6031913960400191505060405180910390fd5b610acf8160405180606001604052806024815260200161179f602491396001600160a01b038516600090815260046020526040812090610aae610d16565b6001600160a01b031681526020810191909152604001600020549190610fe7565b6001600160a01b038316600090815260046020526040812090610af0610d16565b6001600160a01b03168152602081019190915260400160002055610b12610d16565b6001600160a01b038381166000818152600460205260408120939092169290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259190610b5d610d16565b6001600160a01b03166001600160a01b03168152602001908152602001600020546040518082815260200191505060405180910390a35b5050565b6000610bac610ba5610d16565b8484610d1a565b50600192915050565b6000546001600160a01b031681565b6001546001600160a01b031681565b600080546001600160a01b0316610be8610d16565b6001600160a01b031614610c2d5760405162461bcd60e51b815260040180806020018281038252602c81526020018061169c602c913960400191505060405180910390fd5b81610c4957610c44610c3d610d16565b8585610d1a565b610c5b565b610c5b610c54610d16565b858561107e565b610c668484846112ca565b5060019392505050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6000546001600160a01b0316610caf610d16565b6001600160a01b031614610cf45760405162461bcd60e51b815260040180806020018281038252602c81526020018061169c602c913960400191505060405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038216610d5f5760405162461bcd60e51b81526004018080602001828103825260318152602001806116c86031913960400191505060405180910390fd5b6001600160a01b038316610da45760405162461bcd60e51b815260040180806020018281038252602e81526020018061166e602e913960400191505060405180910390fd5b6001600160a01b038316600090815260026020526040902054811115610e11576040805162461bcd60e51b815260206004820181905260248201527f526967656c546f6b656e3a20496e73756666696369656e742042616c616e6365604482015290519081900360640190fd5b6001600160a01b0382166000908152600260205260409020548181011015610e80576040805162461bcd60e51b815260206004820181905260248201527f526967656c546f6b656e3a2042616c616e636520636865636b206661696c6564604482015290519081900360640190fd5b610e8a838261133c565b506001600160a01b038316600090815260036020526040902054610eae9082610f9e565b6001600160a01b038085166000908152600360205260408082209390935590841681522054610edd90826113cb565b6001600160a01b03808416600090815260036020908152604080832094909455918616815260029091522054610f139082610f9e565b6001600160a01b038085166000908152600260205260408082209390935590841681522054610f4290826113cb565b6001600160a01b0380841660008181526002602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000610fe083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fe7565b9392505050565b600081848411156110765760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561103b578181015183820152602001611023565b50505050905090810190601f1680156110685780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166110c35760405162461bcd60e51b81526004018080602001828103825260318152602001806116c86031913960400191505060405180910390fd5b6001600160a01b0383166111085760405162461bcd60e51b815260040180806020018281038252602e81526020018061166e602e913960400191505060405180910390fd5b6001600160a01b038316600090815260026020526040902054811115611175576040805162461bcd60e51b815260206004820181905260248201527f526967656c546f6b656e3a20496e73756666696369656e742042616c616e6365604482015290519081900360640190fd5b6001600160a01b03821660009081526002602052604090205481810110156111e4576040805162461bcd60e51b815260206004820181905260248201527f526967656c546f6b656e3a2042616c616e636520636865636b206661696c6564604482015290519081900360640190fd5b6001600160a01b0383166000908152600260205260409020546112079082610f9e565b6001600160a01b03808516600090815260026020526040808220939093559084168152205461123690826113cb565b6001600160a01b0380841660009081526002602090815260408083209490945591861681526003909152205461126c9082610f9e565b6001600160a01b0380851660008181526003602090815260409182902094909455805185815290519286169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3505050565b6001600160a01b039290921660009081526005602090815260408083208151606081018352958652858301948552908501838152815460018082018455928552929093209451600390920290940190815591519282019290925590516002909101805460ff1916911515919091179055565b6001600160a01b0382166000908152600360205260408120548211611363575060016104fe565b61136c83611425565b506001600160a01b0383166000908152600360205260409020548211611394575060016104fe565b60405162461bcd60e51b81526004018080602001828103825260288152602001806117466028913960400191505060405180910390fd5b600082820183811015610fe0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526005602090815260408083208054825181850281018501909352808352606093859084015b828210156114aa5760008481526020908190206040805160608101825260038602909201805483526001808201548486015260029091015460ff161515918301919091529083529092019101611459565b5050505090506000805b825181101561162557428382815181106114ca57fe5b6020026020010151600001511080156114fb57508281815181106114ea57fe5b602090810291909101015160400151155b1561161d5761152a83828151811061150f57fe5b602002602001015160200151836113cb90919063ffffffff16565b9150600183828151811061153a57fe5b60200260200101516040019015159081151581525050604051806060016040528084838151811061156757fe5b602002602001015160000151815260200184838151811061158457fe5b60200260200101516020015181526020018483815181106115a157fe5b602002602001015160400151151581525060056000876001600160a01b03166001600160a01b0316815260200190815260200160002082815481106115e257fe5b60009182526020918290208351600392909202019081559082015160018201556040909101516002909101805460ff19169115159190911790555b6001016114b4565b506001600160a01b03841660009081526003602052604090205461164990826113cb565b6001600160a01b03851660009081526003602052604090205550600191505091905056fe526967656c546f6b656e3a2043616e6e6f7420686176652073656e646572206173207a65726f2061646472657373526967656c546f6b656e3a204f6e6c79204f776e65722063616e20706572666f726d2074686973207461736b526967656c546f6b656e3a2043616e6e6f74206861766520726563697069656e74206173207a65726f2061646472657373526967656c546f6b656e3a206275726e2066726f6d20746865207a65726f2061646472657373526967656c546f6b656e3a20617070726f766520746f20746865207a65726f2061646472657373526967656c546f6b656e3a20496e73756666696369656e7420756e6c6f636b656420746f6b656e73526967656c546f6b656e3a20436865636b20666f7220617070726f76656420746f6b656e20636f756e74206661696c656445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e6365526967656c546f6b656e3a206275726e20616d6f756e7420657863656564732062616c616e6365526967656c546f6b656e3a20546f6b656e20436f6e7472616374204f776e65727368697020686173206e6f74206265656e2073657420666f72207468652061646472657373a26469706673582212202a054078028a20b845e4c1b240d1e4fb29b792864994f05516a76149258db5e064736f6c634300060c00330000000000000000000000004f86c4388ce9d7dbfaac5114e27f63903586841c
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c806395d89b4111610097578063b74908fe11610066578063b74908fe1461030a578063cc254bdd14610312578063dd62ed3e14610344578063f2fde38b1461037257610100565b806395d89b41146102865780639dc29fac1461028e578063a9059cbb146102ba578063b2bdfa7b146102e657610100565b806324a14c24116100d357806324a14c2414610212578063313ce5671461023857806370a082311461025657806379ba50971461027c57610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d610398565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b03813516906020013561042e565b604080519115158252519081900360200190f35b6101ca610504565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b0381358116916020810135909116906040013561050a565b6101ca6004803603602081101561022857600080fd5b50356001600160a01b03166106ac565b6102406106c7565b6040805160ff9092168252519081900360200190f35b6101ca6004803603602081101561026c57600080fd5b50356001600160a01b03166106d0565b6102846106eb565b005b61010d6107a8565b610284600480360360408110156102a457600080fd5b506001600160a01b038135169060200135610809565b6101ae600480360360408110156102d057600080fd5b506001600160a01b038135169060200135610b98565b6102ee610bb5565b604080516001600160a01b039092168252519081900360200190f35b6102ee610bc4565b6101ae6004803603606081101561032857600080fd5b506001600160a01b038135169060208101359060400135610bd3565b6101ca6004803603604081101561035a57600080fd5b506001600160a01b0381358116916020013516610c70565b6102846004803603602081101561038857600080fd5b50356001600160a01b0316610c9b565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104245780601f106103f957610100808354040283529160200191610424565b820191906000526020600020905b81548152906001019060200180831161040757829003601f168201915b5050505050905090565b60006001600160a01b0383166104755760405162461bcd60e51b815260040180806020018281038252602781526020018061171f6027913960400191505060405180910390fd5b8160046000610482610d16565b6001600160a01b03908116825260208083019390935260409182016000908120918816808252919093529120919091556104ba610d16565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a35060015b92915050565b60065490565b6000610517848484610d1a565b6001600160a01b038416600090815260046020526040812090610538610d16565b6001600160a01b03166001600160a01b03168152602001908152602001600020548211156105975760405162461bcd60e51b815260040180806020018281038252603181526020018061176e6031913960400191505060405180910390fd5b6001600160a01b03841660009081526004602052604081206105de918491906105be610d16565b6001600160a01b0316815260208101919091526040016000205490610f9e565b6001600160a01b0385166000908152600460205260408120906105ff610d16565b6001600160a01b03168152602081019190915260400160002055610621610d16565b6001600160a01b038581166000818152600460205260408120939092169290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925919061066c610d16565b6001600160a01b03166001600160a01b03168152602001908152602001600020546040518082815260200191505060405180910390a35060019392505050565b6001600160a01b031660009081526003602052604090205490565b60095460ff1690565b6001600160a01b031660009081526002602052604090205490565b6001546001600160a01b03166106ff610d16565b6001600160a01b0316146107445760405162461bcd60e51b81526004018080602001828103825260458152602001806117ea6045913960600191505060405180910390fd5b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104245780601f106103f957610100808354040283529160200191610424565b6000546001600160a01b031661081d610d16565b6001600160a01b0316146108625760405162461bcd60e51b815260040180806020018281038252602c81526020018061169c602c913960400191505060405180910390fd5b6001600160a01b0382166108a75760405162461bcd60e51b81526004018080602001828103825260268152602001806116f96026913960400191505060405180910390fd5b6001600160a01b03821660009081526003602090815260408083205460029092529091205414156109295761090f816040518060600160405280602781526020016117c3602791396001600160a01b0385166000908152600360205260409020549190610fe7565b6001600160a01b0383166000908152600360205260409020555b610966816040518060600160405280602781526020016117c3602791396001600160a01b0385166000908152600260205260409020549190610fe7565b6001600160a01b03831660009081526002602052604090205560065461098c9082610f9e565b6006556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a36109d8610d16565b6001600160a01b0316826001600160a01b031614610b94576001600160a01b038216600090815260046020526040812090610a11610d16565b6001600160a01b03166001600160a01b0316815260200190815260200160002054811115610a705760405162461bcd60e51b815260040180806020018281038252603181526020018061176e6031913960400191505060405180910390fd5b610acf8160405180606001604052806024815260200161179f602491396001600160a01b038516600090815260046020526040812090610aae610d16565b6001600160a01b031681526020810191909152604001600020549190610fe7565b6001600160a01b038316600090815260046020526040812090610af0610d16565b6001600160a01b03168152602081019190915260400160002055610b12610d16565b6001600160a01b038381166000818152600460205260408120939092169290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259190610b5d610d16565b6001600160a01b03166001600160a01b03168152602001908152602001600020546040518082815260200191505060405180910390a35b5050565b6000610bac610ba5610d16565b8484610d1a565b50600192915050565b6000546001600160a01b031681565b6001546001600160a01b031681565b600080546001600160a01b0316610be8610d16565b6001600160a01b031614610c2d5760405162461bcd60e51b815260040180806020018281038252602c81526020018061169c602c913960400191505060405180910390fd5b81610c4957610c44610c3d610d16565b8585610d1a565b610c5b565b610c5b610c54610d16565b858561107e565b610c668484846112ca565b5060019392505050565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6000546001600160a01b0316610caf610d16565b6001600160a01b031614610cf45760405162461bcd60e51b815260040180806020018281038252602c81526020018061169c602c913960400191505060405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038216610d5f5760405162461bcd60e51b81526004018080602001828103825260318152602001806116c86031913960400191505060405180910390fd5b6001600160a01b038316610da45760405162461bcd60e51b815260040180806020018281038252602e81526020018061166e602e913960400191505060405180910390fd5b6001600160a01b038316600090815260026020526040902054811115610e11576040805162461bcd60e51b815260206004820181905260248201527f526967656c546f6b656e3a20496e73756666696369656e742042616c616e6365604482015290519081900360640190fd5b6001600160a01b0382166000908152600260205260409020548181011015610e80576040805162461bcd60e51b815260206004820181905260248201527f526967656c546f6b656e3a2042616c616e636520636865636b206661696c6564604482015290519081900360640190fd5b610e8a838261133c565b506001600160a01b038316600090815260036020526040902054610eae9082610f9e565b6001600160a01b038085166000908152600360205260408082209390935590841681522054610edd90826113cb565b6001600160a01b03808416600090815260036020908152604080832094909455918616815260029091522054610f139082610f9e565b6001600160a01b038085166000908152600260205260408082209390935590841681522054610f4290826113cb565b6001600160a01b0380841660008181526002602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000610fe083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fe7565b9392505050565b600081848411156110765760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561103b578181015183820152602001611023565b50505050905090810190601f1680156110685780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166110c35760405162461bcd60e51b81526004018080602001828103825260318152602001806116c86031913960400191505060405180910390fd5b6001600160a01b0383166111085760405162461bcd60e51b815260040180806020018281038252602e81526020018061166e602e913960400191505060405180910390fd5b6001600160a01b038316600090815260026020526040902054811115611175576040805162461bcd60e51b815260206004820181905260248201527f526967656c546f6b656e3a20496e73756666696369656e742042616c616e6365604482015290519081900360640190fd5b6001600160a01b03821660009081526002602052604090205481810110156111e4576040805162461bcd60e51b815260206004820181905260248201527f526967656c546f6b656e3a2042616c616e636520636865636b206661696c6564604482015290519081900360640190fd5b6001600160a01b0383166000908152600260205260409020546112079082610f9e565b6001600160a01b03808516600090815260026020526040808220939093559084168152205461123690826113cb565b6001600160a01b0380841660009081526002602090815260408083209490945591861681526003909152205461126c9082610f9e565b6001600160a01b0380851660008181526003602090815260409182902094909455805185815290519286169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3505050565b6001600160a01b039290921660009081526005602090815260408083208151606081018352958652858301948552908501838152815460018082018455928552929093209451600390920290940190815591519282019290925590516002909101805460ff1916911515919091179055565b6001600160a01b0382166000908152600360205260408120548211611363575060016104fe565b61136c83611425565b506001600160a01b0383166000908152600360205260409020548211611394575060016104fe565b60405162461bcd60e51b81526004018080602001828103825260288152602001806117466028913960400191505060405180910390fd5b600082820183811015610fe0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526005602090815260408083208054825181850281018501909352808352606093859084015b828210156114aa5760008481526020908190206040805160608101825260038602909201805483526001808201548486015260029091015460ff161515918301919091529083529092019101611459565b5050505090506000805b825181101561162557428382815181106114ca57fe5b6020026020010151600001511080156114fb57508281815181106114ea57fe5b602090810291909101015160400151155b1561161d5761152a83828151811061150f57fe5b602002602001015160200151836113cb90919063ffffffff16565b9150600183828151811061153a57fe5b60200260200101516040019015159081151581525050604051806060016040528084838151811061156757fe5b602002602001015160000151815260200184838151811061158457fe5b60200260200101516020015181526020018483815181106115a157fe5b602002602001015160400151151581525060056000876001600160a01b03166001600160a01b0316815260200190815260200160002082815481106115e257fe5b60009182526020918290208351600392909202019081559082015160018201556040909101516002909101805460ff19169115159190911790555b6001016114b4565b506001600160a01b03841660009081526003602052604090205461164990826113cb565b6001600160a01b03851660009081526003602052604090205550600191505091905056fe526967656c546f6b656e3a2043616e6e6f7420686176652073656e646572206173207a65726f2061646472657373526967656c546f6b656e3a204f6e6c79204f776e65722063616e20706572666f726d2074686973207461736b526967656c546f6b656e3a2043616e6e6f74206861766520726563697069656e74206173207a65726f2061646472657373526967656c546f6b656e3a206275726e2066726f6d20746865207a65726f2061646472657373526967656c546f6b656e3a20617070726f766520746f20746865207a65726f2061646472657373526967656c546f6b656e3a20496e73756666696369656e7420756e6c6f636b656420746f6b656e73526967656c546f6b656e3a20436865636b20666f7220617070726f76656420746f6b656e20636f756e74206661696c656445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e6365526967656c546f6b656e3a206275726e20616d6f756e7420657863656564732062616c616e6365526967656c546f6b656e3a20546f6b656e20436f6e7472616374204f776e65727368697020686173206e6f74206265656e2073657420666f72207468652061646472657373a26469706673582212202a054078028a20b845e4c1b240d1e4fb29b792864994f05516a76149258db5e064736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004f86c4388ce9d7dbfaac5114e27f63903586841c
-----Decoded View---------------
Arg [0] : owner (address): 0x4F86C4388ce9d7dBfaac5114E27F63903586841C
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004f86c4388ce9d7dbfaac5114e27f63903586841c
Deployed Bytecode Sourcemap
11897:10500:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13038:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14924:318;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14924:318:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;13722:100;;;:::i;:::-;;;;;;;;;;;;;;;;15724:485;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15724:485:0;;;;;;;;;;;;;;;;;:::i;14067:124::-;;;;;;;;;;;;;;;;-1:-1:-1;14067:124:0;-1:-1:-1;;;;;14067:124:0;;:::i;13574:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13885:119;;;;;;;;;;;;;;;;-1:-1:-1;13885:119:0;-1:-1:-1;;;;;13885:119:0;;:::i;11548:277::-;;;:::i;:::-;;13240:87;;;:::i;18015:979::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18015:979:0;;;;;;;;:::i;14404:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14404:167:0;;;;;;;;:::i;11162:21::-;;;:::i;:::-;;;;-1:-1:-1;;;;;11162:21:0;;;;;;;;;;;;;;11190:24;;;:::i;19503:498::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19503:498:0;;;;;;;;;;;;;:::i;14634:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14634:143:0;;;;;;;;;;:::i;11439:101::-;;;;;;;;;;;;;;;;-1:-1:-1;11439:101:0;-1:-1:-1;;;;;11439:101:0;;:::i;13038:83::-;13108:5;13101:12;;;;;;;;-1:-1:-1;;13101:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13075:13;;13101:12;;13108:5;;13101:12;;13108:5;13101:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13038:83;:::o;14924:318::-;14999:4;-1:-1:-1;;;;;15034:21:0;;15026:73;;;;-1:-1:-1;;;15026:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15149:6;15112:11;:25;15124:12;:10;:12::i;:::-;-1:-1:-1;;;;;15112:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15112:25:0;;;:34;;;;;;;;;;;;:43;;;;15180:12;:10;:12::i;:::-;-1:-1:-1;;;;;15171:39:0;;15203:6;15171:39;;;;;;;;;;;;;;;;;;-1:-1:-1;15230:4:0;14924:318;;;;;:::o;13722:100::-;13802:12;;13722:100;:::o;15724:485::-;15822:4;15841:34;15851:6;15858:9;15868:6;15841:9;:34::i;:::-;-1:-1:-1;;;;;15906:19:0;;;;;;:11;:19;;;;;;15926:12;:10;:12::i;:::-;-1:-1:-1;;;;;15906:33:0;-1:-1:-1;;;;;15906:33:0;;;;;;;;;;;;;15896:6;:43;;15888:104;;;;-1:-1:-1;;;15888:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16049:19:0;;;;;;:11;:19;;;;;:45;;16087:6;;16049:19;16069:12;:10;:12::i;:::-;-1:-1:-1;;;;;16049:33:0;;;;;;;;;;;;-1:-1:-1;16049:33:0;;;:37;:45::i;:::-;-1:-1:-1;;;;;16013:19:0;;;;;;:11;:19;;;;;;16033:12;:10;:12::i;:::-;-1:-1:-1;;;;;16013:33:0;;;;;;;;;;;;-1:-1:-1;16013:33:0;:81;16129:12;:10;:12::i;:::-;-1:-1:-1;;;;;16112:65:0;;;16143:19;;;;:11;:19;;;;;16112:65;;;;;;;;;16143:19;16163:12;:10;:12::i;:::-;-1:-1:-1;;;;;16143:33:0;-1:-1:-1;;;;;16143:33:0;;;;;;;;;;;;;16112:65;;;;;;;;;;;;;;;;;;-1:-1:-1;16197:4:0;15724:485;;;;;:::o;14067:124::-;-1:-1:-1;;;;;14159:24:0;14132:7;14159:24;;;:15;:24;;;;;;;14067:124::o;13574:83::-;13640:9;;;;13574:83;:::o;13885:119::-;-1:-1:-1;;;;;13978:18:0;13951:7;13978:18;;;:9;:18;;;;;;;13885:119::o;11548:277::-;11617:9;;-1:-1:-1;;;;;11617:9:0;11601:12;:10;:12::i;:::-;-1:-1:-1;;;;;11601:25:0;;11593:107;;;;-1:-1:-1;;;11593:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11745:9;;;11737:6;;11716:39;;-1:-1:-1;;;;;11745:9:0;;;;11737:6;;;;11716:39;;;11775:9;;;;11766:18;;-1:-1:-1;;;;;;11766:18:0;;;-1:-1:-1;;;;;11775:9:0;;11766:18;;;;11795:22;;;11548:277::o;13240:87::-;13312:7;13305:14;;;;;;;;-1:-1:-1;;13305:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13279:13;;13305:14;;13312:7;;13305:14;;13312:7;13305:14;;;;;;;;;;;;;;;;;;;;;;;;18015:979;11356:6;;-1:-1:-1;;;;;11356:6:0;11340:12;:10;:12::i;:::-;-1:-1:-1;;;;;11340:22:0;;11332:79;;;;-1:-1:-1;;;11332:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18100:21:0;::::1;18092:72;;;;-1:-1:-1::0;;;18092:72:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;18203:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;;;;;18181:9:::1;:18:::0;;;;;;;:46:::1;18177:184;;;18270:79;18299:6;18270:79;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;18270:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;;;:79;:28:::1;:79::i;:::-;-1:-1:-1::0;;;;;18243:24:0;::::1;;::::0;;;:15:::1;:24;::::0;;;;:106;18177:184:::1;18394:73;18417:6;18394:73;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;18394:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;;:73;:22:::1;:73::i;:::-;-1:-1:-1::0;;;;;18373:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;:94;18495:12:::1;::::0;:24:::1;::::0;18512:6;18495:16:::1;:24::i;:::-;18480:12;:39:::0;18537:37:::1;::::0;;;;;;;18563:1:::1;::::0;-1:-1:-1;;;;;18537:37:0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;::::1;18601:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;18590:23:0::1;:7;-1:-1:-1::0;;;;;18590:23:0::1;;18587:400;;-1:-1:-1::0;;;;;18661:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;18682:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;18661:34:0::1;-1:-1:-1::0;;;;;18661:34:0::1;;;;;;;;;;;;;18651:6;:44;;18643:105;;;;-1:-1:-1::0;;;18643:105:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18802:86;18841:6;18802:86;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;18802:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;18823:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;18802:34:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;18802:34:0;;;:86;:38:::1;:86::i;:::-;-1:-1:-1::0;;;;;18765:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;18786:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;18765:34:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;18765:34:0;:123;18926:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;18908:67:0;;::::1;18940:20;::::0;;;:11:::1;:20;::::0;;;;18908:67;;;::::1;::::0;;;::::1;::::0;18940:20;18961:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;18940:34:0::1;-1:-1:-1::0;;;;;18940:34:0::1;;;;;;;;;;;;;18908:67;;;;;;;;;;;;;;;;;;18587:400;18015:979:::0;;:::o;14404:167::-;14482:4;14501:40;14511:12;:10;:12::i;:::-;14524:9;14534:6;14501:9;:40::i;:::-;-1:-1:-1;14559:4:0;14404:167;;;;:::o;11162:21::-;;;-1:-1:-1;;;;;11162:21:0;;:::o;11190:24::-;;;-1:-1:-1;;;;;11190:24:0;;:::o;19503:498::-;19603:12;11356:6;;-1:-1:-1;;;;;11356:6:0;11340:12;:10;:12::i;:::-;-1:-1:-1;;;;;11340:22:0;;11332:79;;;;-1:-1:-1;;;11332:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19715:18;19712:207:::1;;19748:34;19758:12;:10;:12::i;:::-;19771:2;19775:6;19748:9;:34::i;:::-;19712:207;;;19881:38;19895:12;:10;:12::i;:::-;19908:2;19912:6;19881:13;:38::i;:::-;19934:37;19945:2;19949:6;19957:13;19934:10;:37::i;:::-;-1:-1:-1::0;19989:4:0::1;19503:498:::0;;;;;:::o;14634:143::-;-1:-1:-1;;;;;14742:18:0;;;14715:7;14742:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14634:143::o;11439:101::-;11356:6;;-1:-1:-1;;;;;11356:6:0;11340:12;:10;:12::i;:::-;-1:-1:-1;;;;;11340:22:0;;11332:79;;;;-1:-1:-1;;;11332:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11512:9:::1;:20:::0;;-1:-1:-1;;;;;;11512:20:0::1;-1:-1:-1::0;;;;;11512:20:0;;;::::1;::::0;;;::::1;::::0;;11439:101::o;10675:106::-;10763:10;10675:106;:::o;16217:931::-;-1:-1:-1;;;;;16324:23:0;;16316:84;;;;-1:-1:-1;;;16316:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16419:20:0;;16411:78;;;;-1:-1:-1;;;16411:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16508:17:0;;;;;;:9;:17;;;;;;:27;-1:-1:-1;16508:27:0;16500:72;;;;;-1:-1:-1;;;16500:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16624:20:0;;;;;;:9;:20;;;;;;16591:29;;;:53;;16583:97;;;;;-1:-1:-1;;;16583:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16766:37;16788:6;16796;16766:21;:37::i;:::-;-1:-1:-1;;;;;;16840:23:0;;;;;;:15;:23;;;;;;:35;;16868:6;16840:27;:35::i;:::-;-1:-1:-1;;;;;16814:23:0;;;;;;;:15;:23;;;;;;:61;;;;16915:26;;;;;;;:38;;16946:6;16915:30;:38::i;:::-;-1:-1:-1;;;;;16886:26:0;;;;;;;:15;:26;;;;;;;;:67;;;;16986:17;;;;;:9;:17;;;;;:29;;17008:6;16986:21;:29::i;:::-;-1:-1:-1;;;;;16966:17:0;;;;;;;:9;:17;;;;;;:49;;;;17049:20;;;;;;;:32;;17074:6;17049:24;:32::i;:::-;-1:-1:-1;;;;;17026:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;17107:33;;;;;;;17026:20;;17107:33;;;;;;;;;;;;;16217:931;;;:::o;6084:136::-;6142:7;6169:43;6173:1;6176;6169:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;6162:50;6084:136;-1:-1:-1;;;6084:136:0:o;6523:192::-;6609:7;6645:12;6637:6;;;;6629:29;;;;-1:-1:-1;;;6629:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6681:5:0;;;6523:192::o;17156:728::-;-1:-1:-1;;;;;17267:23:0;;17259:84;;;;-1:-1:-1;;;17259:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17362:20:0;;17354:78;;;;-1:-1:-1;;;17354:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17451:17:0;;;;;;:9;:17;;;;;;:27;-1:-1:-1;17451:27:0;17443:72;;;;;-1:-1:-1;;;17443:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17567:20:0;;;;;;:9;:20;;;;;;17534:29;;;:53;;17526:97;;;;;-1:-1:-1;;;17526:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17656:17:0;;;;;;:9;:17;;;;;;:29;;17678:6;17656:21;:29::i;:::-;-1:-1:-1;;;;;17636:17:0;;;;;;;:9;:17;;;;;;:49;;;;17719:20;;;;;;;:32;;17744:6;17719:24;:32::i;:::-;-1:-1:-1;;;;;17696:20:0;;;;;;;:9;:20;;;;;;;;:55;;;;17790:23;;;;;:15;:23;;;;;:35;;17818:6;17790:27;:35::i;:::-;-1:-1:-1;;;;;17764:23:0;;;;;;;:15;:23;;;;;;;;;:61;;;;17843:33;;;;;;;;;;;17764:23;;17843:33;;;;;;;;;;;17156:728;;;:::o;20251:152::-;-1:-1:-1;;;;;20338:11:0;;;;;;;;:7;:11;;;;;;;;20355:39;;;;;;;;;;;;;;;;;;;;;;20338:57;;20355:39;20338:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;20338:57:0;;;;;;;;;;20251:152::o;20652:773::-;-1:-1:-1;;;;;20840:22:0;;20728:12;20840:22;;;:15;:22;;;;;;:32;-1:-1:-1;20837:581:0;;-1:-1:-1;20895:4:0;20888:11;;20837:581;21061:20;21075:5;21061:13;:20::i;:::-;-1:-1:-1;;;;;;21192:22:0;;;;;;:15;:22;;;;;;:32;-1:-1:-1;21189:218:0;;-1:-1:-1;21251:4:0;21244:11;;21189:218;21341:50;;-1:-1:-1;;;21341:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5620:181;5678:7;5710:5;;;5734:6;;;;5726:46;;;;;-1:-1:-1;;;5726:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;21658:728;-1:-1:-1;;;;;21773:16:0;;21715:12;21773:16;;;:7;:16;;;;;;;;21739:50;;;;;;;;;;;;;;;;;:31;;21715:12;;21739:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21800:26;21845:9;21841:430;21862:11;:18;21858:1;:22;21841:430;;;21935:3;21904:11;21916:1;21904:14;;;;;;;;;;;;;;:28;;;:34;:72;;;;;21942:11;21954:1;21942:14;;;;;;;;;;;;;;;;;;:25;;;:34;21904:72;21901:359;;;22017:45;22040:11;22052:1;22040:14;;;;;;;;;;;;;;:21;;;22017:18;:22;;:45;;;;:::i;:::-;21996:66;;22109:4;22081:11;22093:1;22081:14;;;;;;;;;;;;;;:25;;:32;;;;;;;;;;;22154:90;;;;;;;;22165:11;22177:1;22165:14;;;;;;;;;;;;;;:28;;;22154:90;;;;22195:11;22207:1;22195:14;;;;;;;;;;;;;;:21;;;22154:90;;;;22218:11;22230:1;22218:14;;;;;;;;;;;;;;:25;;;22154:90;;;;;22132:7;:16;22140:7;-1:-1:-1;;;;;22132:16:0;-1:-1:-1;;;;;22132:16:0;;;;;;;;;;;;22149:1;22132:19;;;;;;;;;;;;;;;;;:112;;:19;;;;;;:112;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;22132:112:0;;;;;;;;;;21901:359;21882:3;;21841:430;;;-1:-1:-1;;;;;;22308:24:0;;;;;;:15;:24;;;;;;:48;;22337:18;22308:28;:48::i;:::-;-1:-1:-1;;;;;22281:24:0;;;;;;:15;:24;;;;;:75;-1:-1:-1;22374:4:0;;-1:-1:-1;;21658:728:0;;;:::o
Swarm Source
ipfs://2a054078028a20b845e4c1b240d1e4fb29b792864994f05516a76149258db5e0
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)