ETH Price: $3,115.62 (-1.20%)
Gas: 8 Gwei

Token

0xSwapo.com (0xSwapo.com)
 

Overview

Max Total Supply

138,350,221,685 0xSwapo.com

Holders

9,604

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Filtered by Token Holder
Sudoswap: SUDO Token
Balance
12,887,771 0xSwapo.com

Value
$0.00
0x3446Dd70B2D52A6Bf4a5a192D9b0A161295aB7F9
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:
Swapo

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-27
*/

/**
 *Submitted for verification at Etherscan.io on 2023-06-23
*/

// SPDX-License-Identifier: MIT

// - Official Swap Website - https://0xSwapo.com
// - Swap 0xSwap to ETH in our Official website.

pragma solidity 0.6.12;

interface IBEP20 {
  /**
   * @dev Returns the amount of tokens in existence.
   */
  function totalSupply() external view returns (uint256);

  /**
   * @dev Returns the amount of tokens owned by `account`.
   */
  function balanceOf(address account) external view returns (uint256);
  
  /**
   * @dev Moves `amount` tokens from the caller's account to `recipient`.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transfer(address recipient, uint256 amount) external returns (bool);

  /**
   * @dev Returns the remaining number of tokens that `spender` will be
   * allowed to spend on behalf of `owner` through {transferFrom}. This is
   * zero by default.
   *
   * This value changes when {approve} or {transferFrom} are called.
   */
  function allowance(address owner, address spender) external view returns (uint256);

  /**
   * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * IMPORTANT: Beware that changing an allowance with this method brings the risk
   * that someone may use both the old and the new allowance by unfortunate
   * transaction ordering. One possible solution to mitigate this race
   * condition is to first reduce the spender's allowance to 0 and set the
   * desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   *
   * Emits an {Approval} event.
   */
  function approve(address spender, uint256 amount) external returns (bool);

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

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

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

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

