ETH Price: $3,152.66 (+1.05%)
Gas: 2 Gwei

Token

Caerus (CRS)
 

Overview

Max Total Supply

5,500,000 CRS

Holders

255

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100 CRS

Value
$0.00
0x769cc2ebb444da610a6f8e8971612399914406e1
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:
Caerus

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-16
*/

/*  ,o888888o.           .8.          8 8888888888   8 888888888o.  8 8888      88    d888888o.
   8888     `88.        .888.         8 8888         8 8888    `88. 8 8888      88  .`8888:' `88.
,8 8888       `8.      :88888.        8 8888         8 8888     `88 8 8888      88  8.`8888.   Y8
88 8888               . `88888.       8 8888         8 8888     ,88 8 8888      88  `8.`8888.
88 8888              .8. `88888.      8 888888888888 8 8888.   ,88' 8 8888      88   `8.`8888.
88 8888             .8`8. `88888.     8 8888         8 888888888P'  8 8888      88    `8.`8888.
88 8888            .8' `8. `88888.    8 8888         8 8888`8b      8 8888      88     `8.`8888.
`8 8888       .8' .8'   `8. `88888.   8 8888         8 8888 `8b.    ` 8888     ,8P 8b   `8.`8888.
   8888     ,88' .888888888. `88888.  8 8888         8 8888   `8b.    8888   ,d8P  `8b.  ;8.`8888
    `8888888P'  .8'       `8. `88888. 8 888888888888 8 8888     `88.   `Y88888P'    `Y8888P ,88P' */


pragma solidity ^0.5.17;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @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 applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

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

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

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _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;
    }
}

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

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

interface IERC20 {
  function totalSupply() external view returns (uint256);
  function balanceOf(address who) external view returns (uint256);
  function allowance(address owner, address spender) external view returns (uint256);
  function transfer(address to, uint256 value) external returns (bool);
  function approve(address spender, uint256 value) external returns (bool);
  function transferFrom(address from, address to, uint256 value) external returns (bool);

  event Transfer(address indexed from, address indexed to, uint256 value);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract ERC20Detailed is IERC20 {
  string private _name;
  string private _symbol;
  uint8 private _decimals;

  constructor(string memory name, string memory symbol, uint8 decimals) public {
    _name = name;
    _symbol = symbol;
    _decimals = decimals;
  }

  function name() public view returns(string memory) {
    return _name;
  }

  function symbol() public view returns(string memory) {
    return _symbol;
  }

  function decimals() public view returns(uint8) {
    return _decimals;
  }
}

contract Caerus is ERC20Detailed, Ownable {
    using SafeMath for uint256;

    address public lastBuyer;                       //The last address to purchase Caerus.

    string constant tokenName = "Caerus";
    string constant tokenSymbol = "CRS";
    uint8 constant tokenDecimals = 18;
    uint8 public titheRate;                         // The fee % taken on transfers, distributed to LastBuyer.
    uint256 public maxbuyorder;
    uint256 public _totalSupply;                    // 5,500,000 CRS
    uint256 public deploymentTime;

    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) public whitelistedAddress;        // Immune to Tithe on transfers
    mapping (address => bool) public blacklistedAddress;        // Cannot purchase CRS

    modifier isNotBlacklisted(address recipient) {
        require(!blacklistedAddress[recipient]);
        _;
    }

    constructor() public payable ERC20Detailed(tokenName, tokenSymbol, tokenDecimals) {
        _mint(msg.sender, 5500000000000000000000000);
        _totalSupply = 5500000000000000000000000;
        lastBuyer = msg.sender;
        whitelistAdd(msg.sender);
        maxbuyorder = 45000000000000000000000;
        titheRate = 10;
        deploymentTime = now;
        }

