ETH Price: $2,634.54 (+1.90%)

Token

LovelyBonz (BONZ)
 

Overview

Max Total Supply

25,000,000 BONZ

Holders

12

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
dinizbr.eth
Balance
500 BONZ

Value
$0.00
0x3df364ed7e8a887f7f9c240f7e281a4ea05ce03f
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x790aEE69...bb7c923cd
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
MintableBurnableToken

Compiler Version
v0.5.2+commit.1df8f40c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-05-11
*/

// File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.5.0;

/**
 * @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-solidity/contracts/math/SafeMath.sol

pragma solidity ^0.5.0;

/**
 * @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-solidity/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-solidity/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.5.0;



/**
 * @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-solidity/contracts/token/ERC20/ERC20Burnable.sol

pragma solidity ^0.5.0;


/**
 * @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-solidity/contracts/access/Roles.sol

pragma solidity ^0.5.0;

/**
 * @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-solidity/contracts/access/roles/MinterRole.sol

pragma solidity ^0.5.0;


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-solidity/contracts/token/ERC20/ERC20Mintable.sol

pragma solidity ^0.5.0;



/**
 * @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-solidity/contracts/utils/Address.sol

pragma solidity ^0.5.0;

/**
 * @dev Collection of functions related to the address type,
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * This test is non-exhaustive, and there may be false-negatives: during the
     * execution of a contract's constructor, its address will be reported as
     * not containing a contract.
     *
     * > It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }
}

// File: contracts/ERC677.sol

pragma solidity ^0.5.2;



contract ERC677 is ERC20 {
    event Transfer(address indexed from, address indexed to, uint value, bytes data);

    function transferAndCall(address _to, uint _value, bytes calldata _data) external returns (bool) {
      require(_to != address(this));

      _transfer(msg.sender, _to, _value);

      emit Transfer(msg.sender, _to, _value, _data);

      if (Address.isContract(_to)) {
        require(contractFallback(_to, _value, _data));
      }
      return true;
    }

    function contractFallback(address _to, uint _value, bytes memory _data) private returns(bool) {
      (bool success, bytes memory data) = _to.call(abi.encodeWithSignature("onTokenTransfer(address,uint256,bytes)", msg.sender, _value, _data));
      return success;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol

pragma solidity ^0.5.0;


/**
 * @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: openzeppelin-solidity/contracts/ownership/Ownable.sol

pragma solidity ^0.5.0;

/**
 * @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-solidity/contracts/drafts/ERC1046/ERC20Metadata.sol

pragma solidity ^0.5.0;


/**
 * @title ERC-1047 Token Metadata
 * @dev See https://eips.ethereum.org/EIPS/eip-1046
 * @dev tokenURI must respond with a URI that implements https://eips.ethereum.org/EIPS/eip-1047
 */
contract ERC20Metadata {
    string private _tokenURI;

    constructor (string memory tokenURI_) public {
        _setTokenURI(tokenURI_);
    }

    function tokenURI() external view returns (string memory) {
        return _tokenURI;
    }

    function _setTokenURI(string memory tokenURI_) internal {
        _tokenURI = tokenURI_;
    }
}

// File: contracts/BasicToken.sol

pragma solidity ^0.5.2;





/**
 * @title BasicToken
 * @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator.
 * Note they can later distribute these tokens as they wish using `transfer` and other
 * `ERC20` functions.
 */
contract BasicToken is ERC677, ERC20Detailed, ERC20Metadata, Ownable {

    event TokenURIChanged(string tokenURI);
    /**
     * @dev Constructor that gives msg.sender all of existing tokens,
     * and making him the owner of the token. The decimals are hard-coded to 18.
     */
    constructor (string memory name, string memory symbol, uint256 initialSupply, string memory tokenURI) public
       ERC20Detailed(name, symbol, 18)
       ERC20Metadata(tokenURI) {
        _mint(msg.sender, initialSupply);
    }
    /// @dev Sets the tokenURI field, can be called by the owner only
    /// @param tokenURI string the URI may point to a JSON file that conforms to the "Metadata JSON Schema".
    function setTokenURI(string memory tokenURI) public onlyOwner {
      _setTokenURI(tokenURI);
      emit TokenURIChanged(tokenURI);
    }
}

// File: contracts/MintableBurnableToken.sol

pragma solidity ^0.5.2;




