ETH Price: $3,213.33 (-6.71%)
Gas: 7 Gwei

Token

DarkQuery (DARK)
 

Overview

Max Total Supply

100,000,000 DARK

Holders

404

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
myfuckingwallet.eth
Balance
31,552.400156582433152065 DARK

Value
$0.00
0x0eFb322A9b425A6b319059C1cCeB1dA03C328720
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:
DARK

Compiler Version
v0.5.1+commit.c8a2cb62

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-17
*/

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);
}

/**
 * @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;
    }
}

/**
 * @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));
    }
}


/**
 * @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;
    }
}

/**
 * @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];
    }
}

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);
    }
}

/**
 * @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;
    }
}

/**
 * @dev Extension of `ERC20Mintable` that adds a cap to the supply of tokens.
 */
contract ERC20Capped is ERC20Mintable {
    uint256 private _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor (uint256 cap) public {
        require(cap > 0, "ERC20Capped: cap is 0");
        _cap = cap;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view returns (uint256) {
        return _cap;
    }

    /**
     * @dev See `ERC20Mintable.mint`.
     *
     * Requirements:
     *
     * - `value` must not cause the total supply to go over the cap.
     */
    function _mint(address account, uint256 value) internal {
        require(totalSupply().add(value) <= _cap, "ERC20Capped: cap exceeded");
        super._mint(account, value);
    }
}

/**
 * @title The DARK Token
 */
contract DARK is ERC20Capped(100000000 * (10 ** uint256(18))), ERC20Detailed(
        "DarkQuery",  // token name
        "DARK",       // token symbol
        18            // token decimals
    ) {

    /**
     * @dev Constructor that gives 0x89552A9AF1723bd8F67249d960387B014838D60C all of existing tokens.
     */
    constructor () public {
        _mint(0x89552A9AF1723bd8F67249d960387B014838D60C, 100000000 * (10 ** uint256(decimals())));
    }
}

/**
0x89552A9AF1723bd8F67249d960387B014838D60C
0x89552A9AF1723bd8F67249d960387B014838D60C

CHECKSUM OK!
 */

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":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"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":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"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":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"},{"inputs":[],"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":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"}]

60806040523480156200001157600080fd5b50604080518082018252600981527f4461726b517565727900000000000000000000000000000000000000000000006020808301919091528251808401909352600483527f4441524b00000000000000000000000000000000000000000000000000000000908301529060126a52b7d2dcc80cd2e40000006200009d33640100000000620001a6810204565b600081116200010d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015290519081900360640190fd5b600455825162000125906005906020860190620005c8565b5081516200013b906006906020850190620005c8565b506007805460ff191660ff9290921691909117905550620001a090507389552a9af1723bd8f67249d960387b014838d60c6200017f640100000000620001f8810204565b60ff16600a0a6305f5e1000262000202640100000000026401000000009004565b6200066a565b620001c160038264010000000062000e74620002be82021704565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60075460ff165b90565b60045462000232826200021d64010000000062000365810204565b9064010000000062000b646200036b82021704565b1115620002a057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b620002ba828264010000000062000d7f620003e782021704565b5050565b620002d3828264010000000062000508810204565b156200034057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b60025490565b600082820183811015620003e057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600160a060020a03821615156200045f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546200047c908264010000000062000b646200036b82021704565b600255600160a060020a038216600090815260208190526040902054620004b2908264010000000062000b646200036b82021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000600160a060020a0382161515620005a857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200060b57805160ff19168380011785556200063b565b828001600101855582156200063b579182015b828111156200063b5782518255916020019190600101906200061e565b50620006499291506200064d565b5090565b620001ff91905b8082111562000649576000815560010162000654565b610fcc806200067a6000396000f3fe6080604052600436106100df577c0100000000000000000000000000000000000000000000000000000000600035046306fdde0381146100e4578063095ea7b31461016e57806318160ddd146101bb57806323b872dd146101e2578063313ce56714610225578063355274ea14610250578063395093511461026557806340c10f191461029e57806370a08231146102d757806395d89b411461030a578063983b2d561461031f5780639865027514610354578063a457c2d714610369578063a9059cbb146103a2578063aa271e1a146103db578063dd62ed3e1461040e575b600080fd5b3480156100f057600080fd5b506100f9610449565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013357818101518382015260200161011b565b50505050905090810190601f1680156101605780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561017a57600080fd5b506101a76004803603604081101561019157600080fd5b50600160a060020a0381351690602001356104df565b604080519115158252519081900360200190f35b3480156101c757600080fd5b506101d06104f5565b60408051918252519081900360200190f35b3480156101ee57600080fd5b506101a76004803603606081101561020557600080fd5b50600160a060020a038135811691602081013590911690604001356104fb565b34801561023157600080fd5b5061023a610552565b6040805160ff9092168252519081900360200190f35b34801561025c57600080fd5b506101d061055b565b34801561027157600080fd5b506101a76004803603604081101561028857600080fd5b50600160a060020a038135169060200135610561565b3480156102aa57600080fd5b506101a7600480360360408110156102c157600080fd5b50600160a060020a03813516906020013561059d565b3480156102e357600080fd5b506101d0600480360360208110156102fa57600080fd5b5035600160a060020a031661062e565b34801561031657600080fd5b506100f9610649565b34801561032b57600080fd5b506103526004803603602081101561034257600080fd5b5035600160a060020a03166106aa565b005b34801561036057600080fd5b5061035261073b565b34801561037557600080fd5b506101a76004803603604081101561038c57600080fd5b50600160a060020a038135169060200135610746565b3480156103ae57600080fd5b506101a7600480360360408110156103c557600080fd5b50600160a060020a038135169060200135610782565b3480156103e757600080fd5b506101a7600480360360208110156103fe57600080fd5b5035600160a060020a031661078f565b34801561041a57600080fd5b506101d06004803603604081101561043157600080fd5b50600160a060020a03813581169160200135166107a8565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104d55780601f106104aa576101008083540402835291602001916104d5565b820191906000526020600020905b8154815290600101906020018083116104b857829003601f168201915b5050505050905090565b60006104ec3384846107d3565b50600192915050565b60025490565b6000610508848484610940565b600160a060020a038416600090815260016020908152604080832033808552925290912054610548918691610543908663ffffffff610b0416565b6107d3565b5060019392505050565b60075460ff1690565b60045490565b336000818152600160209081526040808320600160a060020a038716845290915281205490916104ec918590610543908663ffffffff610b6416565b60006105a83361078f565b1515610624576040805160e560020a62461bcd02815260206004820152603060248201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f20746865204d696e74657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b6104ec8383610bc8565b600160a060020a031660009081526020819052604090205490565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104d55780601f106104aa576101008083540402835291602001916104d5565b6106b33361078f565b151561072f576040805160e560020a62461bcd02815260206004820152603060248201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f20746865204d696e74657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b61073881610c47565b50565b61074433610c8f565b565b336000818152600160209081526040808320600160a060020a038716845290915281205490916104ec918590610543908663ffffffff610b0416565b60006104ec338484610940565b60006107a260038363ffffffff610cd716565b92915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a0383161515610858576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156108de576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a03831615156109c6576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610a4c576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a038316600090815260208190526040902054610a75908263ffffffff610b0416565b600160a060020a038085166000908152602081905260408082209390935590841681522054610aaa908263ffffffff610b6416565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610b5e576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610bc1576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600454610be382610bd76104f5565b9063ffffffff610b6416565b1115610c39576040805160e560020a62461bcd02815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b610c438282610d7f565b5050565b610c5860038263ffffffff610e7416565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610ca060038263ffffffff610ef816565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a0382161515610d5f576040805160e560020a62461bcd02815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b600160a060020a0382161515610ddf576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254610df2908263ffffffff610b6416565b600255600160a060020a038216600090815260208190526040902054610e1e908263ffffffff610b6416565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610e7e8282610cd7565b15610ed3576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b610f028282610cd7565b1515610f7e576040805160e560020a62461bcd02815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0316600090815260209190915260409020805460ff1916905556fea165627a7a72305820ef1a13157dcce664fc50d2b55937bec8b417acef8355fc284611218457a0a5ca0029

Deployed Bytecode

0x6080604052600436106100df577c0100000000000000000000000000000000000000000000000000000000600035046306fdde0381146100e4578063095ea7b31461016e57806318160ddd146101bb57806323b872dd146101e2578063313ce56714610225578063355274ea14610250578063395093511461026557806340c10f191461029e57806370a08231146102d757806395d89b411461030a578063983b2d561461031f5780639865027514610354578063a457c2d714610369578063a9059cbb146103a2578063aa271e1a146103db578063dd62ed3e1461040e575b600080fd5b3480156100f057600080fd5b506100f9610449565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013357818101518382015260200161011b565b50505050905090810190601f1680156101605780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561017a57600080fd5b506101a76004803603604081101561019157600080fd5b50600160a060020a0381351690602001356104df565b604080519115158252519081900360200190f35b3480156101c757600080fd5b506101d06104f5565b60408051918252519081900360200190f35b3480156101ee57600080fd5b506101a76004803603606081101561020557600080fd5b50600160a060020a038135811691602081013590911690604001356104fb565b34801561023157600080fd5b5061023a610552565b6040805160ff9092168252519081900360200190f35b34801561025c57600080fd5b506101d061055b565b34801561027157600080fd5b506101a76004803603604081101561028857600080fd5b50600160a060020a038135169060200135610561565b3480156102aa57600080fd5b506101a7600480360360408110156102c157600080fd5b50600160a060020a03813516906020013561059d565b3480156102e357600080fd5b506101d0600480360360208110156102fa57600080fd5b5035600160a060020a031661062e565b34801561031657600080fd5b506100f9610649565b34801561032b57600080fd5b506103526004803603602081101561034257600080fd5b5035600160a060020a03166106aa565b005b34801561036057600080fd5b5061035261073b565b34801561037557600080fd5b506101a76004803603604081101561038c57600080fd5b50600160a060020a038135169060200135610746565b3480156103ae57600080fd5b506101a7600480360360408110156103c557600080fd5b50600160a060020a038135169060200135610782565b3480156103e757600080fd5b506101a7600480360360208110156103fe57600080fd5b5035600160a060020a031661078f565b34801561041a57600080fd5b506101d06004803603604081101561043157600080fd5b50600160a060020a03813581169160200135166107a8565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104d55780601f106104aa576101008083540402835291602001916104d5565b820191906000526020600020905b8154815290600101906020018083116104b857829003601f168201915b5050505050905090565b60006104ec3384846107d3565b50600192915050565b60025490565b6000610508848484610940565b600160a060020a038416600090815260016020908152604080832033808552925290912054610548918691610543908663ffffffff610b0416565b6107d3565b5060019392505050565b60075460ff1690565b60045490565b336000818152600160209081526040808320600160a060020a038716845290915281205490916104ec918590610543908663ffffffff610b6416565b60006105a83361078f565b1515610624576040805160e560020a62461bcd02815260206004820152603060248201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f20746865204d696e74657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b6104ec8383610bc8565b600160a060020a031660009081526020819052604090205490565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104d55780601f106104aa576101008083540402835291602001916104d5565b6106b33361078f565b151561072f576040805160e560020a62461bcd02815260206004820152603060248201527f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560448201527f20746865204d696e74657220726f6c6500000000000000000000000000000000606482015290519081900360840190fd5b61073881610c47565b50565b61074433610c8f565b565b336000818152600160209081526040808320600160a060020a038716845290915281205490916104ec918590610543908663ffffffff610b0416565b60006104ec338484610940565b60006107a260038363ffffffff610cd716565b92915050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a0383161515610858576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156108de576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a03831615156109c6576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610a4c576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a038316600090815260208190526040902054610a75908263ffffffff610b0416565b600160a060020a038085166000908152602081905260408082209390935590841681522054610aaa908263ffffffff610b6416565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610b5e576040805160e560020a62461bcd02815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610bc1576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600454610be382610bd76104f5565b9063ffffffff610b6416565b1115610c39576040805160e560020a62461bcd02815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b610c438282610d7f565b5050565b610c5860038263ffffffff610e7416565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610ca060038263ffffffff610ef816565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a0382161515610d5f576040805160e560020a62461bcd02815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b600160a060020a0382161515610ddf576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254610df2908263ffffffff610b6416565b600255600160a060020a038216600090815260208190526040902054610e1e908263ffffffff610b6416565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610e7e8282610cd7565b15610ed3576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b610f028282610cd7565b1515610f7e576040805160e560020a62461bcd02815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0316600090815260209190915260409020805460ff1916905556fea165627a7a72305820ef1a13157dcce664fc50d2b55937bec8b417acef8355fc284611218457a0a5ca0029

Deployed Bytecode Sourcemap

19466:466:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14994:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14994: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;14994:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8865:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8865:148:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8865:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;7888:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7888:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;9484:256;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9484:256:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9484:256:0;;;;;;;;;;;;;;;;;:::i;15852:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15852:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18992:75;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18992:75:0;;;:::i;10149:206::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10149:206:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10149:206:0;;;;;;;;:::i;18343:143::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18343:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18343:143:0;;;;;;;;:::i;8042:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8042:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8042:110:0;-1:-1:-1;;;;;8042:110:0;;:::i;15196:87::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15196:87:0;;;:::i;17467:92::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17467:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17467:92:0;-1:-1:-1;;;;;17467:92:0;;:::i;:::-;;17567:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17567:77:0;;;:::i;10858:216::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10858:216:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10858:216:0;;;;;;;;:::i;8365:156::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8365:156:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8365:156:0;;;;;;;;:::i;17350:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17350:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17350:109:0;-1:-1:-1;;;;;17350:109:0;;:::i;8584:134::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8584:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8584:134:0;;;;;;;;;;:::i;14994:83::-;15064:5;15057:12;;;;;;;;-1:-1:-1;;15057:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15031:13;;15057:12;;15064:5;;15057:12;;15064:5;15057:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14994:83;:::o;8865:148::-;8930:4;8947:36;8956:10;8968:7;8977:5;8947:8;:36::i;:::-;-1:-1:-1;9001:4:0;8865:148;;;;:::o;7888:91::-;7959:12;;7888:91;:::o;9484:256::-;9573:4;9590:36;9600:6;9608:9;9619:6;9590:9;:36::i;:::-;-1:-1:-1;;;;;9666:19:0;;;;;;:11;:19;;;;;;;;9654:10;9666:31;;;;;;;;;9637:73;;9646:6;;9666:43;;9702:6;9666:43;:35;:43;:::i;:::-;9637:8;:73::i;:::-;-1:-1:-1;9728:4:0;9484:256;;;;;:::o;15852:83::-;15918:9;;;;15852:83;:::o;18992:75::-;19055:4;;18992:75;:::o;10149:206::-;10255:10;10229:4;10276:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10276:32:0;;;;;;;;;;10229:4;;10246:79;;10267:7;;10276:48;;10313:10;10276:48;:36;:48;:::i;18343:143::-;18417:4;17249:20;17258:10;17249:8;:20::i;:::-;17241:81;;;;;;;-1:-1:-1;;;;;17241:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18434:22;18440:7;18449:6;18434:5;:22::i;8042:110::-;-1:-1:-1;;;;;8126:18:0;8099:7;8126:18;;;;;;;;;;;;8042:110::o;15196:87::-;15268:7;15261:14;;;;;;;;-1:-1:-1;;15261:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15235:13;;15261:14;;15268:7;;15261:14;;15268:7;15261:14;;;;;;;;;;;;;;;;;;;;;;;;17467:92;17249:20;17258:10;17249:8;:20::i;:::-;17241:81;;;;;;;-1:-1:-1;;;;;17241:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17532:19;17543:7;17532:10;:19::i;:::-;17467:92;:::o;17567:77::-;17611:25;17625:10;17611:13;:25::i;:::-;17567:77::o;10858:216::-;10969:10;10943:4;10990:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10990:32:0;;;;;;;;;;10943:4;;10960:84;;10981:7;;10990:53;;11027:15;10990:53;:36;:53;:::i;8365:156::-;8434:4;8451:40;8461:10;8473:9;8484:6;8451:9;:40::i;17350:109::-;17406:4;17430:21;:8;17443:7;17430:21;:12;:21;:::i;:::-;17423:28;17350:109;-1:-1:-1;;17350:109:0:o;8584:134::-;-1:-1:-1;;;;;8683:18:0;;;8656:7;8683:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8584:134::o;13660:335::-;-1:-1:-1;;;;;13753:19:0;;;;13745:68;;;;;-1:-1:-1;;;;;13745:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13832:21:0;;;;13824:68;;;;;-1:-1:-1;;;;;13824:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13905:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;13956:31;;;;;;;;;;;;;;;;;13660:335;;;:::o;11564:429::-;-1:-1:-1;;;;;11662:20:0;;;;11654:70;;;;;-1:-1:-1;;;;;11654:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11743:23:0;;;;11735:71;;;;;-1:-1:-1;;;;;11735:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11839:17:0;;:9;:17;;;;;;;;;;;:29;;11861:6;11839:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;11819:17:0;;;:9;:17;;;;;;;;;;;:49;;;;11902:20;;;;;;;:32;;11927:6;11902:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;11879:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;11950:35;;;;;;;11879:20;;11950:35;;;;;;;;;;;;;11564:429;;;:::o;4100:184::-;4158:7;4186:6;;;;4178:49;;;;;-1:-1:-1;;;;;4178:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4250:5:0;;;4100:184::o;3644:181::-;3702:7;3734:5;;;3758:6;;;;3750:46;;;;;-1:-1:-1;;;;;3750:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3816:1;3644:181;-1:-1:-1;;;3644:181:0:o;19240:183::-;19343:4;;19315:24;19333:5;19315:13;:11;:13::i;:::-;:17;:24;:17;:24;:::i;:::-;:32;;19307:70;;;;;-1:-1:-1;;;;;19307:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19388:27;19400:7;19409:5;19388:11;:27::i;:::-;19240:183;;:::o;17652:122::-;17709:21;:8;17722:7;17709:21;:12;:21;:::i;:::-;17746:20;;-1:-1:-1;;;;;17746:20:0;;;;;;;;17652:122;:::o;17782:130::-;17842:24;:8;17858:7;17842:24;:15;:24;:::i;:::-;17882:22;;-1:-1:-1;;;;;17882:22:0;;;;;;;;17782:130;:::o;16725:203::-;16797:4;-1:-1:-1;;;;;16822:21:0;;;;16814:68;;;;;-1:-1:-1;;;;;16814:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16900:20:0;:11;:20;;;;;;;;;;;;;;;16725:203::o;12274:308::-;-1:-1:-1;;;;;12350:21:0;;;;12342:65;;;;;-1:-1:-1;;;;;12342:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12435:12;;:24;;12452:6;12435:24;:16;:24;:::i;:::-;12420:12;:39;-1:-1:-1;;;;;12491:18:0;;:9;:18;;;;;;;;;;;:30;;12514:6;12491:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;12470:18:0;;:9;:18;;;;;;;;;;;:51;;;;12537:37;;;;;;;12470:18;;:9;;12537:37;;;;;;;;;;12274:308;;:::o;16189:178::-;16267:18;16271:4;16277:7;16267:3;:18::i;:::-;16266:19;16258:63;;;;;-1:-1:-1;;;;;16258:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16332:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;16332:27:0;16355:4;16332:27;;;16189:178::o;16447:183::-;16527:18;16531:4;16537:7;16527:3;:18::i;:::-;16519:64;;;;;;;-1:-1:-1;;;;;16519:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16594:20:0;16617:5;16594:20;;;;;;;;;;;:28;;-1:-1:-1;;16594:28:0;;;16447:183::o

Swarm Source

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