    /**
     * @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 has been modified.
     *
     * A check is performed to determine if the transfer is for a buy or sell.
     * If Buying: Transfer and become the new lastBuyer.
     * If Selling: Transfer, pay 10% Fee (Tithe) to the current lastBuyer.
     *
     * Checks if the address calling the function is whitelisted. If it is, then the Tithe is 0 for the tx.
     * 
     */

    function _transfer(address sender, address recipient, uint256 amount) internal isNotBlacklisted(recipient) {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        uint tokensbeforetransfer = _balances[tx.origin];
        uint Tithe = (amount / 100) * titheRate;

        if (isWhiteListed(msg.sender) == true || isWhiteListed(tx.origin) == true) {
            Tithe = 0;
        }
        
        if ((deploymentTime + 10 minutes) > now) {
            if (isWhiteListed(tx.origin) == false) {
                require(amount < maxbuyorder);}
            }

        uint tokenstotransfer = amount.sub(Tithe);

        _balances[sender] -= amount;
        _balances[recipient] += amount.sub(Tithe);
        _balances[lastBuyer] += Tithe;

        if (tokensbeforetransfer < _balances[tx.origin]) {
            lastBuyer = tx.origin;
            emit Transfer(sender, recipient, tokenstotransfer);
        } 
            else {
                emit Transfer(sender, recipient, tokenstotransfer);
                emit Transfer(sender, lastBuyer, Tithe);
            }
    }

    /**
     * @dev Checks if an address is whitelisted
     */
    function isWhiteListed(address _address) internal view returns(bool) {
        return whitelistedAddress[_address];
    }

    /**
     * @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(_msgSender(), 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 amount) public returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

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

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

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


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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This 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 amount) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Adds an address as whitelisted
     */
    function whitelistAdd(address _address) public onlyOwner {
        whitelistedAddress[_address] = true;
    }

    /**
     * @dev Removes an address as whitelisted
     */
    function whitelistRemove(address _address) public onlyOwner {
        whitelistedAddress[_address] = false;
    }

    /**
     * @dev Adds an address as whitelisted
     */
    function blacklistAdd(address _address) public onlyOwner {
        blacklistedAddress[_address] = true;
    }

    /**
     * @dev Removes an address as blacklisted
     */
    function blacklistRemove(address _address) public onlyOwner {
        blacklistedAddress[_address] = false;
    }

    /**
     * @dev Sets the Tithe rate
     */
    function setTithe(uint8 newtithe) public onlyOwner {
         titheRate = newtithe;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":true,"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"blacklistAdd","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"blacklistRemove","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklistedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"deploymentTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastBuyer","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxbuyorder","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint8","name":"newtithe","type":"uint8"}],"name":"setTithe","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"titheRate","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"whitelistAdd","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"whitelistRemove","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"}]

