ETH Price: $2,721.23 (-1.53%)

Token

SHA256-BTC 55W (BTC55W)
 

Overview

Max Total Supply

34,000 BTC55W

Holders

9

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 3 Decimals)

Filtered by Token Holder
Null: 0x000...000
Balance
0 BTC55W

Value
$0.00
0x0000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HashToken

Compiler Version
v0.5.12+commit.7709ece9

Optimization Enabled:
Yes with 200 runs

Other Settings:
byzantium EvmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-11-21
*/

// File: @openzeppelin/contracts/ownership/Ownable.sol

pragma solidity 0.5.12;

/**
 * @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.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be aplied to your functions to restrict their use to
 * the owner.
 */
contract Ownable {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * > Note: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see `ERC20Detailed`.
 */
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.
     *
     * > Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an `Approval` event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to `approve`. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/math/SafeMath.sol



/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol





/**
 * @dev Implementation of the `IERC20` interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using `_mint`.
 * For a generic mechanism see `ERC20Mintable`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * 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 IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    /**
     * @dev See `IERC20.totalSupply`.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See `IERC20.balanceOf`.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See `IERC20.transfer`.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    /**
     * @dev See `IERC20.allowance`.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev See `IERC20.transferFrom`.
     *
     * Emits an `Approval` event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of `ERC20`;
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to `transfer`, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a `Transfer` event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a `Transfer` event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

     /**
     * @dev Destoys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a `Transfer` event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an `Approval` event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @dev Destoys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See `_burn` and `_approve`.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
    }
}

// File: @openzeppelin/contracts/access/Roles.sol



/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

// File: @openzeppelin/contracts/access/roles/PauserRole.sol




contract PauserRole {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

    constructor () internal {
        _addPauser(msg.sender);
    }

    modifier onlyPauser() {
        require(isPauser(msg.sender), "PauserRole: caller does not have the Pauser role");
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    function addPauser(address account) public onlyPauser {
        _addPauser(account);
    }

    function renouncePauser() public {
        _removePauser(msg.sender);
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}

// File: @openzeppelin/contracts/lifecycle/Pausable.sol




/**
 * @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 PauserRole {
    /**
     * @dev Emitted when the pause is triggered by a pauser (`account`).
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by a pauser (`account`).
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state. Assigns the Pauser role
     * to the deployer.
     */
    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.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Called by a pauser to pause, triggers stopped state.
     */
    function pause() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(msg.sender);
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(msg.sender);
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Pausable.sol





/**
 * @title Pausable token
 * @dev ERC20 modified with pausable transfers.
 */
contract ERC20Pausable is ERC20, Pausable {
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }

    function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
        return super.approve(spender, value);
    }

    function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool) {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool) {
        return super.decreaseAllowance(spender, subtractedValue);
    }
}

// File: @openzeppelin/contracts/access/roles/MinterRole.sol