contract MintableBurnableToken is BasicToken, ERC20Burnable, ERC20Mintable {
  constructor (string memory name, string memory symbol, uint256 initialSupply, string memory tokenURI) public
     BasicToken(name, symbol, initialSupply, tokenURI) {
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenURI","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"initialSupply","type":"uint256"},{"name":"tokenURI","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenURI","type":"string"}],"name":"TokenURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60806040523480156200001157600080fd5b5060405162001e4738038062001e47833981018060405260808110156200003757600080fd5b8101908080516401000000008111156200005057600080fd5b820160208101848111156200006457600080fd5b81516401000000008111828201871017156200007f57600080fd5b505092919060200180516401000000008111156200009c57600080fd5b82016020810184811115620000b057600080fd5b8151640100000000811182820187101715620000cb57600080fd5b50506020820151604090920180519194929391640100000000811115620000f157600080fd5b820160208101848111156200010557600080fd5b81516401000000008111828201871017156200012057600080fd5b505092919050505083838383808484601282600390805190602001906200014992919062000549565b5081516200015f90600490602085019062000549565b506005805460ff191660ff92909216919091179055506200018b90508164010000000062000215810204565b5060078054600160a060020a031916331790819055604051600160a060020a0391909116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3620001ed33836401000000006200022e810204565b505050506200020b336200034f640100000000026401000000009004565b50505050620005ee565b80516200022a90600690602084019062000549565b5050565b600160a060020a0382161515620002a657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254620002c3908264010000000062000f48620003a182021704565b600255600160a060020a038216600090815260208190526040902054620002f9908264010000000062000f48620003a182021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6200036a6008826401000000006200152b6200041d82021704565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6000828201838110156200041657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b620004328282640100000000620004c4810204565b156200049f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6000600160a060020a038216151562000529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062001e256022913960400191505060405180910390fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200058c57805160ff1916838001178555620005bc565b82800160010185558215620005bc579182015b82811115620005bc5782518255916020019190600101906200059f565b50620005ca929150620005ce565b5090565b620005eb91905b80821115620005ca5760008155600101620005d5565b90565b61182780620005fe6000396000f3fe608060405234801561001057600080fd5b5060043610610175576000357c01000000000000000000000000000000000000000000000000000000009004806379cc6790116100e0578063a457c2d711610099578063a457c2d714610465578063a9059cbb14610491578063aa271e1a146104bd578063dd62ed3e146104e3578063e0df5b6f14610511578063f2fde38b146105b757610175565b806379cc6790146103d75780638da5cb5b146104035780638f32d59b1461042757806395d89b411461042f578063983b2d5614610437578063986502751461045d57610175565b80633c130d90116101325780633c130d90146102d15780634000aea0146102d957806340c10f191461035e57806342966c681461038a57806370a08231146103a9578063715018a6146103cf57610175565b806306fdde031461017a578063095ea7b3146101f757806318160ddd1461023757806323b872dd14610251578063313ce5671461028757806339509351146102a5575b600080fd5b6101826105dd565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101bc5781810151838201526020016101a4565b50505050905090810190601f1680156101e95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102236004803603604081101561020d57600080fd5b50600160a060020a038135169060200135610674565b604080519115158252519081900360200190f35b61023f61068a565b60408051918252519081900360200190f35b6102236004803603606081101561026757600080fd5b50600160a060020a03813581169160208101359091169060400135610690565b61028f6106e7565b6040805160ff9092168252519081900360200190f35b610223600480360360408110156102bb57600080fd5b50600160a060020a0381351690602001356106f0565b61018261072c565b610223600480360360608110156102ef57600080fd5b600160a060020a038235169160208101359181019060608101604082013564010000000081111561031f57600080fd5b82018360208201111561033157600080fd5b8035906020019184600183028401116401000000008311171561035357600080fd5b50909250905061078d565b6102236004803603604081101561037457600080fd5b50600160a060020a038135169060200135610891565b6103a7600480360360208110156103a057600080fd5b50356108e6565b005b61023f600480360360208110156103bf57600080fd5b5035600160a060020a03166108f3565b6103a761090e565b6103a7600480360360408110156103ed57600080fd5b50600160a060020a0381351690602001356109c3565b61040b6109d1565b60408051600160a060020a039092168252519081900360200190f35b6102236109e0565b6101826109f1565b6103a76004803603602081101561044d57600080fd5b5035600160a060020a0316610a52565b6103a7610aa4565b6102236004803603604081101561047b57600080fd5b50600160a060020a038135169060200135610aaf565b610223600480360360408110156104a757600080fd5b50600160a060020a038135169060200135610aeb565b610223600480360360208110156104d357600080fd5b5035600160a060020a0316610af8565b61023f600480360360408110156104f957600080fd5b50600160a060020a0381358116916020013516610b11565b6103a76004803603602081101561052757600080fd5b81019060208101813564010000000081111561054257600080fd5b82018360208201111561055457600080fd5b8035906020019184600183028401116401000000008311171561057657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610b3c945050505050565b6103a7600480360360208110156105cd57600080fd5b5035600160a060020a0316610c3f565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106695780601f1061063e57610100808354040283529160200191610669565b820191906000526020600020905b81548152906001019060200180831161064c57829003601f168201915b505050505090505b90565b6000610681338484610ca6565b50600192915050565b60025490565b600061069d848484610d9c565b600160a060020a0384166000908152600160209081526040808320338085529252909120546106dd9186916106d8908663ffffffff610ee816565b610ca6565b5060019392505050565b60055460ff1690565b336000818152600160209081526040808320600160a060020a038716845290915281205490916106819185906106d8908663ffffffff610f4816565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106695780601f1061063e57610100808354040283529160200191610669565b6000600160a060020a0385163014156107a557600080fd5b6107b0338686610d9c565b84600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1686868660405180848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f1916909201829003965090945050505050a361083585610fac565b156108865761087b858585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610fb492505050565b151561088657600080fd5b506001949350505050565b600061089c33610af8565b15156108dc5760405160e560020a62461bcd02815260040180806020018281038252603081526020018061171f6030913960400191505060405180910390fd5b6106818383611151565b6108f03382611246565b50565b600160a060020a031660009081526020819052604090205490565b6109166109e0565b151561096c576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600754604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36007805473ffffffffffffffffffffffffffffffffffffffff19169055565b6109cd8282611324565b5050565b600754600160a060020a031690565b600754600160a060020a0316331490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106695780601f1061063e57610100808354040283529160200191610669565b610a5b33610af8565b1515610a9b5760405160e560020a62461bcd02815260040180806020018281038252603081526020018061171f6030913960400191505060405180910390fd5b6108f081611369565b610aad336113b1565b565b336000818152600160209081526040808320600160a060020a038716845290915281205490916106819185906106d8908663ffffffff610ee816565b6000610681338484610d9c565b6000610b0b60088363ffffffff6113f916565b92915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b610b446109e0565b1515610b9a576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610ba381611465565b7f2eb900bac6e5b21f659a14cf4e0b4a5689edb16947c549906436bc73b7053d16816040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c02578181015183820152602001610bea565b50505050905090810190601f168015610c2f5780820380516001836020036101000a031916815260200191505b509250505060405180910390a150565b610c476109e0565b1515610c9d576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6108f081611478565b600160a060020a0383161515610cf05760405160e560020a62461bcd0281526004018080602001828103825260248152602001806117d86024913960400191505060405180910390fd5b600160a060020a0382161515610d3a5760405160e560020a62461bcd0281526004018080602001828103825260228152602001806116fd6022913960400191505060405180910390fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a0383161515610de65760405160e560020a62461bcd0281526004018080602001828103825260258152602001806117b36025913960400191505060405180910390fd5b600160a060020a0382161515610e305760405160e560020a62461bcd0281526004018080602001828103825260238152602001806116b46023913960400191505060405180910390fd5b600160a060020a038316600090815260208190526040902054610e59908263ffffffff610ee816565b600160a060020a038085166000908152602081905260408082209390935590841681522054610e8e908263ffffffff610f4816565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610f42576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610fa5576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000903b1190565b600080606085600160a060020a03163386866040516024018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561102457818101518382015260200161100c565b50505050905090810190601f1680156110515780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa4c0ed3600000000000000000000000000000000000000000000000000000000178152905182519297509550859450925090508083835b602083106110dd5780518252601f1990920191602091820191016110be565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461113f576040519150601f19603f3d011682016040523d82523d6000602084013e611144565b606091505b5090979650505050505050565b600160a060020a03821615156111b1576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546111c4908263ffffffff610f4816565b600255600160a060020a0382166000908152602081905260409020546111f0908263ffffffff610f4816565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a03821615156112905760405160e560020a62461bcd0281526004018080602001828103825260218152602001806117926021913960400191505060405180910390fd5b6002546112a3908263ffffffff610ee816565b600255600160a060020a0382166000908152602081905260409020546112cf908263ffffffff610ee816565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b61132e8282611246565b600160a060020a0382166000908152600160209081526040808320338085529252909120546109cd9184916106d8908563ffffffff610ee816565b61137a60088263ffffffff61152b16565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6113c260088263ffffffff6115af16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a03821615156114455760405160e560020a62461bcd0281526004018080602001828103825260228152602001806117706022913960400191505060405180910390fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b80516109cd90600690602084019061161b565b600160a060020a03811615156114c25760405160e560020a62461bcd0281526004018080602001828103825260268152602001806116d76026913960400191505060405180910390fd5b600754604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b61153582826113f9565b1561158a576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6115b982826113f9565b15156115f95760405160e560020a62461bcd02815260040180806020018281038252602181526020018061174f6021913960400191505060405180910390fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061165c57805160ff1916838001178555611689565b82800160010185558215611689579182015b8281111561168957825182559160200191906001019061166e565b50611695929150611699565b5090565b61067191905b80821115611695576000815560010161169f56fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a723058207c749d6df364a7aaa18c63399327a32221ccf0f7021d478ffb837469705def750029526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000d3c21bcecceda10000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000746756e7a69657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000346554e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d57736d4336563834614e7557437a6a4d325a4879393947436850545661554642337457484a354770655247670000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b5060043610610175576000357c01000000000000000000000000000000000000000000000000000000009004806379cc6790116100e0578063a457c2d711610099578063a457c2d714610465578063a9059cbb14610491578063aa271e1a146104bd578063dd62ed3e146104e3578063e0df5b6f14610511578063f2fde38b146105b757610175565b806379cc6790146103d75780638da5cb5b146104035780638f32d59b1461042757806395d89b411461042f578063983b2d5614610437578063986502751461045d57610175565b80633c130d90116101325780633c130d90146102d15780634000aea0146102d957806340c10f191461035e57806342966c681461038a57806370a08231146103a9578063715018a6146103cf57610175565b806306fdde031461017a578063095ea7b3146101f757806318160ddd1461023757806323b872dd14610251578063313ce5671461028757806339509351146102a5575b600080fd5b6101826105dd565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101bc5781810151838201526020016101a4565b50505050905090810190601f1680156101e95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102236004803603604081101561020d57600080fd5b50600160a060020a038135169060200135610674565b604080519115158252519081900360200190f35b61023f61068a565b60408051918252519081900360200190f35b6102236004803603606081101561026757600080fd5b50600160a060020a03813581169160208101359091169060400135610690565b61028f6106e7565b6040805160ff9092168252519081900360200190f35b610223600480360360408110156102bb57600080fd5b50600160a060020a0381351690602001356106f0565b61018261072c565b610223600480360360608110156102ef57600080fd5b600160a060020a038235169160208101359181019060608101604082013564010000000081111561031f57600080fd5b82018360208201111561033157600080fd5b8035906020019184600183028401116401000000008311171561035357600080fd5b50909250905061078d565b6102236004803603604081101561037457600080fd5b50600160a060020a038135169060200135610891565b6103a7600480360360208110156103a057600080fd5b50356108e6565b005b61023f600480360360208110156103bf57600080fd5b5035600160a060020a03166108f3565b6103a761090e565b6103a7600480360360408110156103ed57600080fd5b50600160a060020a0381351690602001356109c3565b61040b6109d1565b60408051600160a060020a039092168252519081900360200190f35b6102236109e0565b6101826109f1565b6103a76004803603602081101561044d57600080fd5b5035600160a060020a0316610a52565b6103a7610aa4565b6102236004803603604081101561047b57600080fd5b50600160a060020a038135169060200135610aaf565b610223600480360360408110156104a757600080fd5b50600160a060020a038135169060200135610aeb565b610223600480360360208110156104d357600080fd5b5035600160a060020a0316610af8565b61023f600480360360408110156104f957600080fd5b50600160a060020a0381358116916020013516610b11565b6103a76004803603602081101561052757600080fd5b81019060208101813564010000000081111561054257600080fd5b82018360208201111561055457600080fd5b8035906020019184600183028401116401000000008311171561057657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610b3c945050505050565b6103a7600480360360208110156105cd57600080fd5b5035600160a060020a0316610c3f565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106695780601f1061063e57610100808354040283529160200191610669565b820191906000526020600020905b81548152906001019060200180831161064c57829003601f168201915b505050505090505b90565b6000610681338484610ca6565b50600192915050565b60025490565b600061069d848484610d9c565b600160a060020a0384166000908152600160209081526040808320338085529252909120546106dd9186916106d8908663ffffffff610ee816565b610ca6565b5060019392505050565b60055460ff1690565b336000818152600160209081526040808320600160a060020a038716845290915281205490916106819185906106d8908663ffffffff610f4816565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106695780601f1061063e57610100808354040283529160200191610669565b6000600160a060020a0385163014156107a557600080fd5b6107b0338686610d9c565b84600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1686868660405180848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f1916909201829003965090945050505050a361083585610fac565b156108865761087b858585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610fb492505050565b151561088657600080fd5b506001949350505050565b600061089c33610af8565b15156108dc5760405160e560020a62461bcd02815260040180806020018281038252603081526020018061171f6030913960400191505060405180910390fd5b6106818383611151565b6108f03382611246565b50565b600160a060020a031660009081526020819052604090205490565b6109166109e0565b151561096c576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600754604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36007805473ffffffffffffffffffffffffffffffffffffffff19169055565b6109cd8282611324565b5050565b600754600160a060020a031690565b600754600160a060020a0316331490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106695780601f1061063e57610100808354040283529160200191610669565b610a5b33610af8565b1515610a9b5760405160e560020a62461bcd02815260040180806020018281038252603081526020018061171f6030913960400191505060405180910390fd5b6108f081611369565b610aad336113b1565b565b336000818152600160209081526040808320600160a060020a038716845290915281205490916106819185906106d8908663ffffffff610ee816565b6000610681338484610d9c565b6000610b0b60088363ffffffff6113f916565b92915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b610b446109e0565b1515610b9a576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610ba381611465565b7f2eb900bac6e5b21f659a14cf4e0b4a5689edb16947c549906436bc73b7053d16816040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c02578181015183820152602001610bea565b50505050905090810190601f168015610c2f5780820380516001836020036101000a031916815260200191505b509250505060405180910390a150565b610c476109e0565b1515610c9d576040805160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6108f081611478565b600160a060020a0383161515610cf05760405160e560020a62461bcd0281526004018080602001828103825260248152602001806117d86024913960400191505060405180910390fd5b600160a060020a0382161515610d3a5760405160e560020a62461bcd0281526004018080602001828103825260228152602001806116fd6022913960400191505060405180910390fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a0383161515610de65760405160e560020a62461bcd0281526004018080602001828103825260258152602001806117b36025913960400191505060405180910390fd5b600160a060020a0382161515610e305760405160e560020a62461bcd0281526004018080602001828103825260238152602001806116b46023913960400191505060405180910390fd5b600160a060020a038316600090815260208190526040902054610e59908263ffffffff610ee816565b600160a060020a038085166000908152602081905260408082209390935590841681522054610e8e908263ffffffff610f4816565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610f42576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610fa5576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000903b1190565b600080606085600160a060020a03163386866040516024018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561102457818101518382015260200161100c565b50505050905090810190601f1680156110515780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa4c0ed3600000000000000000000000000000000000000000000000000000000178152905182519297509550859450925090508083835b602083106110dd5780518252601f1990920191602091820191016110be565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461113f576040519150601f19603f3d011682016040523d82523d6000602084013e611144565b606091505b5090979650505050505050565b600160a060020a03821615156111b1576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546111c4908263ffffffff610f4816565b600255600160a060020a0382166000908152602081905260409020546111f0908263ffffffff610f4816565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a03821615156112905760405160e560020a62461bcd0281526004018080602001828103825260218152602001806117926021913960400191505060405180910390fd5b6002546112a3908263ffffffff610ee816565b600255600160a060020a0382166000908152602081905260409020546112cf908263ffffffff610ee816565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b61132e8282611246565b600160a060020a0382166000908152600160209081526040808320338085529252909120546109cd9184916106d8908563ffffffff610ee816565b61137a60088263ffffffff61152b16565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6113c260088263ffffffff6115af16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a03821615156114455760405160e560020a62461bcd0281526004018080602001828103825260228152602001806117706022913960400191505060405180910390fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b80516109cd90600690602084019061161b565b600160a060020a03811615156114c25760405160e560020a62461bcd0281526004018080602001828103825260268152602001806116d76026913960400191505060405180910390fd5b600754604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36007805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b61153582826113f9565b1561158a576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6115b982826113f9565b15156115f95760405160e560020a62461bcd02815260040180806020018281038252602181526020018061174f6021913960400191505060405180910390fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061165c57805160ff1916838001178555611689565b82800160010185558215611689579182015b8281111561168957825182559160200191906001019061166e565b50611695929150611699565b5090565b61067191905b80821115611695576000815560010161169f56fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a165627a7a723058207c749d6df364a7aaa18c63399327a32221ccf0f7021d478ffb837469705def750029