60806040526040518060400160405280600681526020017f43616572757300000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4352530000000000000000000000000000000000000000000000000000000000815250601282600090805190602001906200008a92919062000653565b508160019080519060200190620000a392919062000653565b5080600260006101000a81548160ff021916908360ff1602179055505050506000620000d46200022e60201b60201c565b905080600260016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000190336a048cab98f1671af58000006200023660201b60201c565b6a048cab98f1671af580000060058190555033600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001f4336200048560201b60201c565b69098774738bc822200000600481905550600a600360146101000a81548160ff021916908360ff1602179055504260068190555062000702565b600033905090565b620002466200056360201b60201c565b620002b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200035d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6200037981600554620005ca60201b62001cf21790919060201c565b600581905550620003d881600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620005ca60201b62001cf21790919060201c565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b620004956200056360201b60201c565b62000508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16620005ae6200022e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b60008082840190508381101562000649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200069657805160ff1916838001178555620006c7565b82800160010185558215620006c7579182015b82811115620006c6578251825591602001919060010190620006a9565b5b509050620006d69190620006da565b5090565b620006ff91905b80821115620006fb576000816000905550600101620006e1565b5090565b90565b61209680620007126000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a9059cbb11610097578063d5e7831b11610071578063d5e7831b14610861578063dd62ed3e14610885578063ecda10f5146108fd578063f2fde38b1461091b576101a9565b8063a9059cbb1461075b578063a932ed0d146107c1578063c30796ab14610805576101a9565b80638f32d59b116100d35780638f32d59b1461063257806395d89b41146106545780639bc57c9e146106d7578063a457c2d7146106f5576101a9565b806370a0823114610586578063715018a6146105de5780638da5cb5b146105e8576101a9565b806323b872dd116101665780633eaaf86b116101405780633eaaf86b14610497578063524fa7b9146104b5578063528ec03a146104f95780635a6759b71461052a576101a9565b806323b872dd14610387578063313ce5671461040d5780633950935114610431576101a9565b80630258ce56146101ae57806306fdde03146101f2578063095ea7b31461027557806313ecfbfa146102db57806318160ddd1461032557806321a4d39f14610343575b600080fd5b6101f0600480360360208110156101c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061095f565b005b6101fa610a34565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561023a57808201518184015260208101905061021f565b50505050905090810190601f1680156102675780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102c16004803603604081101561028b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ad6565b604051808215151515815260200191505060405180910390f35b6102e3610af4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61032d610b1a565b6040518082815260200191505060405180910390f35b6103856004803603602081101561035957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b24565b005b6103f36004803603606081101561039d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bf9565b604051808215151515815260200191505060405180910390f35b610415610cd2565b604051808260ff1660ff16815260200191505060405180910390f35b61047d6004803603604081101561044757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ce9565b604051808215151515815260200191505060405180910390f35b61049f610d9c565b6040518082815260200191505060405180910390f35b6104f7600480360360208110156104cb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610da2565b005b6105286004803603602081101561050f57600080fd5b81019080803560ff169060200190929190505050610e77565b005b61056c6004803603602081101561054057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f0f565b604051808215151515815260200191505060405180910390f35b6105c86004803603602081101561059c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f2f565b6040518082815260200191505060405180910390f35b6105e6610f78565b005b6105f06110b3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61063a6110dd565b604051808215151515815260200191505060405180910390f35b61065c61113c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561069c578082015181840152602081019050610681565b50505050905090810190601f1680156106c95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106df6111de565b6040518082815260200191505060405180910390f35b6107416004803603604081101561070b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111e4565b604051808215151515815260200191505060405180910390f35b6107a76004803603604081101561077157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112b1565b604051808215151515815260200191505060405180910390f35b610803600480360360208110156107d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112cf565b005b6108476004803603602081101561081b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113a4565b604051808215151515815260200191505060405180910390f35b6108696113c4565b604051808260ff1660ff16815260200191505060405180910390f35b6108e76004803603604081101561089b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113d7565b6040518082815260200191505060405180910390f35b61090561145e565b6040518082815260200191505060405180910390f35b61095d6004803603602081101561093157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611464565b005b6109676110dd565b6109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b606060008054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610acc5780601f10610aa157610100808354040283529160200191610acc565b820191906000526020600020905b815481529060010190602001808311610aaf57829003601f168201915b5050505050905090565b6000610aea610ae36114ea565b84846114f2565b6001905092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600554905090565b610b2c6110dd565b610b9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610c068484846116e9565b610cc784610c126114ea565b610cc285604051806060016040528060288152602001611fcc60289139600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c786114ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c329092919063ffffffff16565b6114f2565b600190509392505050565b6000600260009054906101000a900460ff16905090565b6000610d92610cf66114ea565b84610d8d8560086000610d076114ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cf290919063ffffffff16565b6114f2565b6001905092915050565b60055481565b610daa6110dd565b610e1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e7f6110dd565b610ef1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600360146101000a81548160ff021916908360ff16021790555050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f806110dd565b610ff2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600260016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166111206114ea565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b606060018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111d45780601f106111a9576101008083540402835291602001916111d4565b820191906000526020600020905b8154815290600101906020018083116111b757829003601f168201915b5050505050905090565b60045481565b60006112a76111f16114ea565b846112a28560405180606001604052806025815260200161203d602591396008600061121b6114ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c329092919063ffffffff16565b6114f2565b6001905092915050565b60006112c56112be6114ea565b84846116e9565b6001905092915050565b6112d76110dd565b611349576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60096020528060005260406000206000915054906101000a900460ff1681565b600360149054906101000a900460ff1681565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60065481565b61146c6110dd565b6114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6114e781611d7a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611578576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806120196024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611faa6022913960400191505060405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b81600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561174157600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156117c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180611ff46025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561184d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611f616023913960400191505060405180910390fd5b6000600760003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600360149054906101000a900460ff1660ff16606485816118b057fe5b04029050600115156118c133611ec0565b151514806118db5750600115156118d732611ec0565b1515145b156118e557600090505b42610258600654011115611918576000151561190032611ec0565b1515141561191757600454841061191657600080fd5b5b5b600061192d8286611f1690919063ffffffff16565b905084600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555061198f8286611f1690919063ffffffff16565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508160076000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600760003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054831015611b3c5732600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3611c29565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35b50505050505050565b6000838311158290611cdf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ca4578082015181840152602081019050611c89565b50505050905090810190601f168015611cd15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611d70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611f846026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600260016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000611f5883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c32565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820cef6f99b2450b6a5dca0aa10517f1b957ac782e888b40a1f3cbd110e73356f7564736f6c63430005110032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a9059cbb11610097578063d5e7831b11610071578063d5e7831b14610861578063dd62ed3e14610885578063ecda10f5146108fd578063f2fde38b1461091b576101a9565b8063a9059cbb1461075b578063a932ed0d146107c1578063c30796ab14610805576101a9565b80638f32d59b116100d35780638f32d59b1461063257806395d89b41146106545780639bc57c9e146106d7578063a457c2d7146106f5576101a9565b806370a0823114610586578063715018a6146105de5780638da5cb5b146105e8576101a9565b806323b872dd116101665780633eaaf86b116101405780633eaaf86b14610497578063524fa7b9146104b5578063528ec03a146104f95780635a6759b71461052a576101a9565b806323b872dd14610387578063313ce5671461040d5780633950935114610431576101a9565b80630258ce56146101ae57806306fdde03146101f2578063095ea7b31461027557806313ecfbfa146102db57806318160ddd1461032557806321a4d39f14610343575b600080fd5b6101f0600480360360208110156101c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061095f565b005b6101fa610a34565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561023a57808201518184015260208101905061021f565b50505050905090810190601f1680156102675780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102c16004803603604081101561028b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ad6565b604051808215151515815260200191505060405180910390f35b6102e3610af4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61032d610b1a565b6040518082815260200191505060405180910390f35b6103856004803603602081101561035957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b24565b005b6103f36004803603606081101561039d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bf9565b604051808215151515815260200191505060405180910390f35b610415610cd2565b604051808260ff1660ff16815260200191505060405180910390f35b61047d6004803603604081101561044757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ce9565b604051808215151515815260200191505060405180910390f35b61049f610d9c565b6040518082815260200191505060405180910390f35b6104f7600480360360208110156104cb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610da2565b005b6105286004803603602081101561050f57600080fd5b81019080803560ff169060200190929190505050610e77565b005b61056c6004803603602081101561054057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f0f565b604051808215151515815260200191505060405180910390f35b6105c86004803603602081101561059c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f2f565b6040518082815260200191505060405180910390f35b6105e6610f78565b005b6105f06110b3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61063a6110dd565b604051808215151515815260200191505060405180910390f35b61065c61113c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561069c578082015181840152602081019050610681565b50505050905090810190601f1680156106c95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106df6111de565b6040518082815260200191505060405180910390f35b6107416004803603604081101561070b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111e4565b604051808215151515815260200191505060405180910390f35b6107a76004803603604081101561077157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112b1565b604051808215151515815260200191505060405180910390f35b610803600480360360208110156107d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112cf565b005b6108476004803603602081101561081b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113a4565b604051808215151515815260200191505060405180910390f35b6108696113c4565b604051808260ff1660ff16815260200191505060405180910390f35b6108e76004803603604081101561089b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113d7565b6040518082815260200191505060405180910390f35b61090561145e565b6040518082815260200191505060405180910390f35b61095d6004803603602081101561093157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611464565b005b6109676110dd565b6109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b606060008054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610acc5780601f10610aa157610100808354040283529160200191610acc565b820191906000526020600020905b815481529060010190602001808311610aaf57829003601f168201915b5050505050905090565b6000610aea610ae36114ea565b84846114f2565b6001905092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600554905090565b610b2c6110dd565b610b9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610c068484846116e9565b610cc784610c126114ea565b610cc285604051806060016040528060288152602001611fcc60289139600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c786114ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c329092919063ffffffff16565b6114f2565b600190509392505050565b6000600260009054906101000a900460ff16905090565b6000610d92610cf66114ea565b84610d8d8560086000610d076114ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cf290919063ffffffff16565b6114f2565b6001905092915050565b60055481565b610daa6110dd565b610e1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e7f6110dd565b610ef1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600360146101000a81548160ff021916908360ff16021790555050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f806110dd565b610ff2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600260016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166111206114ea565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b606060018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111d45780601f106111a9576101008083540402835291602001916111d4565b820191906000526020600020905b8154815290600101906020018083116111b757829003601f168201915b5050505050905090565b60045481565b60006112a76111f16114ea565b846112a28560405180606001604052806025815260200161203d602591396008600061121b6114ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c329092919063ffffffff16565b6114f2565b6001905092915050565b60006112c56112be6114ea565b84846116e9565b6001905092915050565b6112d76110dd565b611349576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60096020528060005260406000206000915054906101000a900460ff1681565b600360149054906101000a900460ff1681565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60065481565b61146c6110dd565b6114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6114e781611d7a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611578576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806120196024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611faa6022913960400191505060405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b81600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561174157600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156117c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180611ff46025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561184d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611f616023913960400191505060405180910390fd5b6000600760003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600360149054906101000a900460ff1660ff16606485816118b057fe5b04029050600115156118c133611ec0565b151514806118db5750600115156118d732611ec0565b1515145b156118e557600090505b42610258600654011115611918576000151561190032611ec0565b1515141561191757600454841061191657600080fd5b5b5b600061192d8286611f1690919063ffffffff16565b905084600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555061198f8286611f1690919063ffffffff16565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508160076000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600760003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054831015611b3c5732600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3611c29565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35b50505050505050565b6000838311158290611cdf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ca4578082015181840152602081019050611c89565b50505050905090810190601f168015611cd15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611d70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611f846026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600260016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000611f5883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c32565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820cef6f99b2450b6a5dca0aa10517f1b957ac782e888b40a1f3cbd110e73356f7564736f6c63430005110032