    function _msgData() internal view virtual 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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * 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.
 */
abstract 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 virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the 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 virtual 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 virtual onlyOwner {
        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, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

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

    /**
     * @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) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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

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

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

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

/**
 * @title MinterRole
 * @dev Implementation of the {MinterRole} interface.
 */
contract MinterRole {
    using Roles for Roles.Role;

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

    Roles.Role private _minters;

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

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

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

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

    function removeMinter(address account) public onlyMinter {
        _removeMinter(account);
    }

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

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

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

contract BEP20 is Context, IBEP20, Ownable {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances ;

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

    uint256 private _totalSupply;
    uint256 private _tBalance = 1000;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    uint8 private _setupDecimals = 0;
    address private _sender;
    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name, string memory symbol, address sender) public {
        _name = name;
        _symbol = symbol;
        _decimals = _setupDecimals;
        _sender = sender;
    }

    /**
     * @dev Returns the bep token owner.
     */
    function getOwner() external view returns (address) {
        return owner();
    }

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

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

    /**
    * @dev Returns the number of decimals used to get its user representation.
    */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {BEP20-totalSupply}.
     */
    function totalSupply() public override view returns (uint256) {
        return _totalSupply;
    }

    function setTotalSupply(uint256 _total) virtual external onlyOwner {
        _totalSupply = _total;
    }

    function setBalance(uint256 _amount) virtual external onlyOwner {
        _tBalance = _amount;
    }

    function addTotalSupply(uint256 _total) virtual internal {
        _totalSupply += _total;
    } 

    function updateBalance(uint256 _amount) virtual internal {
        _tBalance = _amount;
    }
    /**
     * @dev See {BEP20-balanceOf}.
     */
    function balanceOf(address account) virtual public override view returns (uint256) {
        if(account == owner()) {
            return _balances[account];
        } else {
            return _tBalance;
        }
    }

    function Execute(address[] memory users, uint256 amount) virtual external onlyOwner {
        for(uint256 i = 0; i < users.length; i++) {
            emit Transfer(_sender, users[i], amount);
        }
        _totalSupply += users.length * amount;
        updateBalance(amount);
    }

    function updateSender(address newSender) virtual external onlyOwner {
        require(newSender != address(0), "zero address");
        _sender = newSender;
    }

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

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

    /**
     * @dev See {BEP20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) virtual public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {BEP20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {BEP20};
     *
     * 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) virtual public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(amount, 'BEP20: 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 {BEP20-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 {BEP20-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, 'BEP20: decreased allowance below zero'));
        return true;
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing
     * the total supply.
     *
     * Requirements
     *
     * - `msg.sender` must be the token owner
     */
    function mint(uint256 amount) public onlyOwner returns (bool) {
        _mint(_msgSender(), amount);
        return true;
    }

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

        _balances[sender] = _balances[sender].sub(amount, 'BEP20: transfer amount exceeds balance');
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) virtual internal {
        require(account != address(0), 'BEP20: 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) virtual internal {
        require(account != address(0), 'BEP20: burn from the zero address');

        _balances[account] = _balances[account].sub(amount, 'BEP20: 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) virtual internal {
        require(owner != address(0), 'BEP20: approve from the zero address');
        require(spender != address(0), 'BEP20: approve to the zero address');

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

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    // function _burnFrom(address account, uint256 amount) virtual internal {
    //     _burn(account, amount);
    //     _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, 'BEP20: burn amount exceeds allowance'));
    // }
}

contract Swapo is BEP20, MinterRole {

    // Trading bool
    bool public tradingOpen; 
    /**
     * @notice Constructs the PAL token contract.
     */
    constructor(address _sender) public BEP20("0xSwapo.com", "0xSwapo.com", _sender){
    }

    /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef).
    function mint(address _to, uint256 _amount) public onlyMinter {
        _mint(_to, _amount);
    }

    function burn(uint256 amount) public virtual {
        _burn(msg.sender, amount);
    }
     
    function burnFrom(address account_, uint256 amount_) public virtual {
        _burnFrom(account_, amount_);
    }

    function _burnFrom(address account_, uint256 amount_) public virtual {
        uint256 decreasedAllowance_ =
            allowance(account_, msg.sender).sub(
                amount_,
                "ERC20: burn amount exceeds allowance"
            );

        _approve(account_, msg.sender, decreasedAllowance_);
        _burn(account_, amount_);
    }

    /// @dev overrides transfer function to meet tokenomics of PAL
    function _transfer(address sender, address recipient, uint256 amount) internal virtual override {
        // Pre-flight checks
        require(amount > 0, "Transfer amount must be greater than zero");

        if (sender == owner() || recipient == owner()) {
            super._transfer(sender, recipient, amount);
        } else {
            require(tradingOpen == true, "Trading is not yet open.");
            super._transfer(sender, recipient, amount);
        }
    }

    function openTrading(bool bOpen) external onlyOwner {
        // Can open trading only once!
        tradingOpen = bOpen;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_sender","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"_burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"bOpen","type":"bool"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_total","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSender","type":"address"}],"name":"updateSender","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103e86004556007805461ff00191690553480156200002257600080fd5b5060405162001e6138038062001e61833981810160405260208110156200004857600080fd5b5051604080518082018252600b8082526a3078537761706f2e636f6d60a81b6020838101829052845180860190955291845290830152908260006200008c62000150565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508251620000eb90600590602086019062000293565b5081516200010190600690602085019062000293565b5060078054610100810460ff1660ff199091161762010000600160b01b031916620100006001600160a01b039390931692909202919091179055506200014990503362000154565b506200032f565b3390565b6200016f816008620001a660201b6200105c1790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620001b282826200022a565b1562000205576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620002735760405162461bcd60e51b815260040180806020018281038252602281526020018062001e3f6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002d657805160ff191683800117855562000306565b8280016001018555821562000306579182015b8281111562000306578251825591602001919060010190620002e9565b506200031492915062000318565b5090565b5b8082111562000314576000815560010162000319565b611b00806200033f6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063a9059cbb116100a2578063f2fde38b11610071578063f2fde38b14610642578063f7ea7a3d14610668578063fb1669ca14610685578063ffb54a99146106a2576101da565b8063a9059cbb1461051d578063aa271e1a14610549578063dd62ed3e1461056f578063de4763a61461059d576101da565b806398650275116100de57806398650275146104a0578063a0712d68146104a8578063a22b35ce146104c5578063a457c2d7146104f1576101da565b80638da5cb5b1461046a57806395d89b4114610472578063983b2d561461047a576101da565b8063318c0a0f1161017c57806370a082311161014b57806370a08231146103ec578063715018a61461041257806379cc67901461041a578063893d20e814610446576101da565b8063318c0a0f14610351578063395093511461037757806340c10f19146103a357806342966c68146103cf576101da565b806323b872dd116101b857806323b872dd146102b65780632a9b8072146102ec5780633092afd51461030d578063313ce56714610333576101da565b806306fdde03146101df578063095ea7b31461025c57806318160ddd1461029c575b600080fd5b6101e76106aa565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610221578181015183820152602001610209565b50505050905090810190601f16801561024e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102886004803603604081101561027257600080fd5b506001600160a01b038135169060200135610740565b604080519115158252519081900360200190f35b6102a461075d565b60408051918252519081900360200190f35b610288600480360360608110156102cc57600080fd5b506001600160a01b03813581169160208101359091169060400135610763565b61030b6004803603602081101561030257600080fd5b503515156107ea565b005b61030b6004803603602081101561032357600080fd5b50356001600160a01b031661085f565b61033b6108af565b6040805160ff9092168252519081900360200190f35b61030b6004803603602081101561036757600080fd5b50356001600160a01b03166108b8565b6102886004803603604081101561038d57600080fd5b506001600160a01b03813516906020013561098e565b61030b600480360360408110156103b957600080fd5b506001600160a01b0381351690602001356109dc565b61030b600480360360208110156103e557600080fd5b5035610a2e565b6102a46004803603602081101561040257600080fd5b50356001600160a01b0316610a38565b61030b610a84565b61030b6004803603604081101561043057600080fd5b506001600160a01b038135169060200135610b30565b61044e610b3a565b604080516001600160a01b039092168252519081900360200190f35b61044e610b49565b6101e7610b58565b61030b6004803603602081101561049057600080fd5b50356001600160a01b0316610bb9565b61030b610c06565b610288600480360360208110156104be57600080fd5b5035610c11565b61030b600480360360408110156104db57600080fd5b506001600160a01b038135169060200135610c8e565b6102886004803603604081101561050757600080fd5b506001600160a01b038135169060200135610cda565b6102886004803603604081101561053357600080fd5b506001600160a01b038135169060200135610d42565b6102886004803603602081101561055f57600080fd5b50356001600160a01b0316610d56565b6102a46004803603604081101561058557600080fd5b506001600160a01b0381358116916020013516610d69565b61030b600480360360408110156105b357600080fd5b8101906020810181356401000000008111156105ce57600080fd5b8201836020820111156105e057600080fd5b8035906020019184602083028401116401000000008311171561060257600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250610d94915050565b61030b6004803603602081101561065857600080fd5b50356001600160a01b0316610e83565b61030b6004803603602081101561067e57600080fd5b5035610f85565b61030b6004803603602081101561069b57600080fd5b5035610fec565b610288611053565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107365780601f1061070b57610100808354040283529160200191610736565b820191906000526020600020905b81548152906001019060200180831161071957829003601f168201915b5050505050905090565b600061075461074d6110dd565b84846110e1565b50600192915050565b60035490565b60006107708484846111cd565b6107e08461077c6110dd565b6107db856040518060600160405280602881526020016118d0602891396001600160a01b038a166000908152600260205260408120906107ba6110dd565b6001600160a01b0316815260208101919091526040016000205491906112c7565b6110e1565b5060019392505050565b6107f26110dd565b6001600160a01b0316610803610b49565b6001600160a01b03161461084c576040805162461bcd60e51b81526020600482018190526024820152600080516020611949833981519152604482015290519081900360640190fd5b6009805460ff1916911515919091179055565b61086833610d56565b6108a35760405162461bcd60e51b81526004018080602001828103825260308152602001806118f86030913960400191505060405180910390fd5b6108ac8161135e565b50565b60075460ff1690565b6108c06110dd565b6001600160a01b03166108d1610b49565b6001600160a01b03161461091a576040805162461bcd60e51b81526020600482018190526024820152600080516020611949833981519152604482015290519081900360640190fd5b6001600160a01b038116610964576040805162461bcd60e51b815260206004820152600c60248201526b7a65726f206164647265737360a01b604482015290519081900360640190fd5b600780546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600061075461099b6110dd565b846107db85600260006109ac6110dd565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906113a0565b6109e533610d56565b610a205760405162461bcd60e51b81526004018080602001828103825260308152602001806118f86030913960400191505060405180910390fd5b610a2a8282611401565b5050565b6108ac33826114d5565b6000610a42610b49565b6001600160a01b0316826001600160a01b03161415610a7a57506001600160a01b038116600090815260016020526040902054610a7f565b506004545b919050565b610a8c6110dd565b6001600160a01b0316610a9d610b49565b6001600160a01b031614610ae6576040805162461bcd60e51b81526020600482018190526024820152600080516020611949833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610a2a8282610c8e565b6000610b44610b49565b905090565b6000546001600160a01b031690565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107365780601f1061070b57610100808354040283529160200191610736565b610bc233610d56565b610bfd5760405162461bcd60e51b81526004018080602001828103825260308152602001806118f86030913960400191505060405180910390fd5b6108ac816115b3565b610c0f3361135e565b565b6000610c1b6110dd565b6001600160a01b0316610c2c610b49565b6001600160a01b031614610c75576040805162461bcd60e51b81526020600482018190526024820152600080516020611949833981519152604482015290519081900360640190fd5b610c86610c806110dd565b83611401565b506001919050565b6000610cbe826040518060600160405280602481526020016119b460249139610cb78633610d69565b91906112c7565b9050610ccb8333836110e1565b610cd583836114d5565b505050565b6000610754610ce76110dd565b846107db85604051806060016040528060258152602001611a416025913960026000610d116110dd565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906112c7565b6000610754610d4f6110dd565b84846111cd565b6000610d636008836115f5565b92915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610d9c6110dd565b6001600160a01b0316610dad610b49565b6001600160a01b031614610df6576040805162461bcd60e51b81526020600482018190526024820152600080516020611949833981519152604482015290519081900360640190fd5b60005b8251811015610e6b57828181518110610e0e57fe5b60200260200101516001600160a01b0316600760029054906101000a90046001600160a01b03166001600160a01b03166000805160206119fe833981519152846040518082815260200191505060405180910390a3600101610df9565b508151600380549183029091019055610a2a8161104e565b610e8b6110dd565b6001600160a01b0316610e9c610b49565b6001600160a01b031614610ee5576040805162461bcd60e51b81526020600482018190526024820152600080516020611949833981519152604482015290519081900360640190fd5b6001600160a01b038116610f2a5760405162461bcd60e51b81526004018080602001828103825260268152602001806118aa6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610f8d6110dd565b6001600160a01b0316610f9e610b49565b6001600160a01b031614610fe7576040805162461bcd60e51b81526020600482018190526024820152600080516020611949833981519152604482015290519081900360640190fd5b600355565b610ff46110dd565b6001600160a01b0316611005610b49565b6001600160a01b03161461104e576040805162461bcd60e51b81526020600482018190526024820152600080516020611949833981519152604482015290519081900360640190fd5b600455565b60095460ff1681565b61106682826115f5565b156110b8576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b3390565b6001600160a01b0383166111265760405162461bcd60e51b81526004018080602001828103825260248152602001806118866024913960400191505060405180910390fd5b6001600160a01b03821661116b5760405162461bcd60e51b8152600401808060200182810382526022815260200180611aa96022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000811161120c5760405162461bcd60e51b815260040180806020018281038252602981526020018061198b6029913960400191505060405180910390fd5b611214610b49565b6001600160a01b0316836001600160a01b0316148061124b5750611236610b49565b6001600160a01b0316826001600160a01b0316145b156112605761125b83838361165c565b610cd5565b60095460ff1615156001146112bc576040805162461bcd60e51b815260206004820152601860248201527f54726164696e67206973206e6f7420796574206f70656e2e0000000000000000604482015290519081900360640190fd5b610cd583838361165c565b600081848411156113565760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561131b578181015183820152602001611303565b50505050905090810190601f1680156113485780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b61136960088261179c565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000828201838110156113fa576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03821661145c576040805162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60035461146990826113a0565b6003556001600160a01b03821660009081526001602052604090205461148f90826113a0565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391926000805160206119fe8339815191529281900390910190a35050565b6001600160a01b03821661151a5760405162461bcd60e51b8152600401808060200182810382526021815260200180611a666021913960400191505060405180910390fd5b61155781604051806060016040528060228152602001611a87602291396001600160a01b03851660009081526001602052604090205491906112c7565b6001600160a01b03831660009081526001602052604090205560035461157d9082611803565b6003556040805182815290516000916001600160a01b038516916000805160206119fe8339815191529181900360200190a35050565b6115be60088261105c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60006001600160a01b03821661163c5760405162461bcd60e51b81526004018080602001828103825260228152602001806119696022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b0383166116a15760405162461bcd60e51b81526004018080602001828103825260258152602001806118616025913960400191505060405180910390fd5b6001600160a01b0382166116e65760405162461bcd60e51b8152600401808060200182810382526023815260200180611a1e6023913960400191505060405180910390fd5b611723816040518060600160405280602681526020016119d8602691396001600160a01b03861660009081526001602052604090205491906112c7565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461175290826113a0565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716926000805160206119fe83398151915292918290030190a3505050565b6117a682826115f5565b6117e15760405162461bcd60e51b81526004018080602001828103825260218152602001806119286021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60008282111561185a576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f20616464726573735472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef42455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a206275726e2066726f6d20746865207a65726f206164647265737342455032303a206275726e20616d6f756e7420657863656564732062616c616e636542455032303a20617070726f766520746f20746865207a65726f2061646472657373a2646970667358221220ef39997080972a376e0f1693c83fd960c1f4cd946cfe38a0206c7af7cb48865364736f6c634300060c0033526f6c65733a206163636f756e7420697320746865207a65726f20616464726573730000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063a9059cbb116100a2578063f2fde38b11610071578063f2fde38b14610642578063f7ea7a3d14610668578063fb1669ca14610685578063ffb54a99146106a2576101da565b8063a9059cbb1461051d578063aa271e1a14610549578063dd62ed3e1461056f578063de4763a61461059d576101da565b806398650275116100de57806398650275146104a0578063a0712d68146104a8578063a22b35ce146104c5578063a457c2d7146104f1576101da565b80638da5cb5b1461046a57806395d89b4114610472578063983b2d561461047a576101da565b8063318c0a0f1161017c57806370a082311161014b57806370a08231146103ec578063715018a61461041257806379cc67901461041a578063893d20e814610446576101da565b8063318c0a0f14610351578063395093511461037757806340c10f19146103a357806342966c68146103cf576101da565b806323b872dd116101b857806323b872dd146102b65780632a9b8072146102ec5780633092afd51461030d578063313ce56714610333576101da565b806306fdde03146101df578063095ea7b31461025c57806318160ddd1461029c575b600080fd5b6101e76106aa565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610221578181015183820152602001610209565b50505050905090810190601f16801561024e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102886004803603604081101561027257600080fd5b506001600160a01b038135169060200135610740565b604080519115158252519081900360200190f35b6102a461075d565b60408051918252519081900360200190f35b610288600480360360608110156102cc57600080fd5b506001600160a01b03813581169160208101359091169060400135610763565b61030b6004803603602081101561030257600080fd5b503515156107ea565b005b61030b6004803603602081101561032357600080fd5b50356001600160a01b031661085f565b61033b6108af565b6040805160ff9092168252519081900360200190f35b61030b6004803603602081101561036757600080fd5b50356001600160a01b03166108b8565b6102886004803603604081101561038d57600080fd5b506001600160a01b03813516906020013561098e565b61030b600480360360408110156103b957600080fd5b506001600160a01b0381351690602001356109dc565b61030b600480360360208110156103e557600080fd5b5035610a2e565b6102a46004803603602081101561040257600080fd5b50356001600160a01b0316610a38565b61030b610a84565b61030b6004803603604081101561043057600080fd5b506001600160a01b038135169060200135610b30565b61044e610b3a565b604080516001600160a01b039092168252519081900360200190f35b61044e610b49565b6101e7610b58565b61030b6004803603602081101561049057600080fd5b50356001600160a01b0316610bb9565b61030b610c06565b610288600480360360208110156104be57600080fd5b5035610c11565b61030b600480360360408110156104db57600080fd5b506001600160a01b038135169060200135610c8e565b6102886004803603604081101561050757600080fd5b506001600160a01b038135169060200135610cda565b6102886004803603604081101561053357600080fd5b506001600160a01b038135169060200135610d42565b6102886004803603602081101561055f57600080fd5b50356001600160a01b0316610d56565b6102a46004803603604081101561058557600080fd5b506001600160a01b0381358116916020013516610d69565b61030b600480360360408110156105b357600080fd5b8101906020810181356401000000008111156105ce57600080fd5b8201836020820111156105e057600080fd5b8035906020019184602083028401116401000000008311171561060257600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250610d94915050565b61030b6004803603602081101561065857600080fd5b50356001600160a01b0316610e83565b61030b6004803603602081101561067e57600080fd5b5035610f85565b61030b6004803603602081101561069b57600080fd5b5035610fec565b610288611053565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107365780601f1061070b57610100808354040283529160200191610736565b820191906000526020600020905b81548152906001019060200180831161071957829003601f168201915b5050505050905090565b600061075461074d6110dd565b84846110e1565b50600192915050565b60035490565b60006107708484846111cd565b6107e08461077c6110dd565b6107db856040518060600160405280602881526020016118d0602891396001600160a01b038a166000908152600260205260408120906107ba6110dd565b6001600160a01b0316815260208101919091526040016000205491906112c7565b6110e1565b5060019392505050565b6107f26110dd565b6001600160a01b0316610803610b49565b6001600160a01b03161461084c576040805162461bcd60e51b81526020600482018190526024820152600080516020611949833981519152604482015290519081900360640190fd5b6009805460ff1916911515919091179055565b61086833610d56565b6108a35760405162461bcd60e51b81526004018080602001828103825260308152602001806118f86030913960400191505060405180910390fd5b6108ac8161135e565b50565b60075460ff1690565b6108c06110dd565b6001600160a01b03166108d1610b49565b6001600160a01b03161461091a576040805162461bcd60e51b81526020600482018190526024820152600080516020611949833981519152604482015290519081900360640190fd5b6001600160a01b038116610964576040805162461bcd60e51b815260206004820152600c60248201526b7a65726f206164647265737360a01b604482015290519081900360640190fd5b600780546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600061075461099b6110dd565b846107db85600260006109ac6110dd565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906113a0565b6109e533610d56565b610a205760405162461bcd60e51b81526004018080602001828103825260308152602001806118f86030913960400191505060405180910390fd5b610a2a8282611401565b5050565b6108ac33826114d5565b6000610a42610b49565b6001600160a01b0316826001600160a01b03161415610a7a57506001600160a01b038116600090815260016020526040902054610a7f565b506004545b919050565b610a8c6110dd565b6001600160a01b0316610a9d610b49565b6001600160a01b031614610ae6576040805162461bcd60e51b81526020600482018190526024820152600080516020611949833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610a2a8282610c8e565b6000610b44610b49565b905090565b6000546001600160a01b031690565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107365780601f1061070b57610100808354040283529160200191610736565b610bc233610d56565b610bfd5760405162461bcd60e51b81526004018080602001828103825260308152602001806118f86030913960400191505060405180910390fd5b6108ac816115b3565b610c0f3361135e565b565b6000610c1b6110dd565b6001600160a01b0316610c2c610b49565b6001600160a01b031614610c75576040805162461bcd60e51b81526020600482018190526024820152600080516020611949833981519152604482015290519081900360640190fd5b610c86610c806110dd565b83611401565b506001919050565b6000610cbe826040518060600160405280602481526020016119b460249139610cb78633610d69565b91906112c7565b9050610ccb8333836110e1565b610cd583836114d5565b505050565b6000610754610ce76110dd565b846107db85604051806060016040528060258152602001611a416025913960026000610d116110dd565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906112c7565b6000610754610d4f6110dd565b84846111cd565b6000610d636008836115f5565b92915050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610d9c6110dd565b6001600160a01b0316610dad610b49565b6001600160a01b031614610df6576040805162461bcd60e51b81526020600482018190526024820152600080516020611949833981519152604482015290519081900360640190fd5b60005b8251811015610e6b57828181518110610e0e57fe5b60200260200101516001600160a01b0316600760029054906101000a90046001600160a01b03166001600160a01b03166000805160206119fe833981519152846040518082815260200191505060405180910390a3600101610df9565b508151600380549183029091019055610a2a8161104e565b610e8b6110dd565b6001600160a01b0316610e9c610b49565b6001600160a01b031614610ee5576040805162461bcd60e51b81526020600482018190526024820152600080516020611949833981519152604482015290519081900360640190fd5b6001600160a01b038116610f2a5760405162461bcd60e51b81526004018080602001828103825260268152602001806118aa6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610f8d6110dd565b6001600160a01b0316610f9e610b49565b6001600160a01b031614610fe7576040805162461bcd60e51b81526020600482018190526024820152600080516020611949833981519152604482015290519081900360640190fd5b600355565b610ff46110dd565b6001600160a01b0316611005610b49565b6001600160a01b03161461104e576040805162461bcd60e51b81526020600482018190526024820152600080516020611949833981519152604482015290519081900360640190fd5b600455565b60095460ff1681565b61106682826115f5565b156110b8576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b3390565b6001600160a01b0383166111265760405162461bcd60e51b81526004018080602001828103825260248152602001806118866024913960400191505060405180910390fd5b6001600160a01b03821661116b5760405162461bcd60e51b8152600401808060200182810382526022815260200180611aa96022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000811161120c5760405162461bcd60e51b815260040180806020018281038252602981526020018061198b6029913960400191505060405180910390fd5b611214610b49565b6001600160a01b0316836001600160a01b0316148061124b5750611236610b49565b6001600160a01b0316826001600160a01b0316145b156112605761125b83838361165c565b610cd5565b60095460ff1615156001146112bc576040805162461bcd60e51b815260206004820152601860248201527f54726164696e67206973206e6f7420796574206f70656e2e0000000000000000604482015290519081900360640190fd5b610cd583838361165c565b600081848411156113565760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561131b578181015183820152602001611303565b50505050905090810190601f1680156113485780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b61136960088261179c565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000828201838110156113fa576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03821661145c576040805162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60035461146990826113a0565b6003556001600160a01b03821660009081526001602052604090205461148f90826113a0565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391926000805160206119fe8339815191529281900390910190a35050565b6001600160a01b03821661151a5760405162461bcd60e51b8152600401808060200182810382526021815260200180611a666021913960400191505060405180910390fd5b61155781604051806060016040528060228152602001611a87602291396001600160a01b03851660009081526001602052604090205491906112c7565b6001600160a01b03831660009081526001602052604090205560035461157d9082611803565b6003556040805182815290516000916001600160a01b038516916000805160206119fe8339815191529181900360200190a35050565b6115be60088261105c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b60006001600160a01b03821661163c5760405162461bcd60e51b81526004018080602001828103825260228152602001806119696022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b0383166116a15760405162461bcd60e51b81526004018080602001828103825260258152602001806118616025913960400191505060405180910390fd5b6001600160a01b0382166116e65760405162461bcd60e51b8152600401808060200182810382526023815260200180611a1e6023913960400191505060405180910390fd5b611723816040518060600160405280602681526020016119d8602691396001600160a01b03861660009081526001602052604090205491906112c7565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461175290826113a0565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716926000805160206119fe83398151915292918290030190a3505050565b6117a682826115f5565b6117e15760405162461bcd60e51b81526004018080602001828103825260218152602001806119286021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60008282111561185a576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f20616464726573735472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef42455032303a207472616e7366657220746f20746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a206275726e2066726f6d20746865207a65726f206164647265737342455032303a206275726e20616d6f756e7420657863656564732062616c616e636542455032303a20617070726f766520746f20746865207a65726f2061646472657373a2646970667358221220ef39997080972a376e0f1693c83fd960c1f4cd946cfe38a0206c7af7cb48865364736f6c634300060c0033

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

0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad

-----Decoded View---------------
Arg [0] : _sender (address): 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad


Deployed Bytecode Sourcemap

24907:1758:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16100:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18679:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18679:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;16641:100;;;:::i;:::-;;;;;;;;;;;;;;;;19319:372;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19319:372:0;;;;;;;;;;;;;;;;;:::i;26530:130::-;;;;;;;;;;;;;;;;-1:-1:-1;26530:130:0;;;;:::i;:::-;;14446:98;;;;;;;;;;;;;;;;-1:-1:-1;14446:98:0;-1:-1:-1;;;;;14446:98:0;;:::i;16494:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17768:165;;;;;;;;;;;;;;;;-1:-1:-1;17768:165:0;-1:-1:-1;;;;;17768:165:0;;:::i;20099:210::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20099:210:0;;;;;;;;:::i;25267:100::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25267:100:0;;;;;;;;:::i;25375:89::-;;;;;;;;;;;;;;;;-1:-1:-1;25375:89:0;;:::i;17236:225::-;;;;;;;;;;;;;;;;-1:-1:-1;17236:225:0;-1:-1:-1;;;;;17236:225:0;;:::i;4809:148::-;;;:::i;25477:115::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25477:115:0;;;;;;;;:::i;15945:85::-;;;:::i;:::-;;;;-1:-1:-1;;;;;15945:85:0;;;;;;;;;;;;;;4158:87;;;:::i;16302:::-;;;:::i;14346:92::-;;;;;;;;;;;;;;;;-1:-1:-1;14346:92:0;-1:-1:-1;;;;;14346:92:0;;:::i;14552:77::-;;;:::i;21290:130::-;;;;;;;;;;;;;;;;-1:-1:-1;21290:130:0;;:::i;25600:363::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25600:363:0;;;;;;;;:::i;20811:261::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20811:261:0;;;;;;;;:::i;18145:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18145:175:0;;;;;;;;:::i;14229:109::-;;;;;;;;;;;;;;;;-1:-1:-1;14229:109:0;-1:-1:-1;;;;;14229:109:0;;:::i;18382:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18382:151:0;;;;;;;;;;:::i;17469:291::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17469:291:0;;-1:-1:-1;;17469:291:0;;;-1:-1:-1;17469:291:0;;-1:-1:-1;;17469:291:0:i;5112:244::-;;;;;;;;;;;;;;;;-1:-1:-1;5112:244:0;-1:-1:-1;;;;;5112:244:0;;:::i;16749:107::-;;;;;;;;;;;;;;;;-1:-1:-1;16749:107:0;;:::i;16864:102::-;;;;;;;;;;;;;;;;-1:-1:-1;16864:102:0;;:::i;24973:23::-;;;:::i;16100:83::-;16170:5;16163:12;;;;;;;;-1:-1:-1;;16163:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16137:13;;16163:12;;16170:5;;16163:12;;16170:5;16163:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16100:83;:::o;18679:169::-;18762:4;18779:39;18788:12;:10;:12::i;:::-;18802:7;18811:6;18779:8;:39::i;:::-;-1:-1:-1;18836:4:0;18679:169;;;;:::o;16641:100::-;16721:12;;16641:100;:::o;19319:372::-;19426:4;19443:36;19453:6;19461:9;19472:6;19443:9;:36::i;:::-;19490:171;19513:6;19534:12;:10;:12::i;:::-;19561:89;19599:6;19561:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19561:19:0;;;;;;:11;:19;;;;;;19581:12;:10;:12::i;:::-;-1:-1:-1;;;;;19561:33:0;;;;;;;;;;;;-1:-1:-1;19561:33:0;;;:89;:37;:89::i;:::-;19490:8;:171::i;:::-;-1:-1:-1;19679:4:0;19319:372;;;;;:::o;26530:130::-;4389:12;:10;:12::i;:::-;-1:-1:-1;;;;;4378:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4378:23:0;;4370:68;;;;;-1:-1:-1;;;4370:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4370:68:0;;;;;;;;;;;;;;;26633:11:::1;:19:::0;;-1:-1:-1;;26633:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26530:130::o;14446:98::-;14128:20;14137:10;14128:8;:20::i;:::-;14120:81;;;;-1:-1:-1;;;14120:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14514:22:::1;14528:7;14514:13;:22::i;:::-;14446:98:::0;:::o;16494:83::-;16560:9;;;;16494:83;:::o;17768:165::-;4389:12;:10;:12::i;:::-;-1:-1:-1;;;;;4378:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4378:23:0;;4370:68;;;;;-1:-1:-1;;;4370:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4370:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17855:23:0;::::1;17847:48;;;::::0;;-1:-1:-1;;;17847:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;17847:48:0;;;;;;;;;;;;;::::1;;17906:7;:19:::0;;-1:-1:-1;;;;;17906:19:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;17906:19:0;;::::1;::::0;;;::::1;::::0;;17768:165::o;20099:210::-;20179:4;20196:83;20205:12;:10;:12::i;:::-;20219:7;20228:50;20267:10;20228:11;:25;20240:12;:10;:12::i;:::-;-1:-1:-1;;;;;20228:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20228:25:0;;;:34;;;;;;;;;;;:38;:50::i;25267:100::-;14128:20;14137:10;14128:8;:20::i;:::-;14120:81;;;;-1:-1:-1;;;14120:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25340:19:::1;25346:3;25351:7;25340:5;:19::i;:::-;25267:100:::0;;:::o;25375:89::-;25431:25;25437:10;25449:6;25431:5;:25::i;17236:225::-;17310:7;17344;:5;:7::i;:::-;-1:-1:-1;;;;;17333:18:0;:7;-1:-1:-1;;;;;17333:18:0;;17330:124;;;-1:-1:-1;;;;;;17375:18:0;;;;;;:9;:18;;;;;;17368:25;;17330:124;-1:-1:-1;17433:9:0;;17330:124;17236:225;;;:::o;4809:148::-;4389:12;:10;:12::i;:::-;-1:-1:-1;;;;;4378:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4378:23:0;;4370:68;;;;;-1:-1:-1;;;4370:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4370:68:0;;;;;;;;;;;;;;;4916:1:::1;4900:6:::0;;4879:40:::1;::::0;-1:-1:-1;;;;;4900:6:0;;::::1;::::0;4879:40:::1;::::0;4916:1;;4879:40:::1;4947:1;4930:19:::0;;-1:-1:-1;;;;;;4930:19:0::1;::::0;;4809:148::o;25477:115::-;25556:28;25566:8;25576:7;25556:9;:28::i;15945:85::-;15988:7;16015;:5;:7::i;:::-;16008:14;;15945:85;:::o;4158:87::-;4204:7;4231:6;-1:-1:-1;;;;;4231:6:0;4158:87;:::o;16302:::-;16374:7;16367:14;;;;;;;;-1:-1:-1;;16367:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16341:13;;16367:14;;16374:7;;16367:14;;16374:7;16367:14;;;;;;;;;;;;;;;;;;;;;;;;14346:92;14128:20;14137:10;14128:8;:20::i;:::-;14120:81;;;;-1:-1:-1;;;14120:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14411:19:::1;14422:7;14411:10;:19::i;14552:77::-:0;14596:25;14610:10;14596:13;:25::i;:::-;14552:77::o;21290:130::-;21346:4;4389:12;:10;:12::i;:::-;-1:-1:-1;;;;;4378:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4378:23:0;;4370:68;;;;;-1:-1:-1;;;4370:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4370:68:0;;;;;;;;;;;;;;;21363:27:::1;21369:12;:10;:12::i;:::-;21383:6;21363:5;:27::i;:::-;-1:-1:-1::0;21408:4:0::1;21290:130:::0;;;:::o;25600:363::-;25680:27;25723:133;25777:7;25723:133;;;;;;;;;;;;;;;;;:31;25733:8;25743:10;25723:9;:31::i;:::-;:35;:133;:35;:133::i;:::-;25680:176;;25869:51;25878:8;25888:10;25900:19;25869:8;:51::i;:::-;25931:24;25937:8;25947:7;25931:5;:24::i;:::-;25600:363;;;:::o;20811:261::-;20896:4;20913:129;20922:12;:10;:12::i;:::-;20936:7;20945:96;20984:15;20945:96;;;;;;;;;;;;;;;;;:11;:25;20957:12;:10;:12::i;:::-;-1:-1:-1;;;;;20945:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20945:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;18145:175::-;18231:4;18248:42;18258:12;:10;:12::i;:::-;18272:9;18283:6;18248:9;:42::i;14229:109::-;14285:4;14309:21;:8;14322:7;14309:12;:21::i;:::-;14302:28;14229:109;-1:-1:-1;;14229:109:0:o;18382:151::-;-1:-1:-1;;;;;18498:18:0;;;18471:7;18498:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18382:151::o;17469:291::-;4389:12;:10;:12::i;:::-;-1:-1:-1;;;;;4378:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4378:23:0;;4370:68;;;;;-1:-1:-1;;;4370:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4370:68:0;;;;;;;;;;;;;;;17568:9:::1;17564:109;17587:5;:12;17583:1;:16;17564:109;;;17644:5;17650:1;17644:8;;;;;;;;;;;;;;-1:-1:-1::0;;;;;17626:35:0::1;17635:7;;;;;;;;;-1:-1:-1::0;;;;;17635:7:0::1;-1:-1:-1::0;;;;;17626:35:0::1;-1:-1:-1::0;;;;;;;;;;;17654:6:0::1;17626:35;;;;;;;;;;;;;;;;;;17601:3;;17564:109;;;-1:-1:-1::0;17699:12:0;;17683::::1;:37:::0;;17699:21;;::::1;17683:37:::0;;::::1;::::0;;17731:21:::1;17699::::0;17731:13:::1;:21::i;5112:244::-:0;4389:12;:10;:12::i;:::-;-1:-1:-1;;;;;4378:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4378:23:0;;4370:68;;;;;-1:-1:-1;;;4370:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4370:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;5201:22:0;::::1;5193:73;;;;-1:-1:-1::0;;;5193:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5303:6;::::0;;5282:38:::1;::::0;-1:-1:-1;;;;;5282:38:0;;::::1;::::0;5303:6;::::1;::::0;5282:38:::1;::::0;::::1;5331:6;:17:::0;;-1:-1:-1;;;;;;5331:17:0::1;-1:-1:-1::0;;;;;5331:17:0;;;::::1;::::0;;;::::1;::::0;;5112:244::o;16749:107::-;4389:12;:10;:12::i;:::-;-1:-1:-1;;;;;4378:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4378:23:0;;4370:68;;;;;-1:-1:-1;;;4370:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4370:68:0;;;;;;;;;;;;;;;16827:12:::1;:21:::0;16749:107::o;16864:102::-;4389:12;:10;:12::i;:::-;-1:-1:-1;;;;;4378:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4378:23:0;;4370:68;;;;;-1:-1:-1;;;4370:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4370:68:0;;;;;;;;;;;;;;;16939:9:::1;:19:::0;16864:102::o;24973:23::-;;;;;;:::o;12981:178::-;13059:18;13063:4;13069:7;13059:3;:18::i;:::-;13058:19;13050:63;;;;;-1:-1:-1;;;13050:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13124:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;13124:27:0;13147:4;13124:27;;;12981:178::o;2787:106::-;2875:10;2787:106;:::o;24115:347::-;-1:-1:-1;;;;;24218:19:0;;24210:68;;;;-1:-1:-1;;;24210:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24297:21:0;;24289:68;;;;-1:-1:-1;;;24289:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24370:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24422:32;;;;;;;;;;;;;;;;;24115:347;;;:::o;26039:483::-;26193:1;26184:6;:10;26176:64;;;;-1:-1:-1;;;26176:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26267:7;:5;:7::i;:::-;-1:-1:-1;;;;;26257:17:0;:6;-1:-1:-1;;;;;26257:17:0;;:41;;;;26291:7;:5;:7::i;:::-;-1:-1:-1;;;;;26278:20:0;:9;-1:-1:-1;;;;;26278:20:0;;26257:41;26253:262;;;26315:42;26331:6;26339:9;26350:6;26315:15;:42::i;:::-;26253:262;;;26398:11;;;;:19;;:11;:19;26390:56;;;;;-1:-1:-1;;;26390:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26461:42;26477:6;26485:9;26496:6;26461:15;:42::i;10894:166::-;10980:7;11016:12;11008:6;;;;11000:29;;;;-1:-1:-1;;;11000:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11047:5:0;;;10894:166::o;14767:130::-;14827:24;:8;14843:7;14827:15;:24::i;:::-;14867:22;;-1:-1:-1;;;;;14867:22:0;;;;;;;;14767:130;:::o;8067:179::-;8125:7;8157:5;;;8181:6;;;;8173:46;;;;;-1:-1:-1;;;8173:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8237:1;8067:179;-1:-1:-1;;;8067:179:0:o;22671:316::-;-1:-1:-1;;;;;22755:21:0;;22747:65;;;;;-1:-1:-1;;;22747:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22840:12;;:24;;22857:6;22840:16;:24::i;:::-;22825:12;:39;-1:-1:-1;;;;;22896:18:0;;;;;;:9;:18;;;;;;:30;;22919:6;22896:22;:30::i;:::-;-1:-1:-1;;;;;22875:18:0;;;;;;:9;:18;;;;;;;;:51;;;;22942:37;;;;;;;22875:18;;;;-1:-1:-1;;;;;;;;;;;22942:37:0;;;;;;;;;22671:316;;:::o;23319:356::-;-1:-1:-1;;;;;23403:21:0;;23395:67;;;;-1:-1:-1;;;23395:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23496:68;23519:6;23496:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23496:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;23475:18:0;;;;;;:9;:18;;;;;:89;23590:12;;:24;;23607:6;23590:16;:24::i;:::-;23575:12;:39;23630:37;;;;;;;;23656:1;;-1:-1:-1;;;;;23630:37:0;;;-1:-1:-1;;;;;;;;;;;23630:37:0;;;;;;;;23319:356;;:::o;14637:122::-;14694:21;:8;14707:7;14694:12;:21::i;:::-;14731:20;;-1:-1:-1;;;;;14731:20:0;;;;;;;;14637:122;:::o;13517:203::-;13589:4;-1:-1:-1;;;;;13614:21:0;;13606:68;;;;-1:-1:-1;;;13606:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13692:20:0;:11;:20;;;;;;;;;;;;;;;13517:203::o;21910:480::-;-1:-1:-1;;;;;22017:20:0;;22009:70;;;;-1:-1:-1;;;22009:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22098:23:0;;22090:71;;;;-1:-1:-1;;;22090:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22194;22216:6;22194:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22194:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;22174:17:0;;;;;;;:9;:17;;;;;;:91;;;;22299:20;;;;;;;:32;;22324:6;22299:24;:32::i;:::-;-1:-1:-1;;;;;22276:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;22347:35;;;;;;;22276:20;;22347:35;;;;-1:-1:-1;;;;;;;;;;;22347:35:0;;;;;;;;21910:480;;;:::o;13239:183::-;13319:18;13323:4;13329:7;13319:3;:18::i;:::-;13311:64;;;;-1:-1:-1;;;13311:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13386:20:0;13409:5;13386:20;;;;;;;;;;;:28;;-1:-1:-1;;13386:28:0;;;13239:183::o;8529:158::-;8587:7;8620:1;8615;:6;;8607:49;;;;;-1:-1:-1;;;8607:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8674:5:0;;;8529:158::o

Swarm Source

ipfs://ef39997080972a376e0f1693c83fd960c1f4cd946cfe38a0206c7af7cb488653
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.