contract MinterRole {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(msg.sender);
    }

    modifier onlyMinter() {
        require(isMinter(msg.sender), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(msg.sender);
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Mintable.sol





/**
 * @dev Extension of `ERC20` that adds a set of accounts with the `MinterRole`,
 * which have permission to mint (create) new tokens as they see fit.
 *
 * At construction, the deployer of the contract is the only minter.
 */
contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev See `ERC20._mint`.
     *
     * Requirements:
     *
     * - the caller must have the `MinterRole`.
     */
    function mint(address account, uint256 amount) public onlyMinter returns (bool) {
        _mint(account, amount);
        return true;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol




/**
 * @dev Extension of `ERC20` that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
contract ERC20Burnable is ERC20 {
    /**
     * @dev Destoys `amount` tokens from the caller.
     *
     * See `ERC20._burn`.
     */
    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }

    /**
     * @dev See `ERC20._burnFrom`.
     */
    function burnFrom(address account, uint256 amount) public {
        _burnFrom(account, amount);
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Detailed.sol




/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei.
     *
     * > Note that this information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * `IERC20.balanceOf` and `IERC20.transfer`.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

// File: contracts/HashToken.sol







 
// Adapted from:
// https://etherscan.io/address/0xdac17f958d2ee523a2206206994597c13d831ec7#code
contract UpgradedERC20 is ERC20{
    // those methods are called by the legacy contract
    // and they must ensure msg.sender to be the contract address
    function transferByLegacy(address from, address to, uint value) public returns (bool);
    function transferFromByLegacy(address sender, address from, address spender, uint value) public returns (bool);
    function approveByLegacy(address from, address spender, uint value) public returns (bool);
}

contract HashToken is Ownable, ERC20Pausable, ERC20Mintable, ERC20Burnable, ERC20Detailed {
	address public upgradedAddress;
    bool public deprecated;
    
    string constant public issuer = "https://hashnest.com";
    string constant public contractType = "perpetual";
    string constant public tokenType = "hash";
    string constant public rewardCoin = "BTC";
    string constant public unit = "THS";

    string public miningInfo = "https://www.hashnest.com/public/hash_token/btc55w";
    uint256 public totalPower;
    uint256 public totalHashRate;
    string[] public observerLinks; 
    
    constructor(uint256 initialSupply) ERC20Detailed("SHA256-BTC 55W", "BTC55W", 3) public {
        _mint(msg.sender, initialSupply);
		deprecated = false;
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
        if (deprecated) {
            return UpgradedERC20(upgradedAddress).transferByLegacy(msg.sender, _to, _value);
        } else {
            return super.transfer(_to, _value);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) {
        if (deprecated) {
            return UpgradedERC20(upgradedAddress).transferFromByLegacy(msg.sender, _from, _to, _value);
        } else {
            return super.transferFrom(_from, _to, _value);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function balanceOf(address who) public view returns (uint256) {
        if (deprecated) {
            return UpgradedERC20(upgradedAddress).balanceOf(who);
        } else {
            return super.balanceOf(who);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function approve(address _spender, uint256 _value) public returns (bool) {
        if (deprecated) {
            return UpgradedERC20(upgradedAddress).approveByLegacy(msg.sender, _spender, _value);
        } else {
            return super.approve(_spender, _value);
        }
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function allowance(address _owner, address _spender) public view returns (uint256 remaining) {
        if (deprecated) {
            return UpgradedERC20(upgradedAddress).allowance(_owner, _spender);
        } else {
            return super.allowance(_owner, _spender);
        }
    }

	// deprecate current contract if favour of a new one
    function totalSupply() public view returns (uint256) {
        if (deprecated) {
            return UpgradedERC20(upgradedAddress).totalSupply();
        } else {
            return super.totalSupply();
        }
    }

    function addObserverLink(string memory link) public onlyOwner {
    	observerLinks.push(link);
    }

    function getObserverLinksCount() public view returns(uint count) {
    	return observerLinks.length;
	}

    // Move the last element to the deleted spot.
	// Delete the last element, then correct the length.
	function deleteObserverLink(uint index) public onlyOwner {
	  require(index < observerLinks.length);
	  observerLinks[index] = observerLinks[observerLinks.length-1];
	  delete observerLinks[observerLinks.length-1];
	  observerLinks.length--;
	}

    function setTotalPower(uint256 power) public onlyOwner {
    	totalPower = power;
    }

    function setTotalHashRate(uint256 hashRate) public onlyOwner {
    	totalHashRate = hashRate;
    }

    function setMiningInfo(string memory _miningInfo) public onlyOwner {
        miningInfo = _miningInfo;
    }

    // deprecate current contract in favour of a new one
    function deprecate(address _upgradedAddress) public onlyOwner {
        deprecated = true;
        upgradedAddress = _upgradedAddress;
        emit Deprecate(_upgradedAddress);
    }

	// transfer balance to owner
	function withdrawEther(uint256 amount) public onlyOwner {
		msg.sender.transfer(amount);
	}
	
	// can accept ether
	function() external payable {}

    // Called when contract is deprecated
    event Deprecate(address newAddress);
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"payable":false,"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":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"Deprecate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"link","type":"string"}],"name":"addObserverLink","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"contractType","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"deleteObserverLink","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_upgradedAddress","type":"address"}],"name":"deprecate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"deprecated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getObserverLinksCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"issuer","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"miningInfo","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"observerLinks","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rewardCoin","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_miningInfo","type":"string"}],"name":"setMiningInfo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"hashRate","type":"uint256"}],"name":"setTotalHashRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"power","type":"uint256"}],"name":"setTotalPower","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenType","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalHashRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalPower","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"unit","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradedAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60e0604052603160808181529062002fa560a03980516200002991600a9160209091019062000521565b503480156200003757600080fd5b5060405162002ff838038062002ff8833981810160405260208110156200005d57600080fd5b5051604080518082018252600e81527f5348413235362d4254432035355700000000000000000000000000000000000060208281019190915282518084018452600681527f42544335355700000000000000000000000000000000000000000000000000009181019190915260008054600160a060020a0319163317808255935192939192600392600160a060020a031691907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36200012933640100000000620001b6810204565b6005805460ff19169055620001473364010000000062000208810204565b82516200015c90600790602086019062000521565b5081516200017290600890602085019062000521565b506009805460ff191660ff92909216919091179055506200019f905033826401000000006200025a810204565b506009805460a860020a60ff0219169055620005c6565b620001d1600482640100000000620024736200037b82021704565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b62000223600682640100000000620024736200037b82021704565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b600160a060020a038216620002d057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354620002ed90826401000000006200225a6200042282021704565b600355600160a060020a0382166000908152600160205260409020546200032390826401000000006200225a6200042282021704565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6200039082826401000000006200049e810204565b15620003fd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6000828201838110156200049757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000600160a060020a03821662000501576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062002fd66022913960400191505060405180910390fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200056457805160ff191683800117855562000594565b8280016001018555821562000594579182015b828111156200059457825182559160200191906001019062000577565b50620005a2929150620005a6565b5090565b620005c391905b80821115620005a25760008155600101620005ad565b90565b6129cf80620005d66000396000f3fe60806040526004361061029a576000357c0100000000000000000000000000000000000000000000000000000000900480636ef8d66d1161016c57806398650275116100de578063cddf3f0711610097578063cddf3f0714610a10578063da3b6b3514610a3a578063db3ad22c14610a4f578063dd62ed3e14610a64578063e655f07114610a9f578063f2fde38b14610ab45761029a565b80639865027514610917578063a457c2d71461092c578063a75d02c914610965578063a9059cbb1461098f578063aa271e1a146109c8578063cb2ef6f7146109fb5761029a565b80638456cb59116101305780638456cb591461087b5780638da5cb5b146108905780638f32d59b146108a5578063907af6c0146108ba57806395d89b41146108cf578063983b2d56146108e45761029a565b80636ef8d66d146107b257806370a08231146107c7578063715018a6146107fa57806379cc67901461080f57806382dc1ec4146108485761029a565b806326976e3f116102105780633f4ba83a116101c95780633f4ba83a146106c857806340c10f19146106dd57806342966c681461071657806346fbf68e146107405780635456758b146107735780635c975abb1461079d5761029a565b806326976e3f1461054157806330fa738c14610572578063313ce5671461058757806339509351146105b25780633a7fb89d146105eb5780633bed33ce1461069e5761029a565b806316f1088c1161026257806316f1088c146103d057806318160ddd146103f75780631b788ff51461040c5780631d1438481461043657806323b872dd1461044b578063254865511461048e5761029a565b806306fdde031461029c5780630753c30c14610326578063095ea7b3146103595780630e136b19146103a657806312be0eab146103bb575b005b3480156102a857600080fd5b506102b1610ae7565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102eb5781810151838201526020016102d3565b50505050905090810190601f1680156103185780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033257600080fd5b5061029a6004803603602081101561034957600080fd5b5035600160a060020a0316610b7e565b34801561036557600080fd5b506103926004803603604081101561037c57600080fd5b50600160a060020a038135169060200135610c52565b604080519115158252519081900360200190f35b3480156103b257600080fd5b50610392610d28565b3480156103c757600080fd5b506102b1610d38565b3480156103dc57600080fd5b506103e5610d71565b60408051918252519081900360200190f35b34801561040357600080fd5b506103e5610d77565b34801561041857600080fd5b5061029a6004803603602081101561042f57600080fd5b5035610e38565b34801561044257600080fd5b506102b1610e87565b34801561045757600080fd5b506103926004803603606081101561046e57600080fd5b50600160a060020a03813581169160208101359091169060400135610ec0565b34801561049a57600080fd5b5061029a600480360360208110156104b157600080fd5b8101906020810181356401000000008111156104cc57600080fd5b8201836020820111156104de57600080fd5b8035906020019184600183028401116401000000008311171561050057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610fe9945050505050565b34801561054d57600080fd5b5061055661104a565b60408051600160a060020a039092168252519081900360200190f35b34801561057e57600080fd5b506102b161105e565b34801561059357600080fd5b5061059c611097565b6040805160ff9092168252519081900360200190f35b3480156105be57600080fd5b50610392600480360360408110156105d557600080fd5b50600160a060020a0381351690602001356110a0565b3480156105f757600080fd5b5061029a6004803603602081101561060e57600080fd5b81019060208101813564010000000081111561062957600080fd5b82018360208201111561063b57600080fd5b8035906020019184600183028401116401000000008311171561065d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506110f6945050505050565b3480156106aa57600080fd5b5061029a600480360360208110156106c157600080fd5b5035611189565b3480156106d457600080fd5b5061029a611200565b3480156106e957600080fd5b506103926004803603604081101561070057600080fd5b50600160a060020a0381351690602001356112e0565b34801561072257600080fd5b5061029a6004803603602081101561073957600080fd5b503561133c565b34801561074c57600080fd5b506103926004803603602081101561076357600080fd5b5035600160a060020a0316611349565b34801561077f57600080fd5b5061029a6004803603602081101561079657600080fd5b5035611364565b3480156107a957600080fd5b506103926113b3565b3480156107be57600080fd5b5061029a6113bc565b3480156107d357600080fd5b506103e5600480360360208110156107ea57600080fd5b5035600160a060020a03166113c7565b34801561080657600080fd5b5061029a61148b565b34801561081b57600080fd5b5061029a6004803603604081101561083257600080fd5b50600160a060020a03813516906020013561152c565b34801561085457600080fd5b5061029a6004803603602081101561086b57600080fd5b5035600160a060020a0316611536565b34801561088757600080fd5b5061029a611586565b34801561089c57600080fd5b50610556611658565b3480156108b157600080fd5b50610392611667565b3480156108c657600080fd5b506102b1611678565b3480156108db57600080fd5b506102b16116b1565b3480156108f057600080fd5b5061029a6004803603602081101561090757600080fd5b5035600160a060020a0316611712565b34801561092357600080fd5b5061029a611762565b34801561093857600080fd5b506103926004803603604081101561094f57600080fd5b50600160a060020a03813516906020013561176b565b34801561097157600080fd5b5061029a6004803603602081101561098857600080fd5b50356117c1565b34801561099b57600080fd5b50610392600480360360408110156109b257600080fd5b50600160a060020a0381351690602001356118a7565b3480156109d457600080fd5b50610392600480360360208110156109eb57600080fd5b5035600160a060020a031661198a565b348015610a0757600080fd5b506102b161199d565b348015610a1c57600080fd5b506102b160048036036020811015610a3357600080fd5b50356119d6565b348015610a4657600080fd5b506103e5611a7c565b348015610a5b57600080fd5b506103e5611a82565b348015610a7057600080fd5b506103e560048036036040811015610a8757600080fd5b50600160a060020a0381358116916020013516611a88565b348015610aab57600080fd5b506102b1611b2f565b348015610ac057600080fd5b5061029a60048036036020811015610ad757600080fd5b5035600160a060020a0316611b8a565b60078054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b735780601f10610b4857610100808354040283529160200191610b73565b820191906000526020600020905b815481529060010190602001808311610b5657829003601f168201915b505050505090505b90565b610b86611667565b610bc8576040805160e560020a62461bcd02815260206004820181905260248201526000805160206128cf833981519152604482015290519081900360640190fd5b6009805460a860020a75ff000000000000000000000000000000000000000000199091161774ffffffffffffffffffffffffffffffffffffffff001916610100600160a060020a0384169081029190911790915560408051918252517fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e916020908290030190a150565b60095460009060a860020a900460ff1615610d1557600954604080517faee92d33000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a0386811660248301526044820186905291516101009093049091169163aee92d33916064808201926020929091908290030181600087803b158015610ce257600080fd5b505af1158015610cf6573d6000803e3d6000fd5b505050506040513d6020811015610d0c57600080fd5b50519050610d22565b610d1f8383611bdd565b90505b92915050565b60095460a860020a900460ff1681565b6040518060400160405280600381526020017f425443000000000000000000000000000000000000000000000000000000000081525081565b600d5490565b60095460009060a860020a900460ff1615610e2957600960019054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b158015610df657600080fd5b505afa158015610e0a573d6000803e3d6000fd5b505050506040513d6020811015610e2057600080fd5b50519050610b7b565b610e31611c33565b9050610b7b565b610e40611667565b610e82576040805160e560020a62461bcd02815260206004820181905260248201526000805160206128cf833981519152604482015290519081900360640190fd5b600b55565b6040518060400160405280601481526020017f68747470733a2f2f686173686e6573742e636f6d00000000000000000000000081525081565b60055460009060ff1615610f0c576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612957833981519152604482015290519081900360640190fd5b60095460a860020a900460ff1615610fd457600954604080517f8b477adb000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a038781166024830152868116604483015260648201869052915161010090930490911691638b477adb916084808201926020929091908290030181600087803b158015610fa157600080fd5b505af1158015610fb5573d6000803e3d6000fd5b505050506040513d6020811015610fcb57600080fd5b50519050610fe2565b610fdf848484611c39565b90505b9392505050565b610ff1611667565b611033576040805160e560020a62461bcd02815260206004820181905260248201526000805160206128cf833981519152604482015290519081900360640190fd5b805161104690600a90602084019061264a565b5050565b6009546101009004600160a060020a031681565b6040518060400160405280600481526020017f686173680000000000000000000000000000000000000000000000000000000081525081565b60095460ff1690565b60055460009060ff16156110ec576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612957833981519152604482015290519081900360640190fd5b610d1f8383611c90565b6110fe611667565b611140576040805160e560020a62461bcd02815260206004820181905260248201526000805160206128cf833981519152604482015290519081900360640190fd5b600d8054600181018083556000929092528251611184917fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50190602085019061264a565b505050565b611191611667565b6111d3576040805160e560020a62461bcd02815260206004820181905260248201526000805160206128cf833981519152604482015290519081900360640190fd5b604051339082156108fc029083906000818181858888f19350505050158015611046573d6000803e3d6000fd5b61120933611349565b6112475760405160e560020a62461bcd0281526004018080602001828103825260308152602001806128066030913960400191505060405180910390fd5b60055460ff166112a1576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6005805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006112eb3361198a565b6113295760405160e560020a62461bcd02815260040180806020018281038252603081526020018061287e6030913960400191505060405180910390fd5b6113338383611cd1565b50600192915050565b6113463382611dc6565b50565b600061135c60048363ffffffff611ea416565b90505b919050565b61136c611667565b6113ae576040805160e560020a62461bcd02815260206004820181905260248201526000805160206128cf833981519152604482015290519081900360640190fd5b600c55565b60055460ff1690565b6113c533611f0e565b565b60095460009060a860020a900460ff161561147b57600954604080517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301529151610100909304909116916370a0823191602480820192602092909190829003018186803b15801561144857600080fd5b505afa15801561145c573d6000803e3d6000fd5b505050506040513d602081101561147257600080fd5b5051905061135f565b61148482611f56565b905061135f565b611493611667565b6114d5576040805160e560020a62461bcd02815260206004820181905260248201526000805160206128cf833981519152604482015290519081900360640190fd5b60008054604051600160a060020a03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b6110468282611f71565b61153f33611349565b61157d5760405160e560020a62461bcd0281526004018080602001828103825260308152602001806128066030913960400191505060405180910390fd5b61134681611fb6565b61158f33611349565b6115cd5760405160e560020a62461bcd0281526004018080602001828103825260308152602001806128066030913960400191505060405180910390fd5b60055460ff1615611616576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612957833981519152604482015290519081900360640190fd5b6005805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b600054600160a060020a031690565b600054600160a060020a0316331490565b6040518060400160405280600381526020017f544853000000000000000000000000000000000000000000000000000000000081525081565b60088054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b735780601f10610b4857610100808354040283529160200191610b73565b61171b3361198a565b6117595760405160e560020a62461bcd02815260040180806020018281038252603081526020018061287e6030913960400191505060405180910390fd5b61134681611ffe565b6113c533612046565b60055460009060ff16156117b7576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612957833981519152604482015290519081900360640190fd5b610d1f838361208e565b6117c9611667565b61180b576040805160e560020a62461bcd02815260206004820181905260248201526000805160206128cf833981519152604482015290519081900360640190fd5b600d54811061181957600080fd5b600d8054600019810190811061182b57fe5b90600052602060002001600d828154811061184257fe5b90600052602060002001908054600181600116156101000203166002900461186b9291906126c8565b50600d8054600019810190811061187e57fe5b906000526020600020016000611894919061273d565b600d805490611046906000198301612781565b60055460009060ff16156118f3576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612957833981519152604482015290519081900360640190fd5b60095460a860020a900460ff161561198057600954604080517f6e18980a000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a03868116602483015260448201869052915161010090930490911691636e18980a916064808201926020929091908290030181600087803b158015610ce257600080fd5b610d1f83836120ca565b600061135c60068363ffffffff611ea416565b6040518060400160405280600981526020017f70657270657475616c000000000000000000000000000000000000000000000081525081565b600d81815481106119e357fe5b600091825260209182902001805460408051601f6002600019610100600187161502019094169390930492830185900485028101850190915281815293509091830182828015611a745780601f10611a4957610100808354040283529160200191611a74565b820191906000526020600020905b815481529060010190602001808311611a5757829003601f168201915b505050505081565b600c5481565b600b5481565b60095460009060a860020a900460ff1615611b2557600954604080517fdd62ed3e000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152858116602483015291516101009093049091169163dd62ed3e91604480820192602092909190829003018186803b158015611b1157600080fd5b505afa158015610cf6573d6000803e3d6000fd5b610d1f8383612120565b600a805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015611a745780601f10611a4957610100808354040283529160200191611a74565b611b92611667565b611bd4576040805160e560020a62461bcd02815260206004820181905260248201526000805160206128cf833981519152604482015290519081900360640190fd5b6113468161214b565b60055460009060ff1615611c29576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612957833981519152604482015290519081900360640190fd5b610d1f83836121fb565b60035490565b60055460009060ff1615611c85576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612957833981519152604482015290519081900360640190fd5b610fdf848484612208565b336000818152600260209081526040808320600160a060020a03871684529091528120549091611333918590611ccc908663ffffffff61225a16565b6122b7565b600160a060020a038216611d2f576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354611d42908263ffffffff61225a16565b600355600160a060020a038216600090815260016020526040902054611d6e908263ffffffff61225a16565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a038216611e0e5760405160e560020a62461bcd0281526004018080602001828103825260218152602001806129116021913960400191505060405180910390fd5b600354611e21908263ffffffff6123a916565b600355600160a060020a038216600090815260016020526040902054611e4d908263ffffffff6123a916565b600160a060020a0383166000818152600160209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000600160a060020a038216611eee5760405160e560020a62461bcd0281526004018080602001828103825260228152602001806128ef6022913960400191505060405180910390fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b611f1f60048263ffffffff61240916565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b600160a060020a031660009081526001602052604090205490565b611f7b8282611dc6565b600160a060020a038216600090815260026020908152604080832033808552925290912054611046918491611ccc908563ffffffff6123a916565b611fc760048263ffffffff61247316565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b61200f60068263ffffffff61247316565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61205760068263ffffffff61240916565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b336000818152600260209081526040808320600160a060020a03871684529091528120549091611333918590611ccc908663ffffffff6123a916565b60055460009060ff1615612116576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612957833981519152604482015290519081900360640190fd5b610d1f83836124f7565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600160a060020a0381166121935760405160e560020a62461bcd0281526004018080602001828103825260268152602001806128366026913960400191505060405180910390fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60006113333384846122b7565b6000612215848484612500565b600160a060020a038416600090815260026020908152604080832033808552925290912054612250918691611ccc908663ffffffff6123a916565b5060019392505050565b600082820183811015610d1f576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600160a060020a0383166122ff5760405160e560020a62461bcd0281526004018080602001828103825260248152602001806129776024913960400191505060405180910390fd5b600160a060020a0382166123475760405160e560020a62461bcd02815260040180806020018281038252602281526020018061285c6022913960400191505060405180910390fd5b600160a060020a03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600082821115612403576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6124138282611ea4565b6124515760405160e560020a62461bcd0281526004018080602001828103825260218152602001806128ae6021913960400191505060405180910390fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b61247d8282611ea4565b156124d2576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b60006113333384845b600160a060020a0383166125485760405160e560020a62461bcd0281526004018080602001828103825260258152602001806129326025913960400191505060405180910390fd5b600160a060020a0382166125905760405160e560020a62461bcd0281526004018080602001828103825260238152602001806127e36023913960400191505060405180910390fd5b600160a060020a0383166000908152600160205260409020546125b9908263ffffffff6123a916565b600160a060020a0380851660009081526001602052604080822093909355908416815220546125ee908263ffffffff61225a16565b600160a060020a0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061268b57805160ff19168380011785556126b8565b828001600101855582156126b8579182015b828111156126b857825182559160200191906001019061269d565b506126c49291506127a5565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061270157805485556126b8565b828001600101855582156126b857600052602060002091601f016020900482015b828111156126b8578254825591600101919060010190612722565b50805460018160011615610100020316600290046000825580601f106127635750611346565b601f01602090049060005260206000209081019061134691906127a5565b815481835581811115611184576000838152602090206111849181019083016127bf565b610b7b91905b808211156126c457600081556001016127ab565b610b7b91905b808211156126c45760006127d9828261273d565b506001016127c556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573735061757361626c653a207061757365640000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a7231582032b781b9e546bcd583b47b874df65dd34dee81aad761d7a1c3161574fd63568564736f6c634300050c003268747470733a2f2f7777772e686173686e6573742e636f6d2f7075626c69632f686173685f746f6b656e2f627463353577526f6c65733a206163636f756e7420697320746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000001c9c380

Deployed Bytecode

0x60806040526004361061029a576000357c0100000000000000000000000000000000000000000000000000000000900480636ef8d66d1161016c57806398650275116100de578063cddf3f0711610097578063cddf3f0714610a10578063da3b6b3514610a3a578063db3ad22c14610a4f578063dd62ed3e14610a64578063e655f07114610a9f578063f2fde38b14610ab45761029a565b80639865027514610917578063a457c2d71461092c578063a75d02c914610965578063a9059cbb1461098f578063aa271e1a146109c8578063cb2ef6f7146109fb5761029a565b80638456cb59116101305780638456cb591461087b5780638da5cb5b146108905780638f32d59b146108a5578063907af6c0146108ba57806395d89b41146108cf578063983b2d56146108e45761029a565b80636ef8d66d146107b257806370a08231146107c7578063715018a6146107fa57806379cc67901461080f57806382dc1ec4146108485761029a565b806326976e3f116102105780633f4ba83a116101c95780633f4ba83a146106c857806340c10f19146106dd57806342966c681461071657806346fbf68e146107405780635456758b146107735780635c975abb1461079d5761029a565b806326976e3f1461054157806330fa738c14610572578063313ce5671461058757806339509351146105b25780633a7fb89d146105eb5780633bed33ce1461069e5761029a565b806316f1088c1161026257806316f1088c146103d057806318160ddd146103f75780631b788ff51461040c5780631d1438481461043657806323b872dd1461044b578063254865511461048e5761029a565b806306fdde031461029c5780630753c30c14610326578063095ea7b3146103595780630e136b19146103a657806312be0eab146103bb575b005b3480156102a857600080fd5b506102b1610ae7565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102eb5781810151838201526020016102d3565b50505050905090810190601f1680156103185780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033257600080fd5b5061029a6004803603602081101561034957600080fd5b5035600160a060020a0316610b7e565b34801561036557600080fd5b506103926004803603604081101561037c57600080fd5b50600160a060020a038135169060200135610c52565b604080519115158252519081900360200190f35b3480156103b257600080fd5b50610392610d28565b3480156103c757600080fd5b506102b1610d38565b3480156103dc57600080fd5b506103e5610d71565b60408051918252519081900360200190f35b34801561040357600080fd5b506103e5610d77565b34801561041857600080fd5b5061029a6004803603602081101561042f57600080fd5b5035610e38565b34801561044257600080fd5b506102b1610e87565b34801561045757600080fd5b506103926004803603606081101561046e57600080fd5b50600160a060020a03813581169160208101359091169060400135610ec0565b34801561049a57600080fd5b5061029a600480360360208110156104b157600080fd5b8101906020810181356401000000008111156104cc57600080fd5b8201836020820111156104de57600080fd5b8035906020019184600183028401116401000000008311171561050057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610fe9945050505050565b34801561054d57600080fd5b5061055661104a565b60408051600160a060020a039092168252519081900360200190f35b34801561057e57600080fd5b506102b161105e565b34801561059357600080fd5b5061059c611097565b6040805160ff9092168252519081900360200190f35b3480156105be57600080fd5b50610392600480360360408110156105d557600080fd5b50600160a060020a0381351690602001356110a0565b3480156105f757600080fd5b5061029a6004803603602081101561060e57600080fd5b81019060208101813564010000000081111561062957600080fd5b82018360208201111561063b57600080fd5b8035906020019184600183028401116401000000008311171561065d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506110f6945050505050565b3480156106aa57600080fd5b5061029a600480360360208110156106c157600080fd5b5035611189565b3480156106d457600080fd5b5061029a611200565b3480156106e957600080fd5b506103926004803603604081101561070057600080fd5b50600160a060020a0381351690602001356112e0565b34801561072257600080fd5b5061029a6004803603602081101561073957600080fd5b503561133c565b34801561074c57600080fd5b506103926004803603602081101561076357600080fd5b5035600160a060020a0316611349565b34801561077f57600080fd5b5061029a6004803603602081101561079657600080fd5b5035611364565b3480156107a957600080fd5b506103926113b3565b3480156107be57600080fd5b5061029a6113bc565b3480156107d357600080fd5b506103e5600480360360208110156107ea57600080fd5b5035600160a060020a03166113c7565b34801561080657600080fd5b5061029a61148b565b34801561081b57600080fd5b5061029a6004803603604081101561083257600080fd5b50600160a060020a03813516906020013561152c565b34801561085457600080fd5b5061029a6004803603602081101561086b57600080fd5b5035600160a060020a0316611536565b34801561088757600080fd5b5061029a611586565b34801561089c57600080fd5b50610556611658565b3480156108b157600080fd5b50610392611667565b3480156108c657600080fd5b506102b1611678565b3480156108db57600080fd5b506102b16116b1565b3480156108f057600080fd5b5061029a6004803603602081101561090757600080fd5b5035600160a060020a0316611712565b34801561092357600080fd5b5061029a611762565b34801561093857600080fd5b506103926004803603604081101561094f57600080fd5b50600160a060020a03813516906020013561176b565b34801561097157600080fd5b5061029a6004803603602081101561098857600080fd5b50356117c1565b34801561099b57600080fd5b50610392600480360360408110156109b257600080fd5b50600160a060020a0381351690602001356118a7565b3480156109d457600080fd5b50610392600480360360208110156109eb57600080fd5b5035600160a060020a031661198a565b348015610a0757600080fd5b506102b161199d565b348015610a1c57600080fd5b506102b160048036036020811015610a3357600080fd5b50356119d6565b348015610a4657600080fd5b506103e5611a7c565b348015610a5b57600080fd5b506103e5611a82565b348015610a7057600080fd5b506103e560048036036040811015610a8757600080fd5b50600160a060020a0381358116916020013516611a88565b348015610aab57600080fd5b506102b1611b2f565b348015610ac057600080fd5b5061029a60048036036020811015610ad757600080fd5b5035600160a060020a0316611b8a565b60078054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b735780601f10610b4857610100808354040283529160200191610b73565b820191906000526020600020905b815481529060010190602001808311610b5657829003601f168201915b505050505090505b90565b610b86611667565b610bc8576040805160e560020a62461bcd02815260206004820181905260248201526000805160206128cf833981519152604482015290519081900360640190fd5b6009805460a860020a75ff000000000000000000000000000000000000000000199091161774ffffffffffffffffffffffffffffffffffffffff001916610100600160a060020a0384169081029190911790915560408051918252517fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e916020908290030190a150565b60095460009060a860020a900460ff1615610d1557600954604080517faee92d33000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a0386811660248301526044820186905291516101009093049091169163aee92d33916064808201926020929091908290030181600087803b158015610ce257600080fd5b505af1158015610cf6573d6000803e3d6000fd5b505050506040513d6020811015610d0c57600080fd5b50519050610d22565b610d1f8383611bdd565b90505b92915050565b60095460a860020a900460ff1681565b6040518060400160405280600381526020017f425443000000000000000000000000000000000000000000000000000000000081525081565b600d5490565b60095460009060a860020a900460ff1615610e2957600960019054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b158015610df657600080fd5b505afa158015610e0a573d6000803e3d6000fd5b505050506040513d6020811015610e2057600080fd5b50519050610b7b565b610e31611c33565b9050610b7b565b610e40611667565b610e82576040805160e560020a62461bcd02815260206004820181905260248201526000805160206128cf833981519152604482015290519081900360640190fd5b600b55565b6040518060400160405280601481526020017f68747470733a2f2f686173686e6573742e636f6d00000000000000000000000081525081565b60055460009060ff1615610f0c576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612957833981519152604482015290519081900360640190fd5b60095460a860020a900460ff1615610fd457600954604080517f8b477adb000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a038781166024830152868116604483015260648201869052915161010090930490911691638b477adb916084808201926020929091908290030181600087803b158015610fa157600080fd5b505af1158015610fb5573d6000803e3d6000fd5b505050506040513d6020811015610fcb57600080fd5b50519050610fe2565b610fdf848484611c39565b90505b9392505050565b610ff1611667565b611033576040805160e560020a62461bcd02815260206004820181905260248201526000805160206128cf833981519152604482015290519081900360640190fd5b805161104690600a90602084019061264a565b5050565b6009546101009004600160a060020a031681565b6040518060400160405280600481526020017f686173680000000000000000000000000000000000000000000000000000000081525081565b60095460ff1690565b60055460009060ff16156110ec576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612957833981519152604482015290519081900360640190fd5b610d1f8383611c90565b6110fe611667565b611140576040805160e560020a62461bcd02815260206004820181905260248201526000805160206128cf833981519152604482015290519081900360640190fd5b600d8054600181018083556000929092528251611184917fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50190602085019061264a565b505050565b611191611667565b6111d3576040805160e560020a62461bcd02815260206004820181905260248201526000805160206128cf833981519152604482015290519081900360640190fd5b604051339082156108fc029083906000818181858888f19350505050158015611046573d6000803e3d6000fd5b61120933611349565b6112475760405160e560020a62461bcd0281526004018080602001828103825260308152602001806128066030913960400191505060405180910390fd5b60055460ff166112a1576040805160e560020a62461bcd02815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6005805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60006112eb3361198a565b6113295760405160e560020a62461bcd02815260040180806020018281038252603081526020018061287e6030913960400191505060405180910390fd5b6113338383611cd1565b50600192915050565b6113463382611dc6565b50565b600061135c60048363ffffffff611ea416565b90505b919050565b61136c611667565b6113ae576040805160e560020a62461bcd02815260206004820181905260248201526000805160206128cf833981519152604482015290519081900360640190fd5b600c55565b60055460ff1690565b6113c533611f0e565b565b60095460009060a860020a900460ff161561147b57600954604080517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301529151610100909304909116916370a0823191602480820192602092909190829003018186803b15801561144857600080fd5b505afa15801561145c573d6000803e3d6000fd5b505050506040513d602081101561147257600080fd5b5051905061135f565b61148482611f56565b905061135f565b611493611667565b6114d5576040805160e560020a62461bcd02815260206004820181905260248201526000805160206128cf833981519152604482015290519081900360640190fd5b60008054604051600160a060020a03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b6110468282611f71565b61153f33611349565b61157d5760405160e560020a62461bcd0281526004018080602001828103825260308152602001806128066030913960400191505060405180910390fd5b61134681611fb6565b61158f33611349565b6115cd5760405160e560020a62461bcd0281526004018080602001828103825260308152602001806128066030913960400191505060405180910390fd5b60055460ff1615611616576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612957833981519152604482015290519081900360640190fd5b6005805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b600054600160a060020a031690565b600054600160a060020a0316331490565b6040518060400160405280600381526020017f544853000000000000000000000000000000000000000000000000000000000081525081565b60088054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b735780601f10610b4857610100808354040283529160200191610b73565b61171b3361198a565b6117595760405160e560020a62461bcd02815260040180806020018281038252603081526020018061287e6030913960400191505060405180910390fd5b61134681611ffe565b6113c533612046565b60055460009060ff16156117b7576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612957833981519152604482015290519081900360640190fd5b610d1f838361208e565b6117c9611667565b61180b576040805160e560020a62461bcd02815260206004820181905260248201526000805160206128cf833981519152604482015290519081900360640190fd5b600d54811061181957600080fd5b600d8054600019810190811061182b57fe5b90600052602060002001600d828154811061184257fe5b90600052602060002001908054600181600116156101000203166002900461186b9291906126c8565b50600d8054600019810190811061187e57fe5b906000526020600020016000611894919061273d565b600d805490611046906000198301612781565b60055460009060ff16156118f3576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612957833981519152604482015290519081900360640190fd5b60095460a860020a900460ff161561198057600954604080517f6e18980a000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a03868116602483015260448201869052915161010090930490911691636e18980a916064808201926020929091908290030181600087803b158015610ce257600080fd5b610d1f83836120ca565b600061135c60068363ffffffff611ea416565b6040518060400160405280600981526020017f70657270657475616c000000000000000000000000000000000000000000000081525081565b600d81815481106119e357fe5b600091825260209182902001805460408051601f6002600019610100600187161502019094169390930492830185900485028101850190915281815293509091830182828015611a745780601f10611a4957610100808354040283529160200191611a74565b820191906000526020600020905b815481529060010190602001808311611a5757829003601f168201915b505050505081565b600c5481565b600b5481565b60095460009060a860020a900460ff1615611b2557600954604080517fdd62ed3e000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152858116602483015291516101009093049091169163dd62ed3e91604480820192602092909190829003018186803b158015611b1157600080fd5b505afa158015610cf6573d6000803e3d6000fd5b610d1f8383612120565b600a805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015611a745780601f10611a4957610100808354040283529160200191611a74565b611b92611667565b611bd4576040805160e560020a62461bcd02815260206004820181905260248201526000805160206128cf833981519152604482015290519081900360640190fd5b6113468161214b565b60055460009060ff1615611c29576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612957833981519152604482015290519081900360640190fd5b610d1f83836121fb565b60035490565b60055460009060ff1615611c85576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612957833981519152604482015290519081900360640190fd5b610fdf848484612208565b336000818152600260209081526040808320600160a060020a03871684529091528120549091611333918590611ccc908663ffffffff61225a16565b6122b7565b600160a060020a038216611d2f576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354611d42908263ffffffff61225a16565b600355600160a060020a038216600090815260016020526040902054611d6e908263ffffffff61225a16565b600160a060020a03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a038216611e0e5760405160e560020a62461bcd0281526004018080602001828103825260218152602001806129116021913960400191505060405180910390fd5b600354611e21908263ffffffff6123a916565b600355600160a060020a038216600090815260016020526040902054611e4d908263ffffffff6123a916565b600160a060020a0383166000818152600160209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6000600160a060020a038216611eee5760405160e560020a62461bcd0281526004018080602001828103825260228152602001806128ef6022913960400191505060405180910390fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b611f1f60048263ffffffff61240916565b604051600160a060020a038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b600160a060020a031660009081526001602052604090205490565b611f7b8282611dc6565b600160a060020a038216600090815260026020908152604080832033808552925290912054611046918491611ccc908563ffffffff6123a916565b611fc760048263ffffffff61247316565b604051600160a060020a038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b61200f60068263ffffffff61247316565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61205760068263ffffffff61240916565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b336000818152600260209081526040808320600160a060020a03871684529091528120549091611333918590611ccc908663ffffffff6123a916565b60055460009060ff1615612116576040805160e560020a62461bcd0281526020600482015260106024820152600080516020612957833981519152604482015290519081900360640190fd5b610d1f83836124f7565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600160a060020a0381166121935760405160e560020a62461bcd0281526004018080602001828103825260268152602001806128366026913960400191505060405180910390fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60006113333384846122b7565b6000612215848484612500565b600160a060020a038416600090815260026020908152604080832033808552925290912054612250918691611ccc908663ffffffff6123a916565b5060019392505050565b600082820183811015610d1f576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600160a060020a0383166122ff5760405160e560020a62461bcd0281526004018080602001828103825260248152602001806129776024913960400191505060405180910390fd5b600160a060020a0382166123475760405160e560020a62461bcd02815260040180806020018281038252602281526020018061285c6022913960400191505060405180910390fd5b600160a060020a03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600082821115612403576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6124138282611ea4565b6124515760405160e560020a62461bcd0281526004018080602001828103825260218152602001806128ae6021913960400191505060405180910390fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b61247d8282611ea4565b156124d2576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b60006113333384845b600160a060020a0383166125485760405160e560020a62461bcd0281526004018080602001828103825260258152602001806129326025913960400191505060405180910390fd5b600160a060020a0382166125905760405160e560020a62461bcd0281526004018080602001828103825260238152602001806127e36023913960400191505060405180910390fd5b600160a060020a0383166000908152600160205260409020546125b9908263ffffffff6123a916565b600160a060020a0380851660009081526001602052604080822093909355908416815220546125ee908263ffffffff61225a16565b600160a060020a0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061268b57805160ff19168380011785556126b8565b828001600101855582156126b8579182015b828111156126b857825182559160200191906001019061269d565b506126c49291506127a5565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061270157805485556126b8565b828001600101855582156126b857600052602060002091601f016020900482015b828111156126b8578254825591600101919060010190612722565b50805460018160011615610100020316600290046000825580601f106127635750611346565b601f01602090049060005260206000209081019061134691906127a5565b815481835581811115611184576000838152602090206111849181019083016127bf565b610b7b91905b808211156126c457600081556001016127ab565b610b7b91905b808211156126c45760006127d9828261273d565b506001016127c556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573735061757361626c653a207061757365640000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a7231582032b781b9e546bcd583b47b874df65dd34dee81aad761d7a1c3161574fd63568564736f6c634300050c0032

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000001c9c380

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 30000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000001c9c380


Deployed Bytecode Sourcemap

26797:4363:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25232:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25232:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;25232:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30697:186;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30697:186:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30697:186:0;-1:-1:-1;;;;;30697:186:0;;:::i;28772:288::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28772:288:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28772:288:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;26928:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26928:22:0;;;:::i;27128:41::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27128:41:0;;;:::i;29842:105::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29842:105:0;;;:::i;:::-;;;;;;;;;;;;;;;;29500:224;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29500:224:0;;;:::i;30315:89::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30315:89:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30315:89:0;;:::i;26963:54::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26963:54:0;;;:::i;28036:331::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28036:331:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28036:331:0;;;;;;;;;;;;;;;;;:::i;30521:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30521:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30521:110:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;30521:110:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;30521:110:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;30521:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;30521:110:0;;-1:-1:-1;30521:110:0;;-1:-1:-1;;;;;30521:110:0:i;26891:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26891:30:0;;;:::i;:::-;;;;-1:-1:-1;;;;;26891:30:0;;;;;;;;;;;;;;27080:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27080:41:0;;;:::i;26090:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26090:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21797:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21797:167:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21797:167:0;;;;;;;;:::i;29732:102::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29732:102:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29732:102:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;29732:102:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;29732:102:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;29732:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;29732:102:0;;-1:-1:-1;29732:102:0;;-1:-1:-1;;;;;29732:102:0:i;30919:93::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30919:93:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30919:93:0;;:::i;21008:118::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21008:118:0;;;:::i;23708:143::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23708:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23708:143:0;;;;;;;;:::i;24290:81::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24290:81:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24290:81:0;;:::i;18525:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18525:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18525:109:0;-1:-1:-1;;;;;18525:109:0;;:::i;30412:101::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30412:101:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30412:101:0;;:::i;20217:78::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20217:78:0;;;:::i;18742:77::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18742:77:0;;;:::i;28452:235::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28452:235:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28452:235:0;-1:-1:-1;;;;;28452:235:0;;:::i;1710:140::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1710:140:0;;;:::i;24433:103::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24433:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24433:103:0;;;;;;;;:::i;18642:92::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18642:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18642:92:0;-1:-1:-1;;;;;18642:92:0;;:::i;20797:116::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20797:116:0;;;:::i;899:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;899:79:0;;;:::i;1265:92::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1265:92:0;;;:::i;27176:35::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27176:35:0;;;:::i;25434:87::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25434:87:0;;;:::i;22758:92::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22758:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22758:92:0;-1:-1:-1;;;;;22758:92:0;;:::i;22858:77::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22858:77:0;;;:::i;21972:177::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21972:177:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21972:177:0;;;;;;;;:::i;30058:249::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30058:249:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30058:249:0;;:::i;27661:290::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27661:290:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27661:290:0;;;;;;;;:::i;22641:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22641:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22641:109:0;-1:-1:-1;;;;;22641:109:0;;:::i;27024:49::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27024:49:0;;;:::i;27372:29::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27372:29:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27372:29:0;;:::i;27337:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27337:28:0;;;:::i;27305:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27305:25:0;;;:::i;29145:292::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29145:292:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;29145:292:0;;;;;;;;;;:::i;27220:78::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27220:78:0;;;:::i;2005:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2005:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2005:109:0;-1:-1:-1;;;;;2005:109:0;;:::i;25232:83::-;25302:5;25295:12;;;;;;;;-1:-1:-1;;25295:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25269:13;;25295:12;;25302:5;;25295:12;;25302:5;25295:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25232:83;;:::o;30697:186::-;1111:9;:7;:9::i;:::-;1103:54;;;;;-1:-1:-1;;;;;1103:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1103:54:0;;;;;;;;;;;;;;;30770:10;:17;;-1:-1:-1;;;;;30770:17:0;;;;-1:-1:-1;;30798:34:0;30770:17;-1:-1:-1;;;;;30798:34:0;;;;;;;;;;;;30848:27;;;;;;;;;;;;;;;;;30697:186;:::o;28772:288::-;28860:10;;28839:4;;-1:-1:-1;;;28860:10:0;;;;28856:197;;;28908:15;;28894:76;;;;;;28941:10;28894:76;;;;-1:-1:-1;;;;;28894:76:0;;;;;;;;;;;;;;;28908:15;;;;;;;;28894:46;;:76;;;;;;;;;;;;;;;-1:-1:-1;28908:15:0;28894:76;;;5:2:-1;;;;30:1;27;20:12;5:2;28894:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28894:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28894:76:0;;-1:-1:-1;28887:83:0;;28856:197;29010:31;29024:8;29034:6;29010:13;:31::i;:::-;29003:38;;28856:197;28772:288;;;;:::o;26928:22::-;;;-1:-1:-1;;;26928:22:0;;;;;:::o;27128:41::-;;;;;;;;;;;;;;;;;;;:::o;29842:105::-;29922:13;:20;29842:105;:::o;29500:224::-;29568:10;;29544:7;;-1:-1:-1;;;29568:10:0;;;;29564:153;;;29616:15;;;;;;;;;-1:-1:-1;;;;;29616:15:0;-1:-1:-1;;;;;29602:42:0;;:44;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29602:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29602:44:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29602:44:0;;-1:-1:-1;29595:51:0;;29564:153;29686:19;:17;:19::i;:::-;29679:26;;;;30315:89;1111:9;:7;:9::i;:::-;1103:54;;;;;-1:-1:-1;;;;;1103:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1103:54:0;;;;;;;;;;;;;;;30378:10;:18;30315:89::o;26963:54::-;;;;;;;;;;;;;;;;;;;:::o;28036:331::-;20454:7;;28132:4;;20454:7;;20453:8;20445:37;;;;;-1:-1:-1;;;;;20445:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20445:37:0;;;;;;;;;;;;;;;28153:10;;-1:-1:-1;;;28153:10:0;;;;28149:211;;;28201:15;;28187:83;;;;;;28239:10;28187:83;;;;-1:-1:-1;;;;;28187:83:0;;;;;;;;;;;;;;;;;;;;;;28201:15;;;;;;;;28187:51;;:83;;;;;;;;;;;;;;;-1:-1:-1;28201:15:0;28187:83;;;5:2:-1;;;;30:1;27;20:12;5:2;28187:83:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28187:83:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28187:83:0;;-1:-1:-1;28180:90:0;;28149:211;28310:38;28329:5;28336:3;28341:6;28310:18;:38::i;:::-;28303:45;;28149:211;28036:331;;;;;:::o;30521:110::-;1111:9;:7;:9::i;:::-;1103:54;;;;;-1:-1:-1;;;;;1103:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1103:54:0;;;;;;;;;;;;;;;30599:24;;;;:10;;:24;;;;;:::i;:::-;;30521:110;:::o;26891:30::-;;;;;;-1:-1:-1;;;;;26891:30:0;;:::o;27080:41::-;;;;;;;;;;;;;;;;;;;:::o;26090:83::-;26156:9;;;;26090:83;:::o;21797:167::-;20454:7;;21888:4;;20454:7;;20453:8;20445:37;;;;;-1:-1:-1;;;;;20445:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20445:37:0;;;;;;;;;;;;;;;21912:44;21936:7;21945:10;21912:23;:44::i;29732:102::-;1111:9;:7;:9::i;:::-;1103:54;;;;;-1:-1:-1;;;;;1103:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1103:54:0;;;;;;;;;;;;;;;29802:13;27:10:-1;;39:1;23:18;;45:23;;;-1:-1;29802:24:0;;;;;;;;;;;;;;;;:::i;:::-;;;29732:102;:::o;30919:93::-;1111:9;:7;:9::i;:::-;1103:54;;;;;-1:-1:-1;;;;;1103:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1103:54:0;;;;;;;;;;;;;;;30980:27;;:10;;:27;;;;;31000:6;;30980:27;;;;31000:6;30980:10;:27;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;21008:118:0;18424:20;18433:10;18424:8;:20::i;:::-;18416:81;;;;-1:-1:-1;;;;;18416:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20653:7;;;;20645:40;;;;;-1:-1:-1;;;;;20645:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21067:7;:15;;-1:-1:-1;;21067:15:0;;;21098:20;;;21107:10;21098:20;;;;;;;;;;;;;21008:118::o;23708:143::-;23782:4;22540:20;22549:10;22540:8;:20::i;:::-;22532:81;;;;-1:-1:-1;;;;;22532:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23799:22;23805:7;23814:6;23799:5;:22::i;:::-;-1:-1:-1;23839:4:0;23708:143;;;;:::o;24290:81::-;24338:25;24344:10;24356:6;24338:5;:25::i;:::-;24290:81;:::o;18525:109::-;18581:4;18605:21;:8;18618:7;18605:21;:12;:21;:::i;:::-;18598:28;;18525:109;;;;:::o;30412:101::-;1111:9;:7;:9::i;:::-;1103:54;;;;;-1:-1:-1;;;;;1103:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1103:54:0;;;;;;;;;;;;;;;30481:13;:24;30412:101::o;20217:78::-;20280:7;;;;20217:78;:::o;18742:77::-;18786:25;18800:10;18786:13;:25::i;:::-;18742:77::o;28452:235::-;28529:10;;28505:7;;-1:-1:-1;;;28529:10:0;;;;28525:155;;;28577:15;;28563:45;;;;;;-1:-1:-1;;;;;28563:45:0;;;;;;;;;28577:15;;;;;;;;28563:40;;:45;;;;;;;;;;;;;;;28577:15;28563:45;;;5:2:-1;;;;30:1;27;20:12;5:2;28563:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28563:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28563:45:0;;-1:-1:-1;28556:52:0;;28525:155;28648:20;28664:3;28648:15;:20::i;:::-;28641:27;;;;1710:140;1111:9;:7;:9::i;:::-;1103:54;;;;;-1:-1:-1;;;;;1103:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1103:54:0;;;;;;;;;;;;;;;1809:1;1793:6;;1772:40;;-1:-1:-1;;;;;1793:6:0;;;;1772:40;;1809:1;;1772:40;1840:1;1823:19;;-1:-1:-1;;1823:19:0;;;1710:140::o;24433:103::-;24502:26;24512:7;24521:6;24502:9;:26::i;18642:92::-;18424:20;18433:10;18424:8;:20::i;:::-;18416:81;;;;-1:-1:-1;;;;;18416:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18707:19;18718:7;18707:10;:19::i;20797:116::-;18424:20;18433:10;18424:8;:20::i;:::-;18416:81;;;;-1:-1:-1;;;;;18416:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20454:7;;;;20453:8;20445:37;;;;;-1:-1:-1;;;;;20445:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20445:37:0;;;;;;;;;;;;;;;20857:7;:14;;-1:-1:-1;;20857:14:0;20867:4;20857:14;;;20887:18;;;20894:10;20887:18;;;;;;;;;;;;;20797:116::o;899:79::-;937:7;964:6;-1:-1:-1;;;;;964:6:0;899:79;:::o;1265:92::-;1305:4;1343:6;-1:-1:-1;;;;;1343:6:0;1329:10;:20;;1265:92::o;27176:35::-;;;;;;;;;;;;;;;;;;;:::o;25434:87::-;25506:7;25499:14;;;;;;;;-1:-1:-1;;25499:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25473:13;;25499:14;;25506:7;;25499:14;;25506:7;25499:14;;;;;;;;;;;;;;;;;;;;;;;;22758:92;22540:20;22549:10;22540:8;:20::i;:::-;22532:81;;;;-1:-1:-1;;;;;22532:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22823:19;22834:7;22823:10;:19::i;22858:77::-;22902:25;22916:10;22902:13;:25::i;21972:177::-;20454:7;;22068:4;;20454:7;;20453:8;20445:37;;;;;-1:-1:-1;;;;;20445:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20445:37:0;;;;;;;;;;;;;;;22092:49;22116:7;22125:15;22092:23;:49::i;30058:249::-;1111:9;:7;:9::i;:::-;1103:54;;;;;-1:-1:-1;;;;;1103:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1103:54:0;;;;;;;;;;;;;;;30137:13;:20;30129:28;;30121:37;;;;;;30187:13;30201:20;;-1:-1:-1;;30201:22:0;;;30187:37;;;;;;;;;;;;;30164:13;30178:5;30164:20;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;30237:13:0;30251:20;;-1:-1:-1;;30251:22:0;;;30237:37;;;;;;;;;;;;;;30230:44;;;;:::i;:::-;30280:13;:22;;;;;-1:-1:-1;;30280:22:0;;;:::i;27661:290::-;20454:7;;27738:4;;20454:7;;20453:8;20445:37;;;;;-1:-1:-1;;;;;20445:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20445:37:0;;;;;;;;;;;;;;;27759:10;;-1:-1:-1;;;27759:10:0;;;;27755:189;;;27807:15;;27793:72;;;;;;27841:10;27793:72;;;;-1:-1:-1;;;;;27793:72:0;;;;;;;;;;;;;;;27807:15;;;;;;;;27793:47;;:72;;;;;;;;;;;;;;;-1:-1:-1;27807:15:0;27793:72;;;5:2:-1;;;;30:1;27;20:12;27755:189:0;27905:27;27920:3;27925:6;27905:14;:27::i;22641:109::-;22697:4;22721:21;:8;22734:7;22721:21;:12;:21;:::i;27024:49::-;;;;;;;;;;;;;;;;;;;:::o;27372:29::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;27372:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27372:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27337:28::-;;;;:::o;27305:25::-;;;;:::o;29145:292::-;29253:10;;29219:17;;-1:-1:-1;;;29253:10:0;;;;29249:181;;;29301:15;;29287:58;;;;;;-1:-1:-1;;;;;29287:58:0;;;;;;;;;;;;;;;;29301:15;;;;;;;;29287:40;;:58;;;;;;;;;;;;;;;29301:15;29287:58;;;5:2:-1;;;;30:1;27;20:12;5:2;29287:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;29249:181:0;29385:33;29401:6;29409:8;29385:15;:33::i;27220:78::-;;;;;;;;;;;;;;;-1:-1:-1;;27220:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2005:109;1111:9;:7;:9::i;:::-;1103:54;;;;;-1:-1:-1;;;;;1103:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1103:54:0;;;;;;;;;;;;;;;2078:28;2097:8;2078:18;:28::i;21649:140::-;20454:7;;21728:4;;20454:7;;20453:8;20445:37;;;;;-1:-1:-1;;;;;20445:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20445:37:0;;;;;;;;;;;;;;;21752:29;21766:7;21775:5;21752:13;:29::i;10503:91::-;10574:12;;10503:91;:::o;21481:160::-;20454:7;;21574:4;;20454:7;;20453:8;20445:37;;;;;-1:-1:-1;;;;;20445:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20445:37:0;;;;;;;;;;;;;;;21598:35;21617:4;21623:2;21627:5;21598:18;:35::i;12764:206::-;12870:10;12844:4;12891:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12891:32:0;;;;;;;;;;12844:4;;12861:79;;12882:7;;12891:48;;12928:10;12891:48;:36;:48;:::i;:::-;12861:8;:79::i;14889:308::-;-1:-1:-1;;;;;14965:21:0;;14957:65;;;;;-1:-1:-1;;;;;14957:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15050:12;;:24;;15067:6;15050:24;:16;:24;:::i;:::-;15035:12;:39;-1:-1:-1;;;;;15106:18:0;;;;;;:9;:18;;;;;;:30;;15129:6;15106:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;15085:18:0;;;;;;:9;:18;;;;;;;;:51;;;;15152:37;;;;;;;15085:18;;;;15152:37;;;;;;;;;;14889:308;;:::o;15529:306::-;-1:-1:-1;;;;;15604:21:0;;15596:67;;;;-1:-1:-1;;;;;15596:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15691:12;;:23;;15708:5;15691:23;:16;:23;:::i;:::-;15676:12;:38;-1:-1:-1;;;;;15746:18:0;;;;;;:9;:18;;;;;;:29;;15769:5;15746:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;15725:18:0;;;;;;:9;:18;;;;;;;;:50;;;;15791:36;;;;;;;15725:18;;15791:36;;;;;;;;;;;15529:306;;:::o;17830:203::-;17902:4;-1:-1:-1;;;;;17927:21:0;;17919:68;;;;-1:-1:-1;;;;;17919:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18005:20:0;:11;:20;;;;;;;;;;;;;;;17830:203::o;18957:130::-;19017:24;:8;19033:7;19017:24;:15;:24;:::i;:::-;19057:22;;-1:-1:-1;;;;;19057:22:0;;;;;;;;18957:130;:::o;10657:110::-;-1:-1:-1;;;;;10741:18:0;10714:7;10741:18;;;:9;:18;;;;;;;10657:110::o;16795:188::-;16867:22;16873:7;16882:6;16867:5;:22::i;:::-;-1:-1:-1;;;;;16930:20:0;;;;;;:11;:20;;;;;;;;16918:10;16930:32;;;;;;;;;16900:75;;16909:7;;16930:44;;16967:6;16930:44;:36;:44;:::i;18827:122::-;18884:21;:8;18897:7;18884:21;:12;:21;:::i;:::-;18921:20;;-1:-1:-1;;;;;18921:20:0;;;;;;;;18827:122;:::o;22943:::-;23000:21;:8;23013:7;23000:21;:12;:21;:::i;:::-;23037:20;;-1:-1:-1;;;;;23037:20:0;;;;;;;;22943:122;:::o;23073:130::-;23133:24;:8;23149:7;23133:24;:15;:24;:::i;:::-;23173:22;;-1:-1:-1;;;;;23173:22:0;;;;;;;;23073:130;:::o;13473:216::-;13584:10;13558:4;13605:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;13605:32:0;;;;;;;;;;13558:4;;13575:84;;13596:7;;13605:53;;13642:15;13605:53;:36;:53;:::i;21341:132::-;20454:7;;21416:4;;20454:7;;20453:8;20445:37;;;;;-1:-1:-1;;;;;20445:37:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20445:37:0;;;;;;;;;;;;;;;21440:25;21455:2;21459:5;21440:14;:25::i;11199:134::-;-1:-1:-1;;;;;11298:18:0;;;11271:7;11298:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11199:134::o;2220:229::-;-1:-1:-1;;;;;2294:22:0;;2286:73;;;;-1:-1:-1;;;;;2286:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2396:6;;;2375:38;;-1:-1:-1;;;;;2375:38:0;;;;2396:6;;;2375:38;;;2424:6;:17;;-1:-1:-1;;2424:17:0;-1:-1:-1;;;;;2424:17:0;;;;;;;;;;2220:229::o;11480:148::-;11545:4;11562:36;11571:10;11583:7;11592:5;11562:8;:36::i;12099:256::-;12188:4;12205:36;12215:6;12223:9;12234:6;12205:9;:36::i;:::-;-1:-1:-1;;;;;12281:19:0;;;;;;:11;:19;;;;;;;;12269:10;12281:31;;;;;;;;;12252:73;;12261:6;;12281:43;;12317:6;12281:43;:35;:43;:::i;12252:73::-;-1:-1:-1;12343:4:0;12099:256;;;;;:::o;6192:181::-;6250:7;6282:5;;;6306:6;;;;6298:46;;;;;-1:-1:-1;;;;;6298:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;16275:335;-1:-1:-1;;;;;16368:19:0;;16360:68;;;;-1:-1:-1;;;;;16360:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16447:21:0;;16439:68;;;;-1:-1:-1;;;;;16439:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16520:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;16571:31;;;;;;;;;;;;;;;;;16275:335;;;:::o;6648:184::-;6706:7;6739:1;6734;:6;;6726:49;;;;;-1:-1:-1;;;;;6726:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6798:5:0;;;6648:184::o;17552:183::-;17632:18;17636:4;17642:7;17632:3;:18::i;:::-;17624:64;;;;-1:-1:-1;;;;;17624:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17699:20:0;17722:5;17699:20;;;;;;;;;;;:28;;-1:-1:-1;;17699:28:0;;;17552:183::o;17294:178::-;17372:18;17376:4;17382:7;17372:3;:18::i;:::-;17371:19;17363:63;;;;;-1:-1:-1;;;;;17363:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17437:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;17437:27:0;17460:4;17437:27;;;17294:178::o;10980:156::-;11049:4;11066:40;11076:10;11088:9;11099:6;14179:429;-1:-1:-1;;;;;14277:20:0;;14269:70;;;;-1:-1:-1;;;;;14269:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14358:23:0;;14350:71;;;;-1:-1:-1;;;;;14350:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14454:17:0;;;;;;:9;:17;;;;;;:29;;14476:6;14454:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;14434:17:0;;;;;;;:9;:17;;;;;;:49;;;;14517:20;;;;;;;:32;;14542:6;14517:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;14494:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;14565:35;;;;;;;14494:20;;14565:35;;;;;;;;;;;;;14179:429;;;:::o;26797:4363::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26797:4363:0;;;-1:-1:-1;26797:4363:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;

Swarm Source

bzzr://32b781b9e546bcd583b47b874df65dd34dee81aad761d7a1c3161574fd635685
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.