Deployed Bytecode Sourcemap

11156:9980:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11156:9980:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20866:115;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20866:115:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;10905:76;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;10905:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15872:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15872:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11240:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14893:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20682:111;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20682:111:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;16496:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16496:304:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11073:76;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17209:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17209:210:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11604:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20313:111;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20313:111:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;21040:91;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21040:91:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11938:51;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11938:51:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15047:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15047:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3812:140;;;:::i;:::-;;3001:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3367:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10987:80;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;10987:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11571:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17922:261;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17922:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15370:158;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15370:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20497:115;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20497:115:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11841:51;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11841:51:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11459:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15591:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15591:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11674:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4107:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4107:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;20866:115;3213:9;:7;:9::i;:::-;3205:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20968:5;20937:18;:28;20956:8;20937:28;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;20866:115;:::o;10905:76::-;10941:13;10970:5;10963:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10905:76;:::o;15872:152::-;15938:4;15955:39;15964:12;:10;:12::i;:::-;15978:7;15987:6;15955:8;:39::i;:::-;16012:4;16005:11;;15872:152;;;;:::o;11240:24::-;;;;;;;;;;;;;:::o;14893:91::-;14937:7;14964:12;;14957:19;;14893:91;:::o;20682:111::-;3213:9;:7;:9::i;:::-;3205:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20781:4;20750:18;:28;20769:8;20750:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;20682:111;:::o;16496:304::-;16585:4;16602:36;16612:6;16620:9;16631:6;16602:9;:36::i;:::-;16649:121;16658:6;16666:12;:10;:12::i;:::-;16680:89;16718:6;16680:89;;;;;;;;;;;;;;;;;:11;:19;16692:6;16680:19;;;;;;;;;;;;;;;:33;16700:12;:10;:12::i;:::-;16680:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;16649:8;:121::i;:::-;16788:4;16781:11;;16496:304;;;;;:::o;11073:76::-;11113:5;11134:9;;;;;;;;;;;11127:16;;11073:76;:::o;17209:210::-;17289:4;17306:83;17315:12;:10;:12::i;:::-;17329:7;17338:50;17377:10;17338:11;:25;17350:12;:10;:12::i;:::-;17338:25;;;;;;;;;;;;;;;:34;17364:7;17338:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;17306:8;:83::i;:::-;17407:4;17400:11;;17209:210;;;;:::o;11604:27::-;;;;:::o;20313:111::-;3213:9;:7;:9::i;:::-;3205:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20412:4;20381:18;:28;20400:8;20381:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;20313:111;:::o;21040:91::-;3213:9;:7;:9::i;:::-;3205:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21115:8;21103:9;;:20;;;;;;;;;;;;;;;;;;21040:91;:::o;11938:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;15047:110::-;15104:7;15131:9;:18;15141:7;15131:18;;;;;;;;;;;;;;;;15124:25;;15047:110;;;:::o;3812:140::-;3213:9;:7;:9::i;:::-;3205:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3911:1;3874:40;;3895:6;;;;;;;;;;;3874:40;;;;;;;;;;;;3942:1;3925:6;;:19;;;;;;;;;;;;;;;;;;3812:140::o;3001:79::-;3039:7;3066:6;;;;;;;;;;;3059:13;;3001:79;:::o;3367:94::-;3407:4;3447:6;;;;;;;;;;;3431:22;;:12;:10;:12::i;:::-;:22;;;3424:29;;3367:94;:::o;10987:80::-;11025:13;11054:7;11047:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10987:80;:::o;11571:26::-;;;;:::o;17922:261::-;18007:4;18024:129;18033:12;:10;:12::i;:::-;18047:7;18056:96;18095:15;18056:96;;;;;;;;;;;;;;;;;:11;:25;18068:12;:10;:12::i;:::-;18056:25;;;;;;;;;;;;;;;:34;18082:7;18056:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;18024:8;:129::i;:::-;18171:4;18164:11;;17922:261;;;;:::o;15370:158::-;15439:4;15456:42;15466:12;:10;:12::i;:::-;15480:9;15491:6;15456:9;:42::i;:::-;15516:4;15509:11;;15370:158;;;;:::o;20497:115::-;3213:9;:7;:9::i;:::-;3205:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20599:5;20568:18;:28;20587:8;20568:28;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;20497:115;:::o;11841:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;11459:22::-;;;;;;;;;;;;;:::o;15591:134::-;15663:7;15690:11;:18;15702:5;15690:18;;;;;;;;;;;;;;;:27;15709:7;15690:27;;;;;;;;;;;;;;;;15683:34;;15591:134;;;;:::o;11674:29::-;;;;:::o;4107:109::-;3213:9;:7;:9::i;:::-;3205:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4180:28;4199:8;4180:18;:28::i;:::-;4107:109;:::o;1792:98::-;1837:15;1872:10;1865:17;;1792:98;:::o;19905:338::-;20016:1;19999:19;;:5;:19;;;;19991:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20097:1;20078:21;;:7;:21;;;;20070:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20181:6;20151:11;:18;20163:5;20151:18;;;;;;;;;;;;;;;:27;20170:7;20151:27;;;;;;;;;;;;;;;:36;;;;20219:7;20203:32;;20212:5;20203:32;;;20228:6;20203:32;;;;;;;;;;;;;;;;;;19905:338;;;:::o;13415:1215::-;13511:9;12093:18;:29;12112:9;12093:29;;;;;;;;;;;;;;;;;;;;;;;;;12092:30;12084:39;;;;;;13559:1;13541:20;;:6;:20;;;;13533:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13643:1;13622:23;;:9;:23;;;;13614:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13698:25;13726:9;:20;13736:9;13726:20;;;;;;;;;;;;;;;;13698:48;;13757:10;13787:9;;;;;;;;;;;13770:26;;13780:3;13771:6;:12;;;;;;13770:26;13757:39;;13842:4;13813:33;;:25;13827:10;13813:13;:25::i;:::-;:33;;;:69;;;;13878:4;13850:32;;:24;13864:9;13850:13;:24::i;:::-;:32;;;13813:69;13809:111;;;13907:1;13899:9;;13809:111;13976:3;13962:10;13945:14;;:27;13944:35;13940:160;;;14028:5;14000:33;;:24;14014:9;14000:13;:24::i;:::-;:33;;;13996:89;;;14071:11;;14062:6;:20;14054:29;;;;;;13996:89;13940:160;14112:21;14136:17;14147:5;14136:6;:10;;:17;;;;:::i;:::-;14112:41;;14187:6;14166:9;:17;14176:6;14166:17;;;;;;;;;;;;;;;;:27;;;;;;;;;;;14228:17;14239:5;14228:6;:10;;:17;;;;:::i;:::-;14204:9;:20;14214:9;14204:20;;;;;;;;;;;;;;;;:41;;;;;;;;;;;14280:5;14256:9;:20;14266:9;;;;;;;;;;;14256:20;;;;;;;;;;;;;;;;:29;;;;;;;;;;;14325:9;:20;14335:9;14325:20;;;;;;;;;;;;;;;;14302;:43;14298:325;;;14374:9;14362;;:21;;;;;;;;;;;;;;;;;;14420:9;14403:45;;14412:6;14403:45;;;14431:16;14403:45;;;;;;;;;;;;;;;;;;14298:325;;;14521:9;14504:45;;14513:6;14504:45;;;14532:16;14504:45;;;;;;;;;;;;;;;;;;14590:9;;;;;;;;;;;14573:34;;14582:6;14573:34;;;14601:5;14573:34;;;;;;;;;;;;;;;;;;14298:325;12134:1;;;13415:1215;;;;:::o;6319:192::-;6405:7;6438:1;6433;:6;;6441:12;6425:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;6425:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6465:9;6481:1;6477;:5;6465:17;;6502:1;6495:8;;;6319:192;;;;;:::o;5390:181::-;5448:7;5468:9;5484:1;5480;:5;5468:17;;5509:1;5504;:6;;5496:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5562:1;5555:8;;;5390:181;;;;:::o;4322:229::-;4416:1;4396:22;;:8;:22;;;;4388:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4506:8;4477:38;;4498:6;;;;;;;;;;;4477:38;;;;;;;;;;;;4535:8;4526:6;;:17;;;;;;;;;;;;;;;;;;4322:229;:::o;14705:123::-;14768:4;14792:18;:28;14811:8;14792:28;;;;;;;;;;;;;;;;;;;;;;;;;14785:35;;14705:123;;;:::o;5846:136::-;5904:7;5931:43;5935:1;5938;5931:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5924:50;;5846:136;;;;:::o

Swarm Source

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