Latest 25 from a total of 1,052 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 22432445 | 290 days ago | IN | 0 ETH | 0.00047093 | ||||
| Transfer | 22410997 | 293 days ago | IN | 0 ETH | 0.00019535 | ||||
| Transfer | 22362916 | 300 days ago | IN | 0 ETH | 0.00011518 | ||||
| Transfer | 22338286 | 303 days ago | IN | 0 ETH | 0.00022898 | ||||
| Transfer | 22337155 | 304 days ago | IN | 0 ETH | 0.00020469 | ||||
| Transfer | 22336577 | 304 days ago | IN | 0 ETH | 0.00023253 | ||||
| Transfer | 21556962 | 412 days ago | IN | 0 ETH | 0.00123073 | ||||
| Transfer | 20135462 | 611 days ago | IN | 0 ETH | 0.00189278 | ||||
| Approve | 19632461 | 681 days ago | IN | 0 ETH | 0.00080116 | ||||
| Approve | 19632459 | 681 days ago | IN | 0 ETH | 0.00068598 | ||||
| Approve | 19626379 | 682 days ago | IN | 0 ETH | 0.00107152 | ||||
| Transfer | 18748294 | 805 days ago | IN | 0 ETH | 0.00560876 | ||||
| Transfer | 18265122 | 873 days ago | IN | 0 ETH | 0.00184575 | ||||
| Transfer | 17857453 | 930 days ago | IN | 0 ETH | 0.00193136 | ||||
| Transfer | 16994366 | 1052 days ago | IN | 0 ETH | 0.00405255 | ||||
| Transfer | 16964594 | 1056 days ago | IN | 0 ETH | 0.00216451 | ||||
| Approve | 16809667 | 1078 days ago | IN | 0 ETH | 0.00117047 | ||||
| Transfer | 16587382 | 1109 days ago | IN | 0 ETH | 0.00575636 | ||||
| Transfer | 16478521 | 1124 days ago | IN | 0 ETH | 0.00321976 | ||||
| Transfer | 16399629 | 1135 days ago | IN | 0 ETH | 0.00302606 | ||||
| Transfer | 16396942 | 1135 days ago | IN | 0 ETH | 0.00156321 | ||||
| Transfer | 16266671 | 1154 days ago | IN | 0 ETH | 0.00180445 | ||||
| Transfer | 16264112 | 1154 days ago | IN | 0 ETH | 0.00119969 | ||||
| Transfer | 16264112 | 1154 days ago | IN | 0 ETH | 0.00120796 | ||||
| Transfer | 16263514 | 1154 days ago | IN | 0 ETH | 0.00120747 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 16266671 | 1154 days ago | 0.0062668 ETH | ||||
| Transfer | 16123733 | 1174 days ago | 0.00356632 ETH | ||||
| Transfer | 16123733 | 1174 days ago | 0.02836958 ETH | ||||
| Transfer | 15668897 | 1237 days ago | 0.00027023 ETH | ||||
| Transfer | 15661101 | 1238 days ago | 0.01039772 ETH | ||||
| Transfer | 15445302 | 1271 days ago | 0.00009413 ETH | ||||
| Transfer | 15445302 | 1271 days ago | 0.00619605 ETH | ||||
| Transfer | 15445299 | 1271 days ago | 0.0038192 ETH | ||||
| Transfer | 15445299 | 1271 days ago | 0.00003015 ETH | ||||
| Transfer | 15445299 | 1271 days ago | 0.10511621 ETH | ||||
| Transfer | 15445299 | 1271 days ago | 0.00086261 ETH | ||||
| Transfer | 15445299 | 1271 days ago | 0.11248163 ETH | ||||
| Transfer | 15445299 | 1271 days ago | 0.00756977 ETH | ||||
| Transfer | 15445291 | 1271 days ago | 0.00698969 ETH | ||||
| Transfer | 15445291 | 1271 days ago | 0.01816282 ETH | ||||
| Transfer | 15445291 | 1271 days ago | 0.0004003 ETH | ||||
| Transfer | 15445291 | 1271 days ago | 0.0155597 ETH | ||||
| Transfer | 15445291 | 1271 days ago | 0.01115742 ETH | ||||
| Transfer | 15445291 | 1271 days ago | 0.01126709 ETH | ||||
| Transfer | 15445291 | 1271 days ago | 0.03397777 ETH | ||||
| Transfer | 15445290 | 1271 days ago | 0.00018266 ETH | ||||
| Transfer | 15445290 | 1271 days ago | 0.01470077 ETH | ||||
| Transfer | 15445290 | 1271 days ago | 0.01591114 ETH | ||||
| Transfer | 15445290 | 1271 days ago | 0.09348294 ETH | ||||
| Transfer | 15445290 | 1271 days ago | 0.0711414 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
EHashToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity Multiple files format)Audit Report
// SPDX-License-Identifier: MIT
// 🅴🅷🅰🆂🅷
pragma solidity 0.6.12;
import "./ehash_library.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public 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 {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
/**
* @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 {ERC20PresetMinterPauser}.
*
* 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 ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
string public name;
string public symbol;
uint8 public decimals;
uint256 private _totalSupply;
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public 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((allowance(_msgSender(), spender) == 0) || (amount == 0), "ERC20: change allowance use increaseAllowance or decreaseAllowance instead");
_approve(_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);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][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(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor () internal {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!_paused, "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(_paused, "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
/**
* @dev EHashBaseToken is the ERC20 extension aspect of EHash
*/
contract EHashBaseToken is ERC20, Pausable, Ownable {
/**
* @dev Initialize the contract give all tokens to the deployer
*/
constructor(string memory _name, string memory _symbol, uint8 _decimals, uint256 _initialSupply) public {
name = _name;
symbol = _symbol;
decimals = _decimals;
_mint(_msgSender(), _initialSupply * (10 ** uint256(_decimals)));
}
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public {
_burn(_msgSender(), 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) public onlyOwner {
_mint(account,amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public {
uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "EHashToken: burn amount exceeds allowance");
_approve(account, _msgSender(), decreasedAllowance);
_burn(account, amount);
}
/**
* @dev Triggers stopped state.
* @notice only Owner call
*/
function pause() public onlyOwner {
_pause();
}
/**
* @dev Returns to normal state.
* @notice only Owner call
*/
function unpause() public onlyOwner {
_unpause();
}
/**
* @dev Batch transfer amount to recipient
* @notice that excessive gas consumption causes transaction revert
*/
function batchTransfer(address[] memory recipients, uint256[] memory amounts) public {
require(recipients.length > 0, "EHashToken: least one recipient address");
require(recipients.length == amounts.length, "EHashToken: number of recipient addresses does not match the number of tokens");
for(uint256 i = 0; i < recipients.length; ++i) {
_transfer(_msgSender(), recipients[i], amounts[i]);
}
}
}
/**
* @dev EHashToken implements EHash mining
*/
contract EHashToken is EHashBaseToken {
using SafeMath for uint256;
using Address for address payable;
// @dev a revenue share multiplier to avert divison downflow.
uint256 internal constant REVENUE_SHARE_MULTIPLIER = 1e18;
// @dev update period in secs for revenue distribution.
uint256 public updatePeriod = 30;
// @dev for tracking of holders' claimed revenue.
mapping (address => uint256) internal _revenueClaimed;
/// @dev RoundData always kept for each round.
struct RoundData {
uint256 accTokenShare; // accumulated unit ehash share for each settlement.
uint256 roundEthers; // total ethers received in this round.
}
/// @dev round index mapping to RoundData.
mapping (uint => RoundData) private _rounds;
/// @dev mark token holders' highest settled revenue round.
mapping (address => uint) private _settledRevenueRounds;
/// @dev a monotonic increasing round index, STARTS FROM 1
uint private _currentRound = 1;
/// @dev expected next update time
uint private _nextUpdate = block.timestamp + updatePeriod;
/// @dev manager's address
address payable managerAddress;
/// @dev Revenue Claiming log
event Claim(address indexed account, uint256 amount);
/// @dev Received log
event Received(address indexed account, uint256 amount);
/// @dev known addresss
address payable [] public knownAddresses;
constructor(string memory _name, string memory _symbol, uint8 _decimals, uint256 _initialSupply)
EHashBaseToken(_name, _symbol, _decimals, _initialSupply)
public {
}
// @dev tryUpdate function
modifier tryUpdate() {
if (block.timestamp > _nextUpdate) {
update();
}
_;
}
/**
* @notice set manager's address
*/
function setManagerAddress(address payable account) external onlyOwner {
require (account != address(0), "0 address");
managerAddress = account;
}
/**
* @notice set update period
*/
function setUpdatePeriod(uint nsecs) external onlyOwner {
require (nsecs > 0," period should be positive");
updatePeriod = nsecs;
}
/**
* @notice set known address
*/
function setKnownAddress(address payable account) external onlyOwner {
removeKnownAddress(account);
knownAddresses.push(account);
}
/**
* @notice remove known address
*/
function removeKnownAddress(address payable account) public onlyOwner {
for (uint i=0; i<knownAddresses.length; i++) {
if (knownAddresses[i] == account) {
knownAddresses[i] = knownAddresses[knownAddresses.length-1];
knownAddresses.pop();
return;
}
}
}
/**
* @notice get manager's address
*/
function getManagerAddress() external view returns(address) {
return managerAddress;
}
/**
* @notice default ether receiving function
*/
receive() external payable tryUpdate {
_rounds[_currentRound].roundEthers += msg.value;
}
/**
* @notice check unclaimed revenue
*/
function checkUnclaimedRevenue(address account) public view returns(uint256 revenue) {
uint256 accountTokens = balanceOf(account);
uint lastSettledRound = _settledRevenueRounds[account];
uint256 roundRevenue = _rounds[_currentRound-1].accTokenShare.sub(_rounds[lastSettledRound].accTokenShare)
.mul(accountTokens)
.div(REVENUE_SHARE_MULTIPLIER); // NOTE: div by REVENUE_SHARE_MULTIPLIER
return roundRevenue;
}
/**
* @notice get user's life-time gain
*/
function checkTotalRevenue(address account) external view returns(uint256 revenue) {
return checkUnclaimedRevenue(account) + _revenueClaimed[account];
}
/**
* @notice get round N information
*/
function getRoundData(uint round) external view returns(uint256 accTokenShare, uint256 roundEthers) {
return (_rounds[round].accTokenShare, _rounds[round].roundEthers);
}
/**
* @notice get current round
*/
function getCurrentRound() external view returns(uint round) {
return _currentRound;
}
/**
* @notice token holders claim revenue
*/
function claim() external whenNotPaused tryUpdate {
_claimInternal(msg.sender);
}
/**
* @dev internal claim function
*/
function _claimInternal(address payable account) internal {
uint256 accountTokens = balanceOf(account);
uint lastSettledRound = _settledRevenueRounds[account];
uint newSettledRound = _currentRound-1;
uint256 roundRevenue = _rounds[newSettledRound].accTokenShare.sub(_rounds[lastSettledRound].accTokenShare)
.mul(accountTokens)
.div(REVENUE_SHARE_MULTIPLIER); // NOTE: div by REVENUE_SHARE_MULTIPLIER
// mark highest settled round revenue claimed.
_settledRevenueRounds[account] = newSettledRound;
if (roundRevenue > 0) {
// record claimed revenue
_revenueClaimed[account] += roundRevenue;
// transfer ETH to account;
account.sendValue(roundRevenue);
}
}
/**
* @dev See {ERC20-_beforeTokenTransfer}.
*
* Requirements:
*
* - the contract must not be paused.
* - accounts must not trigger the locked `amount` during the locked period.
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal override tryUpdate {
require(!paused(), "EHash: token transfer while paused");
// handle revenue settlement before token number changes.
if (from != address(0)) {
_claimInternal(payable(from));
}
if (to != address(0)) {
_claimInternal(payable(to));
}
super._beforeTokenTransfer(from, to, amount);
}
/**
* @dev update function to settle rounds shifting and rounds share.
*/
function update() internal {
// rules:
// 80% of ethers in this round belongs to all token holders
// roundEthers * 80% / totalSupply()
// and, 20% of ethers belongs to manager
uint currentRound = _currentRound;
uint256 roundEthers = _rounds[currentRound].roundEthers;
uint256 managerRevenue = roundEthers.mul(20).div(100);
uint256 holdersEthers = roundEthers.sub(managerRevenue);
// set accmulated holder's share
_rounds[currentRound].accTokenShare = _rounds[currentRound-1].accTokenShare
.add(
holdersEthers
.mul(REVENUE_SHARE_MULTIPLIER) // NOTE: multiplied by REVENUE_SHARE_MULTIPLIER here
.div(totalSupply())
);
// next round setting
_currentRound++;
_nextUpdate += updatePeriod;
// send to manager at last
managerAddress.sendValue(managerRevenue);
// send to known addreses
uint numAddresses = knownAddresses.length;
for (uint i=0; i<numAddresses; i++) {
_claimInternal(knownAddresses[i]);
}
}
/**
* @notice get next update time
*/
function getNextUpdateTime() external view returns (uint) {
return _nextUpdate;
}
}
// SPDX-License-Identifier: MIT
// 🅴🅷🅰🆂🅷
pragma solidity ^0.6.12;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*
* _Available since v2.4.0._
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*
* _Available since v2.4.0._
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*
* _Available since v2.4.0._
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.3._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.3._
*/
function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
library SafeERC20 {
using SafeMath for uint256;
using Address for address;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
// solhint-disable-next-line max-line-length
require((value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).add(value);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
library Strings {
/**
* @dev Converts a `uint256` to its ASCII `string` representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
uint256 index = digits - 1;
temp = value;
while (temp != 0) {
buffer[index--] = byte(uint8(48 + temp % 10));
temp /= 10;
}
return string(buffer);
}
}
abstract contract ReentrancyGuard {
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor () public {
_status = _NOT_ENTERED;
}
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}Contract Security Audit
- Beosin - February 23rd, 2021 - Security Audit Report
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"uint256","name":"_initialSupply","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":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Received","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"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":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"batchTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"checkTotalRevenue","outputs":[{"internalType":"uint256","name":"revenue","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"checkUnclaimedRevenue","outputs":[{"internalType":"uint256","name":"revenue","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCurrentRound","outputs":[{"internalType":"uint256","name":"round","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getManagerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"round","type":"uint256"}],"name":"getRoundData","outputs":[{"internalType":"uint256","name":"accTokenShare","type":"uint256"},{"internalType":"uint256","name":"roundEthers","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"knownAddresses","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"removeKnownAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"setKnownAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"setManagerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nsecs","type":"uint256"}],"name":"setUpdatePeriod","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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updatePeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
6080604052601e6007556001600b556007544201600c553480156200002357600080fd5b5060405162002e8f38038062002e8f833981810160405260808110156200004957600080fd5b81019080805160405193929190846401000000008211156200006a57600080fd5b9083019060208201858111156200008057600080fd5b82516401000000008111828201881017156200009b57600080fd5b82525081516020918201929091019080838360005b83811015620000ca578181015183820152602001620000b0565b50505050905090810190601f168015620000f85780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011c57600080fd5b9083019060208201858111156200013257600080fd5b82516401000000008111828201881017156200014d57600080fd5b82525081516020918201929091019080838360005b838110156200017c57818101518382015260200162000162565b50505050905090810190601f168015620001aa5780820380516001836020036101000a031916815260200191505b50604090815260208201519101516006805460ff191690559092509050838383836000620001d762000293565b60068054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35083516200024290600290602087019062000a19565b5082516200025890600390602086019062000a19565b506004805460ff191660ff8416179055620002856200027662000293565b60ff8416600a0a830262000297565b505050505050505062000ab5565b3390565b6001600160a01b038216620002f3576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200030160008383620003a6565b6200031d816005546200045660201b620016691790919060201c565b6005556001600160a01b03821660009081526020818152604090912054620003509183906200166962000456821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600c54421115620003bb57620003bb620004ba565b620003c562000620565b15620004035760405162461bcd60e51b815260040180806020018281038252602281526020018062002e126022913960400191505060405180910390fd5b6001600160a01b038316156200041e576200041e8362000629565b6001600160a01b038216156200043957620004398262000629565b620004518383836200045160201b62000f8b1760201c565b505050565b600082820183811015620004b1576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b600b54600081815260096020908152604082206001015491906200050890606490620004f4908590601490620016ca62000718821b17901c565b6200077660201b620017231790919060201c565b90506000620005268284620007c060201b620017651790919060201c565b9050620005846200055c6200053a6200080a565b620004f4670de0b6b3a7640000856200071860201b620016ca1790919060201c565b600019860160009081526009602090815260409091205491906200166962000456821b17901c565b600085815260096020908152604090912091909155600b80546001019055600754600c80549091019055600d54620005d3916001600160a01b03909116908490620017a762000810821b17901c565b600e5460005b8181101562000618576200060f600e8281548110620005f457fe5b6000918252602090912001546001600160a01b031662000629565b600101620005d9565b505050505050565b60065460ff1690565b60006200063682620008fa565b6001600160a01b0383166000908152600a6020908152604080832054600b548185526009845282852054600019909101808652928520549596509094919392620006b592670de0b6b3a764000092620004f4928992620006a192909162001765620007c0821b17901c565b6200071860201b620016ca1790919060201c565b6001600160a01b0386166000908152600a602052604090208390559050801562000711576001600160a01b03851660008181526008602090815260409091208054840190556200071191908390620017a762000810821b17901c565b5050505050565b6000826200072957506000620004b4565b828202828482816200073757fe5b0414620004b15760405162461bcd60e51b815260040180806020018281038252602181526020018062002e6e6021913960400191505060405180910390fd5b6000620004b183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200091560201b60201c565b6000620004b183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250620009bc60201b60201c565b60055490565b8047101562000866576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015290519081900360640190fd5b6040516000906001600160a01b0384169083908381818185875af1925050503d8060008114620008b3576040519150601f19603f3d011682016040523d82523d6000602084013e620008b8565b606091505b5050905080620004515760405162461bcd60e51b815260040180806020018281038252603a81526020018062002e34603a913960400191505060405180910390fd5b6001600160a01b031660009081526020819052604090205490565b60008183620009a55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620009695781810151838201526020016200094f565b50505050905090810190601f168015620009975780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581620009b257fe5b0495945050505050565b6000818484111562000a115760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315620009695781810151838201526020016200094f565b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000a5c57805160ff191683800117855562000a8c565b8280016001018555821562000a8c579182015b8281111562000a8c57825182559160200191906001019062000a6f565b5062000a9a92915062000a9e565b5090565b5b8082111562000a9a576000815560010162000a9f565b61234d8062000ac56000396000f3fe6080604052600436106101fd5760003560e01c80638456cb591161010d578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e1461085a578063e55fae7714610895578063e829f95b146108bf578063f2fde38b146108f2578063ff4f17da1461092557610230565b8063a9059cbb146107af578063bfb4cb2c146107e8578063c162d7da1461081b578063cc7aa9151461083057610230565b8063966fa490116100dc578063966fa49014610719578063a32bf5971461074c578063a457c2d714610761578063a83627de1461079a57610230565b80638456cb591461058a57806388d695b21461059f5780638da5cb5b146106d357806395d89b411461070457610230565b806340c10f19116101905780635c975abb1161015f5780635c975abb146104df57806370a08231146104f4578063715018a6146105275780637696a0151461053c57806379cc67901461055157610230565b806340c10f1914610434578063414319081461046d57806342966c68146104a05780634e71d92d146104ca57610230565b806323b872dd116101cc57806323b872dd14610376578063313ce567146103b957806339509351146103e45780633f4ba83a1461041d57610230565b806306fdde03146102355780630720da52146102bf578063095ea7b31461030257806318160ddd1461034f57610230565b3661023057600c5442111561021457610214610958565b600b546000908152600960205260409020600101805434019055005b600080fd5b34801561024157600080fd5b5061024a610a50565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028457818101518382015260200161026c565b50505050905090810190601f1680156102b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102cb57600080fd5b506102e9600480360360208110156102e257600080fd5b5035610adb565b6040805192835260208301919091528051918290030190f35b34801561030e57600080fd5b5061033b6004803603604081101561032557600080fd5b506001600160a01b038135169060200135610af5565b604080519115158252519081900360200190f35b34801561035b57600080fd5b50610364610b69565b60408051918252519081900360200190f35b34801561038257600080fd5b5061033b6004803603606081101561039957600080fd5b506001600160a01b03813581169160208101359091169060400135610b6f565b3480156103c557600080fd5b506103ce610bf6565b6040805160ff9092168252519081900360200190f35b3480156103f057600080fd5b5061033b6004803603604081101561040757600080fd5b506001600160a01b038135169060200135610bff565b34801561042957600080fd5b50610432610c4d565b005b34801561044057600080fd5b506104326004803603604081101561045757600080fd5b506001600160a01b038135169060200135610cb4565b34801561047957600080fd5b506104326004803603602081101561049057600080fd5b50356001600160a01b0316610d1f565b3480156104ac57600080fd5b50610432600480360360208110156104c357600080fd5b5035610de5565b3480156104d657600080fd5b50610432610df9565b3480156104eb57600080fd5b5061033b610e5f565b34801561050057600080fd5b506103646004803603602081101561051757600080fd5b50356001600160a01b0316610e68565b34801561053357600080fd5b50610432610e83565b34801561054857600080fd5b50610364610f30565b34801561055d57600080fd5b506104326004803603604081101561057457600080fd5b506001600160a01b038135169060200135610f36565b34801561059657600080fd5b50610432610f90565b3480156105ab57600080fd5b50610432600480360360408110156105c257600080fd5b8101906020810181356401000000008111156105dd57600080fd5b8201836020820111156105ef57600080fd5b8035906020019184602083028401116401000000008311171561061157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561066157600080fd5b82018360208201111561067357600080fd5b8035906020019184602083028401116401000000008311171561069557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610ff5945050505050565b3480156106df57600080fd5b506106e86110c1565b604080516001600160a01b039092168252519081900360200190f35b34801561071057600080fd5b5061024a6110d5565b34801561072557600080fd5b506103646004803603602081101561073c57600080fd5b50356001600160a01b0316611130565b34801561075857600080fd5b506103646111a2565b34801561076d57600080fd5b5061033b6004803603604081101561078457600080fd5b506001600160a01b0381351690602001356111a8565b3480156107a657600080fd5b50610364611210565b3480156107bb57600080fd5b5061033b600480360360408110156107d257600080fd5b506001600160a01b038135169060200135611216565b3480156107f457600080fd5b506104326004803603602081101561080b57600080fd5b50356001600160a01b031661122a565b34801561082757600080fd5b506106e86112e2565b34801561083c57600080fd5b506106e86004803603602081101561085357600080fd5b50356112f1565b34801561086657600080fd5b506103646004803603604081101561087d57600080fd5b506001600160a01b0381358116916020013516611318565b3480156108a157600080fd5b50610432600480360360208110156108b857600080fd5b5035611343565b3480156108cb57600080fd5b50610364600480360360208110156108e257600080fd5b50356001600160a01b03166113fa565b3480156108fe57600080fd5b506104326004803603602081101561091557600080fd5b50356001600160a01b0316611423565b34801561093157600080fd5b506104326004803603602081101561094857600080fd5b50356001600160a01b031661152c565b600b5460008181526009602052604081206001015490610984606461097e8460146116ca565b90611723565b905060006109928383611765565b90506109ce6109b46109a2610b69565b61097e84670de0b6b3a76400006116ca565b600019860160009081526009602052604090205490611669565b600085815260096020526040902055600b80546001019055600754600c80549091019055600d54610a08906001600160a01b0316836117a7565b600e5460005b81811015610a4857610a40600e8281548110610a2657fe5b6000918252602090912001546001600160a01b031661188c565b600101610a0e565b505050505050565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610ad35780601f10610aa857610100808354040283529160200191610ad3565b820191906000526020600020905b815481529060010190602001808311610ab657829003601f168201915b505050505081565b600090815260096020526040902080546001909101549091565b6000610b08610b02611946565b84611318565b1580610b12575081155b610b4d5760405162461bcd60e51b815260040180806020018281038252604a8152602001806122a9604a913960600191505060405180910390fd5b610b5f610b58611946565b848461194a565b5060015b92915050565b60055490565b6000610b7c848484611a36565b610bec84610b88611946565b610be7856040518060600160405280602881526020016121ce602891396001600160a01b038a16600090815260016020526040812090610bc6611946565b6001600160a01b031681526020810191909152604001600020549190611b91565b61194a565b5060019392505050565b60045460ff1681565b6000610b5f610c0c611946565b84610be78560016000610c1d611946565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611669565b610c55611946565b60065461010090046001600160a01b03908116911614610caa576040805162461bcd60e51b815260206004820181905260248201526000805160206121f6833981519152604482015290519081900360640190fd5b610cb2611c28565b565b610cbc611946565b60065461010090046001600160a01b03908116911614610d11576040805162461bcd60e51b815260206004820181905260248201526000805160206121f6833981519152604482015290519081900360640190fd5b610d1b8282611cc6565b5050565b610d27611946565b60065461010090046001600160a01b03908116911614610d7c576040805162461bcd60e51b815260206004820181905260248201526000805160206121f6833981519152604482015290519081900360640190fd5b6001600160a01b038116610dc3576040805162461bcd60e51b815260206004820152600960248201526830206164647265737360b81b604482015290519081900360640190fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b610df6610df0611946565b82611db6565b50565b60065460ff1615610e44576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600c54421115610e5657610e56610958565b610cb23361188c565b60065460ff1690565b6001600160a01b031660009081526020819052604090205490565b610e8b611946565b60065461010090046001600160a01b03908116911614610ee0576040805162461bcd60e51b815260206004820181905260248201526000805160206121f6833981519152604482015290519081900360640190fd5b60065460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360068054610100600160a81b0319169055565b600c5490565b6000610f6d8260405180606001604052806029815260200161228060299139610f6686610f61611946565b611318565b9190611b91565b9050610f8183610f7b611946565b8361194a565b610f8b8383611db6565b505050565b610f98611946565b60065461010090046001600160a01b03908116911614610fed576040805162461bcd60e51b815260206004820181905260248201526000805160206121f6833981519152604482015290519081900360640190fd5b610cb2611eb2565b60008251116110355760405162461bcd60e51b815260040180806020018281038252602781526020018061206f6027913960400191505060405180910390fd5b80518251146110755760405162461bcd60e51b815260040180806020018281038252604d815260200180612096604d913960600191505060405180910390fd5b60005b8251811015610f8b576110b961108c611946565b84838151811061109857fe5b60200260200101518484815181106110ac57fe5b6020026020010151611a36565b600101611078565b60065461010090046001600160a01b031690565b6003805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610ad35780601f10610aa857610100808354040283529160200191610ad3565b60008061113c83610e68565b6001600160a01b0384166000908152600a6020908152604080832054808452600990925280832054600b5460001901845290832054939450909261119991670de0b6b3a76400009161097e91879161119391611765565b906116ca565b95945050505050565b600b5490565b6000610b5f6111b5611946565b84610be7856040518060600160405280602581526020016122f360259139600160006111df611946565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b91565b60075481565b6000610b5f611223611946565b8484611a36565b611232611946565b60065461010090046001600160a01b03908116911614611287576040805162461bcd60e51b815260206004820181905260248201526000805160206121f6833981519152604482015290519081900360640190fd5b6112908161152c565b600e80546001810182556000919091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319166001600160a01b0392909216919091179055565b600d546001600160a01b031690565b600e81815481106112fe57fe5b6000918252602090912001546001600160a01b0316905081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61134b611946565b60065461010090046001600160a01b039081169116146113a0576040805162461bcd60e51b815260206004820181905260248201526000805160206121f6833981519152604482015290519081900360640190fd5b600081116113f5576040805162461bcd60e51b815260206004820152601a60248201527f20706572696f642073686f756c6420626520706f736974697665000000000000604482015290519081900360640190fd5b600755565b6001600160a01b03811660009081526008602052604081205461141c83611130565b0192915050565b61142b611946565b60065461010090046001600160a01b03908116911614611480576040805162461bcd60e51b815260206004820181905260248201526000805160206121f6833981519152604482015290519081900360640190fd5b6001600160a01b0381166114c55760405162461bcd60e51b81526004018080602001828103825260268152602001806120e36026913960400191505060405180910390fd5b6006546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b611534611946565b60065461010090046001600160a01b03908116911614611589576040805162461bcd60e51b815260206004820181905260248201526000805160206121f6833981519152604482015290519081900360640190fd5b60005b600e54811015610d1b57816001600160a01b0316600e82815481106115ad57fe5b6000918252602090912001546001600160a01b0316141561166157600e805460001981019081106115da57fe5b600091825260209091200154600e80546001600160a01b03909216918390811061160057fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600e80548061163957fe5b600082815260209020810160001990810180546001600160a01b031916905501905550610df6565b60010161158c565b6000828201838110156116c3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000826116d957506000610b63565b828202828482816116e657fe5b04146116c35760405162461bcd60e51b81526004018080602001828103825260218152602001806121ad6021913960400191505060405180910390fd5b60006116c383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f33565b60006116c383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b91565b804710156117fc576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015290519081900360640190fd5b6040516000906001600160a01b0384169083908381818185875af1925050503d8060008114611847576040519150601f19603f3d011682016040523d82523d6000602084013e61184c565b606091505b5050905080610f8b5760405162461bcd60e51b815260040180806020018281038252603a815260200180612173603a913960400191505060405180910390fd5b600061189782610e68565b6001600160a01b0383166000908152600a6020908152604080832054600b5481855260099093528184205460001990930180855291842054949550939092916118f491670de0b6b3a76400009161097e9188916111939190611765565b6001600160a01b0386166000908152600a602052604090208390559050801561193f576001600160a01b038516600081815260086020526040902080548301905561193f90826117a7565b5050505050565b3390565b6001600160a01b03831661198f5760405162461bcd60e51b815260040180806020018281038252602481526020018061225c6024913960400191505060405180910390fd5b6001600160a01b0382166119d45760405162461bcd60e51b81526004018080602001828103825260228152602001806121096022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611a7b5760405162461bcd60e51b81526004018080602001828103825260258152602001806122376025913960400191505060405180910390fd5b6001600160a01b038216611ac05760405162461bcd60e51b815260040180806020018281038252602381526020018061202a6023913960400191505060405180910390fd5b611acb838383611f98565b611b088160405180606001604052806026815260200161214d602691396001600160a01b0386166000908152602081905260409020549190611b91565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611b379082611669565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611c205760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611be5578181015183820152602001611bcd565b50505050905090810190601f168015611c125780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60065460ff16611c76576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611ca9611946565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b038216611d21576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611d2d60008383611f98565b600554611d3a9082611669565b6005556001600160a01b038216600090815260208190526040902054611d609082611669565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611dfb5760405162461bcd60e51b81526004018080602001828103825260218152602001806122166021913960400191505060405180910390fd5b611e0782600083611f98565b611e448160405180606001604052806022815260200161204d602291396001600160a01b0385166000908152602081905260409020549190611b91565b6001600160a01b038316600090815260208190526040902055600554611e6a9082611765565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60065460ff1615611efd576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ca9611946565b60008183611f825760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611be5578181015183820152602001611bcd565b506000838581611f8e57fe5b0495945050505050565b600c54421115611faa57611faa610958565b611fb2610e5f565b15611fee5760405162461bcd60e51b815260040180806020018281038252602281526020018061212b6022913960400191505060405180910390fd5b6001600160a01b03831615612006576120068361188c565b6001600160a01b0382161561201e5761201e8261188c565b610f8b838383610f8b56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654548617368546f6b656e3a206c65617374206f6e6520726563697069656e7420616464726573734548617368546f6b656e3a206e756d626572206f6620726563697069656e742061646472657373657320646f6573206e6f74206d6174636820746865206e756d626572206f6620746f6b656e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345486173683a20746f6b656e207472616e73666572207768696c652070617573656445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734548617368546f6b656e3a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206368616e676520616c6c6f77616e63652075736520696e637265617365416c6c6f77616e6365206f72206465637265617365416c6c6f77616e636520696e737465616445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122062c85658131b2eddec49897bf4594629359fa7636129e591f73fb66c790a606064736f6c634300060c003345486173683a20746f6b656e207472616e73666572207768696c6520706175736564416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000001312d00000000000000000000000000000000000000000000000000000000000000000b454861736820546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054548415348000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c80638456cb591161010d578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e1461085a578063e55fae7714610895578063e829f95b146108bf578063f2fde38b146108f2578063ff4f17da1461092557610230565b8063a9059cbb146107af578063bfb4cb2c146107e8578063c162d7da1461081b578063cc7aa9151461083057610230565b8063966fa490116100dc578063966fa49014610719578063a32bf5971461074c578063a457c2d714610761578063a83627de1461079a57610230565b80638456cb591461058a57806388d695b21461059f5780638da5cb5b146106d357806395d89b411461070457610230565b806340c10f19116101905780635c975abb1161015f5780635c975abb146104df57806370a08231146104f4578063715018a6146105275780637696a0151461053c57806379cc67901461055157610230565b806340c10f1914610434578063414319081461046d57806342966c68146104a05780634e71d92d146104ca57610230565b806323b872dd116101cc57806323b872dd14610376578063313ce567146103b957806339509351146103e45780633f4ba83a1461041d57610230565b806306fdde03146102355780630720da52146102bf578063095ea7b31461030257806318160ddd1461034f57610230565b3661023057600c5442111561021457610214610958565b600b546000908152600960205260409020600101805434019055005b600080fd5b34801561024157600080fd5b5061024a610a50565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028457818101518382015260200161026c565b50505050905090810190601f1680156102b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102cb57600080fd5b506102e9600480360360208110156102e257600080fd5b5035610adb565b6040805192835260208301919091528051918290030190f35b34801561030e57600080fd5b5061033b6004803603604081101561032557600080fd5b506001600160a01b038135169060200135610af5565b604080519115158252519081900360200190f35b34801561035b57600080fd5b50610364610b69565b60408051918252519081900360200190f35b34801561038257600080fd5b5061033b6004803603606081101561039957600080fd5b506001600160a01b03813581169160208101359091169060400135610b6f565b3480156103c557600080fd5b506103ce610bf6565b6040805160ff9092168252519081900360200190f35b3480156103f057600080fd5b5061033b6004803603604081101561040757600080fd5b506001600160a01b038135169060200135610bff565b34801561042957600080fd5b50610432610c4d565b005b34801561044057600080fd5b506104326004803603604081101561045757600080fd5b506001600160a01b038135169060200135610cb4565b34801561047957600080fd5b506104326004803603602081101561049057600080fd5b50356001600160a01b0316610d1f565b3480156104ac57600080fd5b50610432600480360360208110156104c357600080fd5b5035610de5565b3480156104d657600080fd5b50610432610df9565b3480156104eb57600080fd5b5061033b610e5f565b34801561050057600080fd5b506103646004803603602081101561051757600080fd5b50356001600160a01b0316610e68565b34801561053357600080fd5b50610432610e83565b34801561054857600080fd5b50610364610f30565b34801561055d57600080fd5b506104326004803603604081101561057457600080fd5b506001600160a01b038135169060200135610f36565b34801561059657600080fd5b50610432610f90565b3480156105ab57600080fd5b50610432600480360360408110156105c257600080fd5b8101906020810181356401000000008111156105dd57600080fd5b8201836020820111156105ef57600080fd5b8035906020019184602083028401116401000000008311171561061157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561066157600080fd5b82018360208201111561067357600080fd5b8035906020019184602083028401116401000000008311171561069557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610ff5945050505050565b3480156106df57600080fd5b506106e86110c1565b604080516001600160a01b039092168252519081900360200190f35b34801561071057600080fd5b5061024a6110d5565b34801561072557600080fd5b506103646004803603602081101561073c57600080fd5b50356001600160a01b0316611130565b34801561075857600080fd5b506103646111a2565b34801561076d57600080fd5b5061033b6004803603604081101561078457600080fd5b506001600160a01b0381351690602001356111a8565b3480156107a657600080fd5b50610364611210565b3480156107bb57600080fd5b5061033b600480360360408110156107d257600080fd5b506001600160a01b038135169060200135611216565b3480156107f457600080fd5b506104326004803603602081101561080b57600080fd5b50356001600160a01b031661122a565b34801561082757600080fd5b506106e86112e2565b34801561083c57600080fd5b506106e86004803603602081101561085357600080fd5b50356112f1565b34801561086657600080fd5b506103646004803603604081101561087d57600080fd5b506001600160a01b0381358116916020013516611318565b3480156108a157600080fd5b50610432600480360360208110156108b857600080fd5b5035611343565b3480156108cb57600080fd5b50610364600480360360208110156108e257600080fd5b50356001600160a01b03166113fa565b3480156108fe57600080fd5b506104326004803603602081101561091557600080fd5b50356001600160a01b0316611423565b34801561093157600080fd5b506104326004803603602081101561094857600080fd5b50356001600160a01b031661152c565b600b5460008181526009602052604081206001015490610984606461097e8460146116ca565b90611723565b905060006109928383611765565b90506109ce6109b46109a2610b69565b61097e84670de0b6b3a76400006116ca565b600019860160009081526009602052604090205490611669565b600085815260096020526040902055600b80546001019055600754600c80549091019055600d54610a08906001600160a01b0316836117a7565b600e5460005b81811015610a4857610a40600e8281548110610a2657fe5b6000918252602090912001546001600160a01b031661188c565b600101610a0e565b505050505050565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610ad35780601f10610aa857610100808354040283529160200191610ad3565b820191906000526020600020905b815481529060010190602001808311610ab657829003601f168201915b505050505081565b600090815260096020526040902080546001909101549091565b6000610b08610b02611946565b84611318565b1580610b12575081155b610b4d5760405162461bcd60e51b815260040180806020018281038252604a8152602001806122a9604a913960600191505060405180910390fd5b610b5f610b58611946565b848461194a565b5060015b92915050565b60055490565b6000610b7c848484611a36565b610bec84610b88611946565b610be7856040518060600160405280602881526020016121ce602891396001600160a01b038a16600090815260016020526040812090610bc6611946565b6001600160a01b031681526020810191909152604001600020549190611b91565b61194a565b5060019392505050565b60045460ff1681565b6000610b5f610c0c611946565b84610be78560016000610c1d611946565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611669565b610c55611946565b60065461010090046001600160a01b03908116911614610caa576040805162461bcd60e51b815260206004820181905260248201526000805160206121f6833981519152604482015290519081900360640190fd5b610cb2611c28565b565b610cbc611946565b60065461010090046001600160a01b03908116911614610d11576040805162461bcd60e51b815260206004820181905260248201526000805160206121f6833981519152604482015290519081900360640190fd5b610d1b8282611cc6565b5050565b610d27611946565b60065461010090046001600160a01b03908116911614610d7c576040805162461bcd60e51b815260206004820181905260248201526000805160206121f6833981519152604482015290519081900360640190fd5b6001600160a01b038116610dc3576040805162461bcd60e51b815260206004820152600960248201526830206164647265737360b81b604482015290519081900360640190fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b610df6610df0611946565b82611db6565b50565b60065460ff1615610e44576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600c54421115610e5657610e56610958565b610cb23361188c565b60065460ff1690565b6001600160a01b031660009081526020819052604090205490565b610e8b611946565b60065461010090046001600160a01b03908116911614610ee0576040805162461bcd60e51b815260206004820181905260248201526000805160206121f6833981519152604482015290519081900360640190fd5b60065460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360068054610100600160a81b0319169055565b600c5490565b6000610f6d8260405180606001604052806029815260200161228060299139610f6686610f61611946565b611318565b9190611b91565b9050610f8183610f7b611946565b8361194a565b610f8b8383611db6565b505050565b610f98611946565b60065461010090046001600160a01b03908116911614610fed576040805162461bcd60e51b815260206004820181905260248201526000805160206121f6833981519152604482015290519081900360640190fd5b610cb2611eb2565b60008251116110355760405162461bcd60e51b815260040180806020018281038252602781526020018061206f6027913960400191505060405180910390fd5b80518251146110755760405162461bcd60e51b815260040180806020018281038252604d815260200180612096604d913960600191505060405180910390fd5b60005b8251811015610f8b576110b961108c611946565b84838151811061109857fe5b60200260200101518484815181106110ac57fe5b6020026020010151611a36565b600101611078565b60065461010090046001600160a01b031690565b6003805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610ad35780601f10610aa857610100808354040283529160200191610ad3565b60008061113c83610e68565b6001600160a01b0384166000908152600a6020908152604080832054808452600990925280832054600b5460001901845290832054939450909261119991670de0b6b3a76400009161097e91879161119391611765565b906116ca565b95945050505050565b600b5490565b6000610b5f6111b5611946565b84610be7856040518060600160405280602581526020016122f360259139600160006111df611946565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b91565b60075481565b6000610b5f611223611946565b8484611a36565b611232611946565b60065461010090046001600160a01b03908116911614611287576040805162461bcd60e51b815260206004820181905260248201526000805160206121f6833981519152604482015290519081900360640190fd5b6112908161152c565b600e80546001810182556000919091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319166001600160a01b0392909216919091179055565b600d546001600160a01b031690565b600e81815481106112fe57fe5b6000918252602090912001546001600160a01b0316905081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61134b611946565b60065461010090046001600160a01b039081169116146113a0576040805162461bcd60e51b815260206004820181905260248201526000805160206121f6833981519152604482015290519081900360640190fd5b600081116113f5576040805162461bcd60e51b815260206004820152601a60248201527f20706572696f642073686f756c6420626520706f736974697665000000000000604482015290519081900360640190fd5b600755565b6001600160a01b03811660009081526008602052604081205461141c83611130565b0192915050565b61142b611946565b60065461010090046001600160a01b03908116911614611480576040805162461bcd60e51b815260206004820181905260248201526000805160206121f6833981519152604482015290519081900360640190fd5b6001600160a01b0381166114c55760405162461bcd60e51b81526004018080602001828103825260268152602001806120e36026913960400191505060405180910390fd5b6006546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b611534611946565b60065461010090046001600160a01b03908116911614611589576040805162461bcd60e51b815260206004820181905260248201526000805160206121f6833981519152604482015290519081900360640190fd5b60005b600e54811015610d1b57816001600160a01b0316600e82815481106115ad57fe5b6000918252602090912001546001600160a01b0316141561166157600e805460001981019081106115da57fe5b600091825260209091200154600e80546001600160a01b03909216918390811061160057fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600e80548061163957fe5b600082815260209020810160001990810180546001600160a01b031916905501905550610df6565b60010161158c565b6000828201838110156116c3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000826116d957506000610b63565b828202828482816116e657fe5b04146116c35760405162461bcd60e51b81526004018080602001828103825260218152602001806121ad6021913960400191505060405180910390fd5b60006116c383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f33565b60006116c383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b91565b804710156117fc576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015290519081900360640190fd5b6040516000906001600160a01b0384169083908381818185875af1925050503d8060008114611847576040519150601f19603f3d011682016040523d82523d6000602084013e61184c565b606091505b5050905080610f8b5760405162461bcd60e51b815260040180806020018281038252603a815260200180612173603a913960400191505060405180910390fd5b600061189782610e68565b6001600160a01b0383166000908152600a6020908152604080832054600b5481855260099093528184205460001990930180855291842054949550939092916118f491670de0b6b3a76400009161097e9188916111939190611765565b6001600160a01b0386166000908152600a602052604090208390559050801561193f576001600160a01b038516600081815260086020526040902080548301905561193f90826117a7565b5050505050565b3390565b6001600160a01b03831661198f5760405162461bcd60e51b815260040180806020018281038252602481526020018061225c6024913960400191505060405180910390fd5b6001600160a01b0382166119d45760405162461bcd60e51b81526004018080602001828103825260228152602001806121096022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611a7b5760405162461bcd60e51b81526004018080602001828103825260258152602001806122376025913960400191505060405180910390fd5b6001600160a01b038216611ac05760405162461bcd60e51b815260040180806020018281038252602381526020018061202a6023913960400191505060405180910390fd5b611acb838383611f98565b611b088160405180606001604052806026815260200161214d602691396001600160a01b0386166000908152602081905260409020549190611b91565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611b379082611669565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611c205760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611be5578181015183820152602001611bcd565b50505050905090810190601f168015611c125780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60065460ff16611c76576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611ca9611946565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b038216611d21576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611d2d60008383611f98565b600554611d3a9082611669565b6005556001600160a01b038216600090815260208190526040902054611d609082611669565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611dfb5760405162461bcd60e51b81526004018080602001828103825260218152602001806122166021913960400191505060405180910390fd5b611e0782600083611f98565b611e448160405180606001604052806022815260200161204d602291396001600160a01b0385166000908152602081905260409020549190611b91565b6001600160a01b038316600090815260208190526040902055600554611e6a9082611765565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60065460ff1615611efd576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ca9611946565b60008183611f825760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611be5578181015183820152602001611bcd565b506000838581611f8e57fe5b0495945050505050565b600c54421115611faa57611faa610958565b611fb2610e5f565b15611fee5760405162461bcd60e51b815260040180806020018281038252602281526020018061212b6022913960400191505060405180910390fd5b6001600160a01b03831615612006576120068361188c565b6001600160a01b0382161561201e5761201e8261188c565b610f8b838383610f8b56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654548617368546f6b656e3a206c65617374206f6e6520726563697069656e7420616464726573734548617368546f6b656e3a206e756d626572206f6620726563697069656e742061646472657373657320646f6573206e6f74206d6174636820746865206e756d626572206f6620746f6b656e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345486173683a20746f6b656e207472616e73666572207768696c652070617573656445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734548617368546f6b656e3a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206368616e676520616c6c6f77616e63652075736520696e637265617365416c6c6f77616e6365206f72206465637265617365416c6c6f77616e636520696e737465616445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122062c85658131b2eddec49897bf4594629359fa7636129e591f73fb66c790a606064736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000001312d00000000000000000000000000000000000000000000000000000000000000000b454861736820546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054548415348000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): EHash Token
Arg [1] : _symbol (string): EHASH
Arg [2] : _decimals (uint8): 18
Arg [3] : _initialSupply (uint256): 20000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000001312d00
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 454861736820546f6b656e000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4548415348000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
16094:8094:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17900:11;;17882:15;:29;17878:70;;;17928:8;:6;:8::i;:::-;19366:13:::1;::::0;19358:22:::1;::::0;;;:7:::1;:22;::::0;;;;:34:::1;;:47:::0;;19396:9:::1;19358:47;::::0;;16094:8094;;;;;3702:18;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20317:184;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20317:184:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4891:315;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4891:315:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3876:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;5688:313;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;5688:313:0;;;;;;;;;;;;;;;;;:::i;3754:21::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6410:210;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6410:210:0;;;;;;;;:::i;15366:65::-;;;;;;;;;;;;;:::i;:::-;;14394:104;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14394:104:0;;;;;;;;:::i;18035:169::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18035:169:0;-1:-1:-1;;;;;18035:169:0;;:::i;14025:83::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14025:83:0;;:::i;20735:95::-;;;;;;;;;;;;;:::i;12262:78::-;;;;;;;;;;;;;:::i;4039:119::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4039:119:0;-1:-1:-1;;;;;4039:119:0;;:::i;1770:140::-;;;;;;;;;;;;;:::i;24090:95::-;;;;;;;;;;;;;:::i;14822:292::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14822:292:0;;;;;;;;:::i;15209:61::-;;;;;;;;;;;;;:::i;15582:449::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15582:449:0;;;;;;;;-1:-1:-1;15582:449:0;;-1:-1:-1;;15582:449:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15582:449:0;;-1:-1:-1;15582:449:0;;-1:-1:-1;;;;;15582:449:0:i;1128:79::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;1128:79:0;;;;;;;;;;;;;;3727:20;;;;;;;;;;;;;:::i;19480:529::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19480:529:0;-1:-1:-1;;;;;19480:529:0;;:::i;20565:100::-;;;;;;;;;;;;;:::i;7123:261::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;7123:261:0;;;;;;;;:::i;16412:32::-;;;;;;;;;;;;;:::i;4371:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4371:167:0;;;;;;;;:::i;18487:154::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18487:154:0;-1:-1:-1;;;;;18487:154:0;;:::i;19128:102::-;;;;;;;;;;;;;:::i;17560:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17560:40:0;;:::i;4601:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4601:143:0;;;;;;;;;;:::i;18269:154::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18269:154:0;;:::i;20081:166::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20081:166:0;-1:-1:-1;;;;;20081:166:0;;:::i;2065:236::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2065:236:0;-1:-1:-1;;;;;2065:236:0;;:::i;18708:351::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18708:351:0;-1:-1:-1;;;;;18708:351:0;;:::i;22620:1403::-;22863:13;;22843:17;22909:21;;;:7;:21;;;;;:33;;;;22978:28;23002:3;22978:19;22909:33;22994:2;22978:15;:19::i;:::-;:23;;:28::i;:::-;22953:53;-1:-1:-1;23017:21:0;23041:31;:11;22953:53;23041:15;:31::i;:::-;23017:55;;23165:420;23311:223;23520:13;:11;:13::i;:::-;23311:97;:13;16334:4;23311:71;:97::i;:223::-;-1:-1:-1;;23173:14:0;;23165:23;;;;:7;:23;;;;;:37;;:91;:420::i;:::-;23127:21;;;;:7;:21;;;;;:458;23662:13;:15;;;;;;23703:12;;23688:11;:27;;;;;;;23772:14;;:40;;-1:-1:-1;;;;;23772:14:0;23797;23772:24;:40::i;:::-;23888:14;:21;23868:17;23920:96;23937:12;23935:1;:14;23920:96;;;23971:33;23986:14;24001:1;23986:17;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23986:17:0;23971:14;:33::i;:::-;23951:3;;23920:96;;;;22620:1403;;;;;:::o;3702:18::-;;;;;;;;;;;;;;-1:-1:-1;;3702:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20317:184::-;20373:21;20436:14;;;:7;:14;;;;;:28;;20466:26;;;;;20436:28;;20317:184::o;4891:315::-;4966:4;4992:32;5002:12;:10;:12::i;:::-;5016:7;4992:9;:32::i;:::-;:37;;4991:56;;-1:-1:-1;5035:11:0;;4991:56;4983:143;;;;-1:-1:-1;;;4983:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5137:39;5146:12;:10;:12::i;:::-;5160:7;5169:6;5137:8;:39::i;:::-;-1:-1:-1;5194:4:0;4891:315;;;;;:::o;3876:100::-;3956:12;;3876:100;:::o;5688:313::-;5786:4;5803:36;5813:6;5821:9;5832:6;5803:9;:36::i;:::-;5850:121;5859:6;5867:12;:10;:12::i;:::-;5881:89;5919:6;5881:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5881:19:0;;;;;;:11;:19;;;;;;5901:12;:10;:12::i;:::-;-1:-1:-1;;;;;5881:33:0;;;;;;;;;;;;-1:-1:-1;5881:33:0;;;:89;:37;:89::i;:::-;5850:8;:121::i;:::-;-1:-1:-1;5989:4:0;5688:313;;;;;:::o;3754:21::-;;;;;;:::o;6410:210::-;6490:4;6507:83;6516:12;:10;:12::i;:::-;6530:7;6539:50;6578:10;6539:11;:25;6551:12;:10;:12::i;:::-;-1:-1:-1;;;;;6539:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;6539:25:0;;;:34;;;;;;;;;;;:38;:50::i;15366:65::-;1350:12;:10;:12::i;:::-;1340:6;;;;;-1:-1:-1;;;;;1340:6:0;;;:22;;;1332:67;;;;;-1:-1:-1;;;1332:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1332:67:0;;;;;;;;;;;;;;;15413:10:::1;:8;:10::i;:::-;15366:65::o:0;14394:104::-;1350:12;:10;:12::i;:::-;1340:6;;;;;-1:-1:-1;;;;;1340:6:0;;;:22;;;1332:67;;;;;-1:-1:-1;;;1332:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1332:67:0;;;;;;;;;;;;;;;14469:21:::1;14475:7;14483:6;14469:5;:21::i;:::-;14394:104:::0;;:::o;18035:169::-;1350:12;:10;:12::i;:::-;1340:6;;;;;-1:-1:-1;;;;;1340:6:0;;;:22;;;1332:67;;;;;-1:-1:-1;;;1332:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1332:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;18126:21:0;::::1;18117:44;;;::::0;;-1:-1:-1;;;18117:44:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;18117:44:0;;;;;;;;;;;;;::::1;;18172:14;:24:::0;;-1:-1:-1;;;;;;18172:24:0::1;-1:-1:-1::0;;;;;18172:24:0;;;::::1;::::0;;;::::1;::::0;;18035:169::o;14025:83::-;14073:27;14079:12;:10;:12::i;:::-;14093:6;14073:5;:27::i;:::-;14025:83;:::o;20735:95::-;12580:7;;;;12579:8;12571:37;;;;;-1:-1:-1;;;12571:37:0;;;;;;;;;;;;-1:-1:-1;;;12571:37:0;;;;;;;;;;;;;;;17900:11:::1;;17882:15;:29;17878:70;;;17928:8;:6;:8::i;:::-;20796:26:::2;20811:10;20796:14;:26::i;12262:78::-:0;12325:7;;;;12262:78;:::o;4039:119::-;-1:-1:-1;;;;;4132:18:0;4105:7;4132:18;;;;;;;;;;;;4039:119::o;1770:140::-;1350:12;:10;:12::i;:::-;1340:6;;;;;-1:-1:-1;;;;;1340:6:0;;;:22;;;1332:67;;;;;-1:-1:-1;;;1332:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1332:67:0;;;;;;;;;;;;;;;1853:6:::1;::::0;1832:40:::1;::::0;1869:1:::1;::::0;1853:6:::1;::::0;::::1;-1:-1:-1::0;;;;;1853:6:0::1;::::0;1832:40:::1;::::0;1869:1;;1832:40:::1;1883:6;:19:::0;;-1:-1:-1;;;;;;1883:19:0::1;::::0;;1770:140::o;24090:95::-;24166:11;;24090:95;:::o;14822:292::-;14891:26;14920:89;14957:6;14920:89;;;;;;;;;;;;;;;;;:32;14930:7;14939:12;:10;:12::i;:::-;14920:9;:32::i;:::-;:36;:89;:36;:89::i;:::-;14891:118;;15022:51;15031:7;15040:12;:10;:12::i;:::-;15054:18;15022:8;:51::i;:::-;15084:22;15090:7;15099:6;15084:5;:22::i;:::-;14822:292;;;:::o;15209:61::-;1350:12;:10;:12::i;:::-;1340:6;;;;;-1:-1:-1;;;;;1340:6:0;;;:22;;;1332:67;;;;;-1:-1:-1;;;1332:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1332:67:0;;;;;;;;;;;;;;;15254:8:::1;:6;:8::i;15582:449::-:0;15706:1;15686:10;:17;:21;15678:73;;;;-1:-1:-1;;;15678:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15791:7;:14;15770:10;:17;:35;15762:125;;;;-1:-1:-1;;;15762:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15904:9;15900:124;15923:10;:17;15919:1;:21;15900:124;;;15962:50;15972:12;:10;:12::i;:::-;15986:10;15997:1;15986:13;;;;;;;;;;;;;;16001:7;16009:1;16001:10;;;;;;;;;;;;;;15962:9;:50::i;:::-;15942:3;;15900:124;;1128:79;1193:6;;;;;-1:-1:-1;;;;;1193:6:0;;1128:79::o;3727:20::-;;;;;;;;;;;;;;;-1:-1:-1;;3727:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19480:529;19548:15;19576:21;19600:18;19610:7;19600:9;:18::i;:::-;-1:-1:-1;;;;;19653:30:0;;19629:21;19653:30;;;:21;:30;;;;;;;;;19762:25;;;:7;:25;;;;;;:39;19727:13;;-1:-1:-1;;19727:15:0;19719:24;;;;;:38;19576:42;;-1:-1:-1;19653:30:0;;19719:208;;16334:4;;19719:140;;19576:42;;19719:83;;:42;:83::i;:::-;:125;;:140::i;:208::-;19696:231;19480:529;-1:-1:-1;;;;;19480:529:0:o;20565:100::-;20644:13;;20565:100;:::o;7123:261::-;7208:4;7225:129;7234:12;:10;:12::i;:::-;7248:7;7257:96;7296:15;7257:96;;;;;;;;;;;;;;;;;:11;:25;7269:12;:10;:12::i;:::-;-1:-1:-1;;;;;7257:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;7257:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;16412:32::-;;;;:::o;4371:167::-;4449:4;4466:42;4476:12;:10;:12::i;:::-;4490:9;4501:6;4466:9;:42::i;18487:154::-;1350:12;:10;:12::i;:::-;1340:6;;;;;-1:-1:-1;;;;;1340:6:0;;;:22;;;1332:67;;;;;-1:-1:-1;;;1332:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1332:67:0;;;;;;;;;;;;;;;18567:27:::1;18586:7;18567:18;:27::i;:::-;18605:14;:28:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;18605:28:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;18605:28:0::1;-1:-1:-1::0;;;;;18605:28:0;;;::::1;::::0;;;::::1;::::0;;18487:154::o;19128:102::-;19207:14;;-1:-1:-1;;;;;19207:14:0;19128:102;:::o;17560:40::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17560:40:0;;-1:-1:-1;17560:40:0;:::o;4601:143::-;-1:-1:-1;;;;;4709:18:0;;;4682:7;4709:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4601:143::o;18269:154::-;1350:12;:10;:12::i;:::-;1340:6;;;;;-1:-1:-1;;;;;1340:6:0;;;:22;;;1332:67;;;;;-1:-1:-1;;;1332:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1332:67:0;;;;;;;;;;;;;;;18353:1:::1;18345:5;:9;18336:48;;;::::0;;-1:-1:-1;;;18336:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;18395:12;:20:::0;18269:154::o;20081:166::-;-1:-1:-1;;;;;20215:24:0;;20147:15;20215:24;;;:15;:24;;;;;;20182:30;20231:7;20182:21;:30::i;:::-;:57;;20081:166;-1:-1:-1;;20081:166:0:o;2065:236::-;1350:12;:10;:12::i;:::-;1340:6;;;;;-1:-1:-1;;;;;1340:6:0;;;:22;;;1332:67;;;;;-1:-1:-1;;;1332:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1332:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;2146:22:0;::::1;2138:73;;;;-1:-1:-1::0;;;2138:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2248:6;::::0;2227:38:::1;::::0;-1:-1:-1;;;;;2227:38:0;;::::1;::::0;2248:6:::1;::::0;::::1;;::::0;2227:38:::1;::::0;;;::::1;2276:6;:17:::0;;-1:-1:-1;;;;;2276:17:0;;::::1;;;-1:-1:-1::0;;;;;;2276:17:0;;::::1;::::0;;;::::1;::::0;;2065:236::o;18708:351::-;1350:12;:10;:12::i;:::-;1340:6;;;;;-1:-1:-1;;;;;1340:6:0;;;:22;;;1332:67;;;;;-1:-1:-1;;;1332:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1332:67:0;;;;;;;;;;;;;;;18794:6:::1;18789:263;18806:14;:21:::0;18804:23;::::1;18789:263;;;18874:7;-1:-1:-1::0;;;;;18853:28:0::1;:14;18868:1;18853:17;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;18853:17:0::1;:28;18849:192;;;18922:14;18937:21:::0;;-1:-1:-1;;18937:23:0;;;18922:39;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;18902:14:::1;:17:::0;;-1:-1:-1;;;;;18922:39:0;;::::1;::::0;18917:1;;18902:17;::::1;;;;;;;;;;;;;:59;;;;;-1:-1:-1::0;;;;;18902:59:0::1;;;;;-1:-1:-1::0;;;;;18902:59:0::1;;;;;;18980:14;:20;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;18980:20:0;;;;;-1:-1:-1;;;;;;18980:20:0::1;::::0;;;;;-1:-1:-1;19019:7:0::1;;18849:192;18829:3;;18789:263;;4530:181:1::0;4588:7;4620:5;;;4644:6;;;;4636:46;;;;;-1:-1:-1;;;4636:46:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4702:1;4530:181;-1:-1:-1;;;4530:181:1:o;5902:471::-;5960:7;6205:6;6201:47;;-1:-1:-1;6235:1:1;6228:8;;6201:47;6272:5;;;6276:1;6272;:5;:1;6296:5;;;;;:10;6288:56;;;;-1:-1:-1;;;6288:56:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6841:132;6899:7;6926:39;6930:1;6933;6926:39;;;;;;;;;;;;;;;;;:3;:39::i;4986:136::-;5044:7;5071:43;5075:1;5078;5071:43;;;;;;;;;;;;;;;;;:3;:43::i;11165:397::-;11280:6;11255:21;:31;;11247:73;;;;;-1:-1:-1;;;11247:73:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;11430:35;;11412:12;;-1:-1:-1;;;;;11430:14:1;;;11453:6;;11412:12;11430:35;11412:12;11430:35;11453:6;11430:14;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11411:54;;;11484:7;11476:78;;;;-1:-1:-1;;;11476:78:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20897:871:0;20966:21;20990:18;21000:7;20990:9;:18::i;:::-;-1:-1:-1;;;;;21043:30:0;;21019:21;21043:30;;;:21;:30;;;;;;;;;21107:13;;21209:25;;;:7;:25;;;;;;:39;-1:-1:-1;;21107:15:0;;;21166:24;;;;;;:38;20966:42;;-1:-1:-1;21043:30:0;21107:15;;21019:21;21166:208;;16334:4;;21166:140;;20966:42;;21166:83;;:38;:42;:83::i;:208::-;-1:-1:-1;;;;;21485:30:0;;;;;;:21;:30;;;;;:48;;;21143:231;-1:-1:-1;21550:16:0;;21546:215;;-1:-1:-1;;;;;21622:24:0;;;;;;:15;:24;;;;;:40;;;;;;21718:31;;21650:12;21718:17;:31::i;:::-;20897:871;;;;;:::o;3344:106:1:-;3432:10;3344:106;:::o;10238:338:0:-;-1:-1:-1;;;;;10332:19:0;;10324:68;;;;-1:-1:-1;;;10324:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10411:21:0;;10403:68;;;;-1:-1:-1;;;10403:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10484:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10536:32;;;;;;;;;;;;;;;;;10238:338;;;:::o;7874:531::-;-1:-1:-1;;;;;7972:20:0;;7964:70;;;;-1:-1:-1;;;7964:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8053:23:0;;8045:71;;;;-1:-1:-1;;;8045:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8129:47;8150:6;8158:9;8169:6;8129:20;:47::i;:::-;8209:71;8231:6;8209:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8209:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;8189:17:0;;;:9;:17;;;;;;;;;;;:91;;;;8314:20;;;;;;;:32;;8339:6;8314:24;:32::i;:::-;-1:-1:-1;;;;;8291:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;8362:35;;;;;;;8291:20;;8362:35;;;;;;;;;;;;;7874:531;;;:::o;5459:192:1:-;5545:7;5581:12;5573:6;;;;5565:29;;;;-1:-1:-1;;;5565:29:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5617:5:1;;;5459:192::o;13303:112:0:-;12856:7;;;;12848:40;;;;;-1:-1:-1;;;12848:40:0;;;;;;;;;;;;-1:-1:-1;;;12848:40:0;;;;;;;;;;;;;;;13354:7:::1;:15:::0;;-1:-1:-1;;13354:15:0::1;::::0;;13385:22:::1;13394:12;:10;:12::i;:::-;13385:22;::::0;;-1:-1:-1;;;;;13385:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;13303:112::o:0;8687:370::-;-1:-1:-1;;;;;8763:21:0;;8755:65;;;;;-1:-1:-1;;;8755:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8833:49;8862:1;8866:7;8875:6;8833:20;:49::i;:::-;8910:12;;:24;;8927:6;8910:16;:24::i;:::-;8895:12;:39;-1:-1:-1;;;;;8966:18:0;;:9;:18;;;;;;;;;;;:30;;8989:6;8966:22;:30::i;:::-;-1:-1:-1;;;;;8945:18:0;;:9;:18;;;;;;;;;;;:51;;;;9012:37;;;;;;;8945:18;;:9;;9012:37;;;;;;;;;;8687:370;;:::o;9390:410::-;-1:-1:-1;;;;;9466:21:0;;9458:67;;;;-1:-1:-1;;;9458:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9538:49;9559:7;9576:1;9580:6;9538:20;:49::i;:::-;9621:68;9644:6;9621:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9621:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;9600:18:0;;:9;:18;;;;;;;;;;:89;9715:12;;:24;;9732:6;9715:16;:24::i;:::-;9700:12;:39;9755:37;;;;;;;;9781:1;;-1:-1:-1;;;;;9755:37:0;;;;;;;;;;;;9390:410;;:::o;13052:110::-;12580:7;;;;12579:8;12571:37;;;;;-1:-1:-1;;;12571:37:0;;;;;;;;;;;;-1:-1:-1;;;12571:37:0;;;;;;;;;;;;;;;13104:7:::1;:14:::0;;-1:-1:-1;;13104:14:0::1;13114:4;13104:14;::::0;;13134:20:::1;13141:12;:10;:12::i;7503:345:1:-:0;7589:7;7691:12;7684:5;7676:28;;;;-1:-1:-1;;;7676:28:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7715:9;7731:1;7727;:5;;;;;;;7503:345;-1:-1:-1;;;;;7503:345:1:o;22008:503:0:-;17900:11;;17882:15;:29;17878:70;;;17928:8;:6;:8::i;:::-;22128::::1;:6;:8::i;:::-;22127:9;22119:56;;;;-1:-1:-1::0;;;22119:56:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;22267:18:0;::::1;::::0;22263:80:::1;;22302:29;22325:4;22302:14;:29::i;:::-;-1:-1:-1::0;;;;;22367:16:0;::::1;::::0;22363:76:::1;;22400:27;22423:2;22400:14;:27::i;:::-;22459:44;22486:4;22492:2;22496:6;22459:26;:44::i
Swarm Source
ipfs://62c85658131b2eddec49897bf4594629359fa7636129e591f73fb66c790a6060
Loading...
Loading
Loading...
Loading
OVERVIEW
By offering the “Ethereum Hashing Power” token EHash, Ethereum mining has never become so easy and convenient for miners: EHash is the token that represents the mining power on Ethereum network. 1 EHash is strictly tethered to 0.01Mhash/s power.Net Worth in USD
$22,210.95
Net Worth in ETH
11.234559
Token Allocations
ETH
100.00%
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $1,976.99 | 11.2347 | $22,210.95 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.