Deployed Bytecode Sourcemap

26123:254:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26123:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20799:83;;;:::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;20799:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9118:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9118:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;8141:91;;;:::i;:::-;;;;;;;;;;;;;;;;9737:256;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9737:256:0;;;;;;;;;;;;;;;;;:::i;21657:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10402:206;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10402:206:0;;;;;;;;:::i;24671:93::-;;;:::i;19423:369::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;19423:369:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;19423:369:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;19423:369: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;-1:-1;19423:369:0;;-1:-1:-1;19423:369:0;-1:-1:-1;19423:369:0;:::i;18039:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18039:143:0;;;;;;;;:::i;15091:81::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15091:81:0;;:::i;:::-;;8295:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8295:110:0;-1:-1:-1;;;;;8295:110:0;;:::i;23465:140::-;;;:::i;15234:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15234:103:0;;;;;;;;:::i;22654:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;22654:79:0;;;;;;;;;;;;;;23020:92;;;:::i;21001:87::-;;;:::i;17058:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17058:92:0;-1:-1:-1;;;;;17058:92:0;;:::i;17158:77::-;;;:::i;11111:216::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11111:216:0;;;;;;;;:::i;8618:156::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8618:156:0;;;;;;;;:::i;16941:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16941:109:0;-1:-1:-1;;;;;16941:109:0;;:::i;8837:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8837:134:0;;;;;;;;;;:::i;25895:140::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25895:140:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;25895:140:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25895:140: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;25895:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25895:140:0;;-1:-1:-1;25895:140:0;;-1:-1:-1;;;;;25895:140:0:i;23760:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23760:109:0;-1:-1:-1;;;;;23760:109:0;;:::i;20799:83::-;20869:5;20862:12;;;;;;;;-1:-1:-1;;20862:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20836:13;;20862:12;;20869:5;;20862:12;;20869:5;20862:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20799:83;;:::o;9118:148::-;9183:4;9200:36;9209:10;9221:7;9230:5;9200:8;:36::i;:::-;-1:-1:-1;9254:4:0;9118:148;;;;:::o;8141:91::-;8212:12;;8141:91;:::o;9737:256::-;9826:4;9843:36;9853:6;9861:9;9872:6;9843:9;:36::i;:::-;-1:-1:-1;;;;;9919:19:0;;;;;;:11;:19;;;;;;;;9907:10;9919:31;;;;;;;;;9890:73;;9899:6;;9919:43;;9955:6;9919:43;:35;:43;:::i;:::-;9890:8;:73::i;:::-;-1:-1:-1;9981:4:0;9737:256;;;;;:::o;21657:83::-;21723:9;;;;21657:83;:::o;10402:206::-;10508:10;10482:4;10529:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10529:32:0;;;;;;;;;;10482:4;;10499:79;;10520:7;;10529:48;;10566:10;10529:48;:36;:48;:::i;24671:93::-;24747:9;24740:16;;;;;;;;-1:-1:-1;;24740:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24714:13;;24740:16;;24747:9;;24740:16;;24747:9;24740:16;;;;;;;;;;;;;;;;;;;;;;;;19423:369;19514:4;-1:-1:-1;;;;;19537:20:0;;19552:4;19537:20;;19529:29;;;;;;19569:34;19579:10;19591:3;19596:6;19569:9;:34::i;:::-;19640:3;-1:-1:-1;;;;;19619:40:0;19628:10;-1:-1:-1;;;;;19619:40:0;;19645:6;19653:5;;19619:40;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;19619:40:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;19619:40:0;;;;-1:-1:-1;19619:40:0;;-1:-1:-1;;;;;19619:40:0;19674:23;19693:3;19674:18;:23::i;:::-;19670:95;;;19718:36;19735:3;19740:6;19748:5;;19718:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;19718:16:0;;-1:-1:-1;;;19718:36:0:i;:::-;19710:45;;;;;;;;-1:-1:-1;19780:4:0;19423:369;;;;;;:::o;18039:143::-;18113:4;16840:20;16849:10;16840:8;:20::i;:::-;16832:81;;;;;;-1:-1:-1;;;;;16832:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18130:22;18136:7;18145:6;18130:5;:22::i;15091:81::-;15139:25;15145:10;15157:6;15139:5;:25::i;:::-;15091:81;:::o;8295:110::-;-1:-1:-1;;;;;8379:18:0;8352:7;8379:18;;;;;;;;;;;;8295:110::o;23465:140::-;22866:9;:7;:9::i;:::-;22858:54;;;;;;;-1:-1:-1;;;;;22858:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23548:6;;23527:40;;23564:1;;-1:-1:-1;;;;;23548:6:0;;23527:40;;23564:1;;23527:40;23578:6;:19;;-1:-1:-1;;23578:19:0;;;23465:140::o;15234:103::-;15303:26;15313:7;15322:6;15303:9;:26::i;:::-;15234:103;;:::o;22654:79::-;22719:6;;-1:-1:-1;;;;;22719:6:0;22654:79;:::o;23020:92::-;23098:6;;-1:-1:-1;;;;;23098:6:0;23084:10;:20;;23020:92::o;21001:87::-;21073:7;21066:14;;;;;;;;-1:-1:-1;;21066:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21040:13;;21066:14;;21073:7;;21066:14;;21073:7;21066:14;;;;;;;;;;;;;;;;;;;;;;;;17058:92;16840:20;16849:10;16840:8;:20::i;:::-;16832:81;;;;;;-1:-1:-1;;;;;16832:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17123:19;17134:7;17123:10;:19::i;17158:77::-;17202:25;17216:10;17202:13;:25::i;:::-;17158:77::o;11111:216::-;11222:10;11196:4;11243:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;11243:32:0;;;;;;;;;;11196:4;;11213:84;;11234:7;;11243:53;;11280:15;11243:53;:36;:53;:::i;8618:156::-;8687:4;8704:40;8714:10;8726:9;8737:6;8704:9;:40::i;16941:109::-;16997:4;17021:21;:8;17034:7;17021:21;:12;:21;:::i;:::-;17014:28;16941:109;-1:-1:-1;;16941:109:0:o;8837:134::-;-1:-1:-1;;;;;8936:18:0;;;8909:7;8936:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8837:134::o;25895:140::-;22866:9;:7;:9::i;:::-;22858:54;;;;;;;-1:-1:-1;;;;;22858:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25966:22;25979:8;25966:12;:22::i;:::-;26002:25;26018:8;26002:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;26002:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25895:140;:::o;23760:109::-;22866:9;:7;:9::i;:::-;22858:54;;;;;;;-1:-1:-1;;;;;22858:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23833:28;23852:8;23833:18;:28::i;13913:335::-;-1:-1:-1;;;;;14006:19:0;;;;13998:68;;;;-1:-1:-1;;;;;13998:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14085:21:0;;;;14077:68;;;;-1:-1:-1;;;;;14077:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14158:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;14209:31;;;;;;;;;;;;;;;;;13913:335;;;:::o;11817:429::-;-1:-1:-1;;;;;11915:20:0;;;;11907:70;;;;-1:-1:-1;;;;;11907:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11996:23:0;;;;11988:71;;;;-1:-1:-1;;;;;11988:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12092:17:0;;:9;:17;;;;;;;;;;;:29;;12114:6;12092:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;12072:17:0;;;:9;:17;;;;;;;;;;;:49;;;;12155:20;;;;;;;:32;;12180:6;12155:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;12132:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;12203:35;;;;;;;12132:20;;12203:35;;;;;;;;;;;;;11817:429;;;:::o;4256:184::-;4314:7;4342:6;;;;4334:49;;;;;-1:-1:-1;;;;;4334:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4406:5:0;;;4256:184::o;3800:181::-;3858:7;3890:5;;;3914:6;;;;3906:46;;;;;-1:-1:-1;;;;;3906:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3972:1;3800:181;-1:-1:-1;;;3800:181:0:o;18809:422::-;18869:4;19176:20;;19215:8;;18809:422::o;19800:272::-;19888:4;19904:12;19918:17;19939:3;-1:-1:-1;;;;;19939:8:0;20014:10;20026:6;20034:5;19948:92;;;;;;-1:-1:-1;;;;;19948:92:0;-1:-1:-1;;;;;19948:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;19948:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19948:92:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;19948:92:0;;;49:4:-1;25:18;;61:17;;19948:92:0;182:15:-1;19948:92:0;179:29:-1;160:49;;19939:102:0;;;;19948:92;;-1:-1:-1;19939:102:0;-1:-1:-1;19939:102:0;;-1:-1:-1;25:18;-1:-1;19939:102:0;-1:-1:-1;19939:102:0;;25:18:-1;36:153;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;19939:102:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;-1:-1;19903:138:0;;19800:272;-1:-1:-1;;;;;;;19800:272:0:o;12527:308::-;-1:-1:-1;;;;;12603:21:0;;;;12595:65;;;;;-1:-1:-1;;;;;12595:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12688:12;;:24;;12705:6;12688:24;:16;:24;:::i;:::-;12673:12;:39;-1:-1:-1;;;;;12744:18:0;;:9;:18;;;;;;;;;;;:30;;12767:6;12744:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;12723:18:0;;:9;:18;;;;;;;;;;;:51;;;;12790:37;;;;;;;12723:18;;:9;;12790:37;;;;;;;;;;12527:308;;:::o;13167:306::-;-1:-1:-1;;;;;13242:21:0;;;;13234:67;;;;-1:-1:-1;;;;;13234:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13329:12;;:23;;13346:5;13329:23;:16;:23;:::i;:::-;13314:12;:38;-1:-1:-1;;;;;13384:18:0;;:9;:18;;;;;;;;;;;:29;;13407:5;13384:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;13363:18:0;;:9;:18;;;;;;;;;;;:50;;;;13429:36;;;;;;;13363:9;;13429:36;;;;;;;;;;;13167:306;;:::o;14433:188::-;14505:22;14511:7;14520:6;14505:5;:22::i;:::-;-1:-1:-1;;;;;14568:20:0;;;;;;:11;:20;;;;;;;;14556:10;14568:32;;;;;;;;;14538:75;;14547:7;;14568:44;;14605:6;14568:44;:36;:44;:::i;17243:122::-;17300:21;:8;17313:7;17300:21;:12;:21;:::i;:::-;17337:20;;-1:-1:-1;;;;;17337:20:0;;;;;;;;17243:122;:::o;17373:130::-;17433:24;:8;17449:7;17433:24;:15;:24;:::i;:::-;17473:22;;-1:-1:-1;;;;;17473:22:0;;;;;;;;17373:130;:::o;16215:203::-;16287:4;-1:-1:-1;;;;;16312:21:0;;;;16304:68;;;;-1:-1:-1;;;;;16304:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16390:20:0;:11;:20;;;;;;;;;;;;;;;16215:203::o;24772:96::-;24839:21;;;;:9;;:21;;;;;:::i;23975:229::-;-1:-1:-1;;;;;24049:22:0;;;;24041:73;;;;-1:-1:-1;;;;;24041:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24151:6;;24130:38;;-1:-1:-1;;;;;24130:38:0;;;;24151:6;;24130:38;;24151:6;;24130:38;24179:6;:17;;-1:-1:-1;;24179:17:0;-1:-1:-1;;;;;24179:17:0;;;;;;;;;;23975:229::o;15679:178::-;15757:18;15761:4;15767:7;15757:3;:18::i;:::-;15756:19;15748:63;;;;;-1:-1:-1;;;;;15748:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15822:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;15822:27:0;15845:4;15822:27;;;15679:178::o;15937:183::-;16017:18;16021:4;16027:7;16017:3;:18::i;:::-;16009:64;;;;;;-1:-1:-1;;;;;16009:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16084:20:0;16107:5;16084:20;;;;;;;;;;;:28;;-1:-1:-1;;16084:28:0;;;15937:183::o;26123:254::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26123:254:0;;;-1:-1:-1;26123:254:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://7c749d6df364a7aaa18c63399327a32221ccf0f7021d478ffb837469705def75
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.