ETH Price: $3,149.75 (+0.96%)
Gas: 2 Gwei

Token

xCaerus (xCRS)
 

Overview

Max Total Supply

5,500,000 xCRS

Holders

253

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100 xCRS

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:
xCaerus

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
*/

/**
 *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 xCaerus is ERC20Detailed, Ownable {
    using SafeMath for uint256;

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

    string constant tokenName = "xCaerus";
    string constant tokenSymbol = "xCRS";
    uint8 constant tokenDecimals = 18;
    uint8 public titheRate;                         // The fee % taken on transfers, distributed to LastBuyer.
    uint256 public maxbuyorder;
    uint256 public _totalSupply;                    // 5,500,000 xCRS
    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 xCRS

    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");
        require(_balances[sender] >= amount);
        
        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"}]

60806040526040518060400160405280600781526020017f78436165727573000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f7843525300000000000000000000000000000000000000000000000000000000815250601282600090805190602001906200008a92919062000653565b508160019080519060200190620000a392919062000653565b5080600260006101000a81548160ff021916908360ff1602179055505050506000620000d46200022e60201b60201c565b905080600260016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000190336a048cab98f1671af58000006200023660201b60201c565b6a048cab98f1671af580000060058190555033600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001f4336200048560201b60201c565b69098774738bc822200000600481905550600a600360146101000a81548160ff021916908360ff1602179055504260068190555062000702565b600033905090565b620002466200056360201b60201c565b620002b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200035d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6200037981600554620005ca60201b62001d3e1790919060201c565b600581905550620003d881600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620005ca60201b62001d3e1790919060201c565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b620004956200056360201b60201c565b62000508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16620005ae6200022e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b60008082840190508381101562000649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200069657805160ff1916838001178555620006c7565b82800160010185558215620006c7579182015b82811115620006c6578251825591602001919060010190620006a9565b5b509050620006d69190620006da565b5090565b620006ff91905b80821115620006fb576000816000905550600101620006e1565b5090565b90565b6120e280620007126000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a9059cbb11610097578063d5e7831b11610071578063d5e7831b14610861578063dd62ed3e14610885578063ecda10f5146108fd578063f2fde38b1461091b576101a9565b8063a9059cbb1461075b578063a932ed0d146107c1578063c30796ab14610805576101a9565b80638f32d59b116100d35780638f32d59b1461063257806395d89b41146106545780639bc57c9e146106d7578063a457c2d7146106f5576101a9565b806370a0823114610586578063715018a6146105de5780638da5cb5b146105e8576101a9565b806323b872dd116101665780633eaaf86b116101405780633eaaf86b14610497578063524fa7b9146104b5578063528ec03a146104f95780635a6759b71461052a576101a9565b806323b872dd14610387578063313ce5671461040d5780633950935114610431576101a9565b80630258ce56146101ae57806306fdde03146101f2578063095ea7b31461027557806313ecfbfa146102db57806318160ddd1461032557806321a4d39f14610343575b600080fd5b6101f0600480360360208110156101c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061095f565b005b6101fa610a34565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561023a57808201518184015260208101905061021f565b50505050905090810190601f1680156102675780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102c16004803603604081101561028b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ad6565b604051808215151515815260200191505060405180910390f35b6102e3610af4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61032d610b1a565b6040518082815260200191505060405180910390f35b6103856004803603602081101561035957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b24565b005b6103f36004803603606081101561039d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bf9565b604051808215151515815260200191505060405180910390f35b610415610cd2565b604051808260ff1660ff16815260200191505060405180910390f35b61047d6004803603604081101561044757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ce9565b604051808215151515815260200191505060405180910390f35b61049f610d9c565b6040518082815260200191505060405180910390f35b6104f7600480360360208110156104cb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610da2565b005b6105286004803603602081101561050f57600080fd5b81019080803560ff169060200190929190505050610e77565b005b61056c6004803603602081101561054057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f0f565b604051808215151515815260200191505060405180910390f35b6105c86004803603602081101561059c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f2f565b6040518082815260200191505060405180910390f35b6105e6610f78565b005b6105f06110b3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61063a6110dd565b604051808215151515815260200191505060405180910390f35b61065c61113c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561069c578082015181840152602081019050610681565b50505050905090810190601f1680156106c95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106df6111de565b6040518082815260200191505060405180910390f35b6107416004803603604081101561070b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111e4565b604051808215151515815260200191505060405180910390f35b6107a76004803603604081101561077157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112b1565b604051808215151515815260200191505060405180910390f35b610803600480360360208110156107d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112cf565b005b6108476004803603602081101561081b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113a4565b604051808215151515815260200191505060405180910390f35b6108696113c4565b604051808260ff1660ff16815260200191505060405180910390f35b6108e76004803603604081101561089b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113d7565b6040518082815260200191505060405180910390f35b61090561145e565b6040518082815260200191505060405180910390f35b61095d6004803603602081101561093157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611464565b005b6109676110dd565b6109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b606060008054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610acc5780601f10610aa157610100808354040283529160200191610acc565b820191906000526020600020905b815481529060010190602001808311610aaf57829003601f168201915b5050505050905090565b6000610aea610ae36114ea565b84846114f2565b6001905092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600554905090565b610b2c6110dd565b610b9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610c068484846116e9565b610cc784610c126114ea565b610cc28560405180606001604052806028815260200161201860289139600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c786114ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c7e9092919063ffffffff16565b6114f2565b600190509392505050565b6000600260009054906101000a900460ff16905090565b6000610d92610cf66114ea565b84610d8d8560086000610d076114ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3e90919063ffffffff16565b6114f2565b6001905092915050565b60055481565b610daa6110dd565b610e1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e7f6110dd565b610ef1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600360146101000a81548160ff021916908360ff16021790555050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f806110dd565b610ff2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600260016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166111206114ea565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b606060018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111d45780601f106111a9576101008083540402835291602001916111d4565b820191906000526020600020905b8154815290600101906020018083116111b757829003601f168201915b5050505050905090565b60045481565b60006112a76111f16114ea565b846112a285604051806060016040528060258152602001612089602591396008600061121b6114ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c7e9092919063ffffffff16565b6114f2565b6001905092915050565b60006112c56112be6114ea565b84846116e9565b6001905092915050565b6112d76110dd565b611349576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60096020528060005260406000206000915054906101000a900460ff1681565b600360149054906101000a900460ff1681565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60065481565b61146c6110dd565b6114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6114e781611dc6565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611578576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806120656024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611ff66022913960400191505060405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b81600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561174157600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806120406025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561184d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611fad6023913960400191505060405180910390fd5b81600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561189957600080fd5b6000600760003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600360149054906101000a900460ff1660ff16606485816118fc57fe5b040290506001151561190d33611f0c565b1515148061192757506001151561192332611f0c565b1515145b1561193157600090505b42610258600654011115611964576000151561194c32611f0c565b1515141561196357600454841061196257600080fd5b5b5b60006119798286611f6290919063ffffffff16565b905084600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506119db8286611f6290919063ffffffff16565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508160076000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600760003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054831015611b885732600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3611c75565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35b50505050505050565b6000838311158290611d2b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611cf0578082015181840152602081019050611cd5565b50505050905090810190601f168015611d1d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611dbc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611fd06026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600260016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000611fa483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c7e565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820aa1a065cda037c0342934b86a4844c1ef39351768df0323be8f1b7f97346467b64736f6c63430005110032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a9059cbb11610097578063d5e7831b11610071578063d5e7831b14610861578063dd62ed3e14610885578063ecda10f5146108fd578063f2fde38b1461091b576101a9565b8063a9059cbb1461075b578063a932ed0d146107c1578063c30796ab14610805576101a9565b80638f32d59b116100d35780638f32d59b1461063257806395d89b41146106545780639bc57c9e146106d7578063a457c2d7146106f5576101a9565b806370a0823114610586578063715018a6146105de5780638da5cb5b146105e8576101a9565b806323b872dd116101665780633eaaf86b116101405780633eaaf86b14610497578063524fa7b9146104b5578063528ec03a146104f95780635a6759b71461052a576101a9565b806323b872dd14610387578063313ce5671461040d5780633950935114610431576101a9565b80630258ce56146101ae57806306fdde03146101f2578063095ea7b31461027557806313ecfbfa146102db57806318160ddd1461032557806321a4d39f14610343575b600080fd5b6101f0600480360360208110156101c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061095f565b005b6101fa610a34565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561023a57808201518184015260208101905061021f565b50505050905090810190601f1680156102675780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102c16004803603604081101561028b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ad6565b604051808215151515815260200191505060405180910390f35b6102e3610af4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61032d610b1a565b6040518082815260200191505060405180910390f35b6103856004803603602081101561035957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b24565b005b6103f36004803603606081101561039d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bf9565b604051808215151515815260200191505060405180910390f35b610415610cd2565b604051808260ff1660ff16815260200191505060405180910390f35b61047d6004803603604081101561044757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ce9565b604051808215151515815260200191505060405180910390f35b61049f610d9c565b6040518082815260200191505060405180910390f35b6104f7600480360360208110156104cb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610da2565b005b6105286004803603602081101561050f57600080fd5b81019080803560ff169060200190929190505050610e77565b005b61056c6004803603602081101561054057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f0f565b604051808215151515815260200191505060405180910390f35b6105c86004803603602081101561059c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f2f565b6040518082815260200191505060405180910390f35b6105e6610f78565b005b6105f06110b3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61063a6110dd565b604051808215151515815260200191505060405180910390f35b61065c61113c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561069c578082015181840152602081019050610681565b50505050905090810190601f1680156106c95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106df6111de565b6040518082815260200191505060405180910390f35b6107416004803603604081101561070b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111e4565b604051808215151515815260200191505060405180910390f35b6107a76004803603604081101561077157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112b1565b604051808215151515815260200191505060405180910390f35b610803600480360360208110156107d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112cf565b005b6108476004803603602081101561081b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113a4565b604051808215151515815260200191505060405180910390f35b6108696113c4565b604051808260ff1660ff16815260200191505060405180910390f35b6108e76004803603604081101561089b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113d7565b6040518082815260200191505060405180910390f35b61090561145e565b6040518082815260200191505060405180910390f35b61095d6004803603602081101561093157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611464565b005b6109676110dd565b6109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b606060008054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610acc5780601f10610aa157610100808354040283529160200191610acc565b820191906000526020600020905b815481529060010190602001808311610aaf57829003601f168201915b5050505050905090565b6000610aea610ae36114ea565b84846114f2565b6001905092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600554905090565b610b2c6110dd565b610b9e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610c068484846116e9565b610cc784610c126114ea565b610cc28560405180606001604052806028815260200161201860289139600860008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c786114ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c7e9092919063ffffffff16565b6114f2565b600190509392505050565b6000600260009054906101000a900460ff16905090565b6000610d92610cf66114ea565b84610d8d8560086000610d076114ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3e90919063ffffffff16565b6114f2565b6001905092915050565b60055481565b610daa6110dd565b610e1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e7f6110dd565b610ef1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600360146101000a81548160ff021916908360ff16021790555050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f806110dd565b610ff2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600260016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166111206114ea565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b606060018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111d45780601f106111a9576101008083540402835291602001916111d4565b820191906000526020600020905b8154815290600101906020018083116111b757829003601f168201915b5050505050905090565b60045481565b60006112a76111f16114ea565b846112a285604051806060016040528060258152602001612089602591396008600061121b6114ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c7e9092919063ffffffff16565b6114f2565b6001905092915050565b60006112c56112be6114ea565b84846116e9565b6001905092915050565b6112d76110dd565b611349576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60096020528060005260406000206000915054906101000a900460ff1681565b600360149054906101000a900460ff1681565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60065481565b61146c6110dd565b6114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6114e781611dc6565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611578576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806120656024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611ff66022913960400191505060405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b81600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561174157600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806120406025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561184d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611fad6023913960400191505060405180910390fd5b81600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561189957600080fd5b6000600760003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600360149054906101000a900460ff1660ff16606485816118fc57fe5b040290506001151561190d33611f0c565b1515148061192757506001151561192332611f0c565b1515145b1561193157600090505b42610258600654011115611964576000151561194c32611f0c565b1515141561196357600454841061196257600080fd5b5b5b60006119798286611f6290919063ffffffff16565b905084600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506119db8286611f6290919063ffffffff16565b600760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508160076000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600760003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054831015611b885732600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3611c75565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35b50505050505050565b6000838311158290611d2b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611cf0578082015181840152602081019050611cd5565b50505050905090810190601f168015611d1d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611dbc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180611fd06026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600260016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000611fa483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c7e565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820aa1a065cda037c0342934b86a4844c1ef39351768df0323be8f1b7f97346467b64736f6c63430005110032

Deployed Bytecode Sourcemap

11227:10041:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11227:10041:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20998:115;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20998:115:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;10976: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;10976:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16004:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16004:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11312:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15025:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20814:111;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20814:111:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;16628:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16628:304:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11144:76;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17341:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17341:210:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11679:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20445:111;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20445:111:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;21172:91;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21172:91:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;12014:51;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12014:51:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15179:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15179:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3883:140;;;:::i;:::-;;3072:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3438:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11058: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;11058:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11646:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18054:261;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18054:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15502:158;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15502:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20629:115;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20629:115:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11917:51;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11917:51:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11534:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15723:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15723:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11750:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4178:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4178:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;20998:115;3284:9;:7;:9::i;:::-;3276:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21100:5;21069:18;:28;21088:8;21069:28;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;20998:115;:::o;10976:76::-;11012:13;11041:5;11034:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10976:76;:::o;16004:152::-;16070:4;16087:39;16096:12;:10;:12::i;:::-;16110:7;16119:6;16087:8;:39::i;:::-;16144:4;16137:11;;16004:152;;;;:::o;11312:24::-;;;;;;;;;;;;;:::o;15025:91::-;15069:7;15096:12;;15089:19;;15025:91;:::o;20814:111::-;3284:9;:7;:9::i;:::-;3276:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20913:4;20882:18;:28;20901:8;20882:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;20814:111;:::o;16628:304::-;16717:4;16734:36;16744:6;16752:9;16763:6;16734:9;:36::i;:::-;16781:121;16790:6;16798:12;:10;:12::i;:::-;16812:89;16850:6;16812:89;;;;;;;;;;;;;;;;;:11;:19;16824:6;16812:19;;;;;;;;;;;;;;;:33;16832:12;:10;:12::i;:::-;16812:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;16781:8;:121::i;:::-;16920:4;16913:11;;16628:304;;;;;:::o;11144:76::-;11184:5;11205:9;;;;;;;;;;;11198:16;;11144:76;:::o;17341:210::-;17421:4;17438:83;17447:12;:10;:12::i;:::-;17461:7;17470:50;17509:10;17470:11;:25;17482:12;:10;:12::i;:::-;17470:25;;;;;;;;;;;;;;;:34;17496:7;17470:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;17438:8;:83::i;:::-;17539:4;17532:11;;17341:210;;;;:::o;11679:27::-;;;;:::o;20445:111::-;3284:9;:7;:9::i;:::-;3276:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20544:4;20513:18;:28;20532:8;20513:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;20445:111;:::o;21172:91::-;3284:9;:7;:9::i;:::-;3276:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21247:8;21235:9;;:20;;;;;;;;;;;;;;;;;;21172:91;:::o;12014:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;15179:110::-;15236:7;15263:9;:18;15273:7;15263:18;;;;;;;;;;;;;;;;15256:25;;15179:110;;;:::o;3883:140::-;3284:9;:7;:9::i;:::-;3276:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3982:1;3945:40;;3966:6;;;;;;;;;;;3945:40;;;;;;;;;;;;4013:1;3996:6;;:19;;;;;;;;;;;;;;;;;;3883:140::o;3072:79::-;3110:7;3137:6;;;;;;;;;;;3130:13;;3072:79;:::o;3438:94::-;3478:4;3518:6;;;;;;;;;;;3502:22;;:12;:10;:12::i;:::-;:22;;;3495:29;;3438:94;:::o;11058:80::-;11096:13;11125:7;11118:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11058:80;:::o;11646:26::-;;;;:::o;18054:261::-;18139:4;18156:129;18165:12;:10;:12::i;:::-;18179:7;18188:96;18227:15;18188:96;;;;;;;;;;;;;;;;;:11;:25;18200:12;:10;:12::i;:::-;18188:25;;;;;;;;;;;;;;;:34;18214:7;18188:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;18156:8;:129::i;:::-;18303:4;18296:11;;18054:261;;;;:::o;15502:158::-;15571:4;15588:42;15598:12;:10;:12::i;:::-;15612:9;15623:6;15588:9;:42::i;:::-;15648:4;15641:11;;15502:158;;;;:::o;20629:115::-;3284:9;:7;:9::i;:::-;3276:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20731:5;20700:18;:28;20719:8;20700:28;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;20629:115;:::o;11917:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;11534:22::-;;;;;;;;;;;;;:::o;15723:134::-;15795:7;15822:11;:18;15834:5;15822:18;;;;;;;;;;;;;;;:27;15841:7;15822:27;;;;;;;;;;;;;;;;15815:34;;15723:134;;;;:::o;11750:29::-;;;;:::o;4178:109::-;3284:9;:7;:9::i;:::-;3276:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4251:28;4270:8;4251:18;:28::i;:::-;4178:109;:::o;1863:98::-;1908:15;1943:10;1936:17;;1863:98;:::o;20037:338::-;20148:1;20131:19;;:5;:19;;;;20123:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20229:1;20210:21;;:7;:21;;;;20202:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20313:6;20283:11;:18;20295:5;20283:18;;;;;;;;;;;;;;;:27;20302:7;20283:27;;;;;;;;;;;;;;;:36;;;;20351:7;20335:32;;20344:5;20335:32;;;20360:6;20335:32;;;;;;;;;;;;;;;;;;20037:338;;;:::o;13492:1270::-;13588:9;12170:18;:29;12189:9;12170:29;;;;;;;;;;;;;;;;;;;;;;;;;12169:30;12161:39;;;;;;13636:1;13618:20;;:6;:20;;;;13610:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13720:1;13699:23;;:9;:23;;;;13691:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13802:6;13781:9;:17;13791:6;13781:17;;;;;;;;;;;;;;;;:27;;13773:36;;;;;;13830:25;13858:9;:20;13868:9;13858:20;;;;;;;;;;;;;;;;13830:48;;13889:10;13919:9;;;;;;;;;;;13902:26;;13912:3;13903:6;:12;;;;;;13902:26;13889:39;;13974:4;13945:33;;:25;13959:10;13945:13;:25::i;:::-;:33;;;:69;;;;14010:4;13982:32;;:24;13996:9;13982:13;:24::i;:::-;:32;;;13945:69;13941:111;;;14039:1;14031:9;;13941:111;14108:3;14094:10;14077:14;;:27;14076:35;14072:160;;;14160:5;14132:33;;:24;14146:9;14132:13;:24::i;:::-;:33;;;14128:89;;;14203:11;;14194:6;:20;14186:29;;;;;;14128:89;14072:160;14244:21;14268:17;14279:5;14268:6;:10;;:17;;;;:::i;:::-;14244:41;;14319:6;14298:9;:17;14308:6;14298:17;;;;;;;;;;;;;;;;:27;;;;;;;;;;;14360:17;14371:5;14360:6;:10;;:17;;;;:::i;:::-;14336:9;:20;14346:9;14336:20;;;;;;;;;;;;;;;;:41;;;;;;;;;;;14412:5;14388:9;:20;14398:9;;;;;;;;;;;14388:20;;;;;;;;;;;;;;;;:29;;;;;;;;;;;14457:9;:20;14467:9;14457:20;;;;;;;;;;;;;;;;14434;:43;14430:325;;;14506:9;14494;;:21;;;;;;;;;;;;;;;;;;14552:9;14535:45;;14544:6;14535:45;;;14563:16;14535:45;;;;;;;;;;;;;;;;;;14430:325;;;14653:9;14636:45;;14645:6;14636:45;;;14664:16;14636:45;;;;;;;;;;;;;;;;;;14722:9;;;;;;;;;;;14705:34;;14714:6;14705:34;;;14733:5;14705:34;;;;;;;;;;;;;;;;;;14430:325;12211:1;;;13492:1270;;;;:::o;6390:192::-;6476:7;6509:1;6504;:6;;6512:12;6496: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;6496:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6536:9;6552:1;6548;:5;6536:17;;6573:1;6566:8;;;6390:192;;;;;:::o;5461:181::-;5519:7;5539:9;5555:1;5551;:5;5539:17;;5580:1;5575;:6;;5567:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5633:1;5626:8;;;5461:181;;;;:::o;4393:229::-;4487:1;4467:22;;:8;:22;;;;4459:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4577:8;4548:38;;4569:6;;;;;;;;;;;4548:38;;;;;;;;;;;;4606:8;4597:6;;:17;;;;;;;;;;;;;;;;;;4393:229;:::o;14837:123::-;14900:4;14924:18;:28;14943:8;14924:28;;;;;;;;;;;;;;;;;;;;;;;;;14917:35;;14837:123;;;:::o;5917:136::-;5975:7;6002:43;6006:1;6009;6002:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5995:50;;5917:136;;;;:::o

Swarm Source

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