FTM Price: $1.26 (-4.41%)
 

More Info

Private Name Tags

TokenTracker

Treeb (TREEB) (@$0.0004)

Multichain Info

Transaction Hash
Method
Block
From
To
Transfer995430462024-12-09 3:00:323 hrs ago1733713232IN
Retreeb: TREEB Token
0 FTM0.000157415
Approve995395532024-12-09 1:54:324 hrs ago1733709272IN
Retreeb: TREEB Token
0 FTM0.000266045.71072125
Transfer995358292024-12-09 0:49:205 hrs ago1733705360IN
Retreeb: TREEB Token
0 FTM0.00015735
Transfer995356702024-12-09 0:47:025 hrs ago1733705222IN
Retreeb: TREEB Token
0 FTM0.000182665.80211472
Transfer995315342024-12-08 23:39:056 hrs ago1733701145IN
Retreeb: TREEB Token
0 FTM0.00019415
Approve995190322024-12-08 19:58:3010 hrs ago1733687910IN
Retreeb: TREEB Token
0 FTM0.000122445.03836588
Transfer995183242024-12-08 19:47:0610 hrs ago1733687226IN
Retreeb: TREEB Token
0 FTM0.00019415
Transfer995158722024-12-08 19:09:0311 hrs ago1733684943IN
Retreeb: TREEB Token
0 FTM0.00019415
Transfer995156192024-12-08 19:05:0311 hrs ago1733684703IN
Retreeb: TREEB Token
0 FTM0.00019415
Approve995108132024-12-08 17:42:0212 hrs ago1733679722IN
Retreeb: TREEB Token
0 FTM0.000236854.99091056
Transfer995106892024-12-08 17:40:0512 hrs ago1733679605IN
Retreeb: TREEB Token
0 FTM0.00019415
Transfer995106212024-12-08 17:39:0312 hrs ago1733679543IN
Retreeb: TREEB Token
0 FTM0.000194045
Transfer995100762024-12-08 17:30:0313 hrs ago1733679003IN
Retreeb: TREEB Token
0 FTM0.000271055
Transfer995090162024-12-08 17:13:0413 hrs ago1733677984IN
Retreeb: TREEB Token
0 FTM0.000194095
Transfer995076602024-12-08 16:52:1013 hrs ago1733676730IN
Retreeb: TREEB Token
0 FTM0.000194985.02300047
Transfer995076542024-12-08 16:52:0413 hrs ago1733676724IN
Retreeb: TREEB Token
0 FTM0.000194845.0209576
Transfer995063672024-12-08 16:33:3413 hrs ago1733675614IN
Retreeb: TREEB Token
0 FTM0.000162995.17733624
Transfer995060872024-12-08 16:29:0414 hrs ago1733675344IN
Retreeb: TREEB Token
0 FTM0.000201155.18189417
Transfer995056432024-12-08 16:22:0514 hrs ago1733674925IN
Retreeb: TREEB Token
0 FTM0.000297055.48208528
Approve994969532024-12-08 14:10:1416 hrs ago1733667014IN
Retreeb: TREEB Token
0 FTM0.000244585
Transfer994956922024-12-08 13:51:0616 hrs ago1733665866IN
Retreeb: TREEB Token
0 FTM0.000198635.11842674
Transfer994940882024-12-08 13:24:0517 hrs ago1733664245IN
Retreeb: TREEB Token
0 FTM0.000194035
Transfer994934742024-12-08 13:14:0617 hrs ago1733663646IN
Retreeb: TREEB Token
0 FTM0.000157255
Transfer994931112024-12-08 13:08:1217 hrs ago1733663292IN
Retreeb: TREEB Token
0 FTM0.0006289812.18848046
Transfer994931032024-12-08 13:08:0517 hrs ago1733663285IN
Retreeb: TREEB Token
0 FTM0.000194035
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
53203412021-05-05 14:53:311313 days ago1620226411  Contract Creation0 FTM
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Treeb

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at ftmscan.com on 2021-05-06
*/

//   _____      _                 _     
//  |  __ \    | |               | |    
//  | |__) |___| |_ _ __ ___  ___| |__  
//  |  _  // _ \ __| '__/ _ \/ _ \ '_ \ 
//  | | \ \  __/ |_| | |  __/  __/ |_) |
//  |_|  \_\___|\__|_|  \___|\___|_.__/ 
                                     

// @Retreeb Inc. 
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * 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);
}

pragma solidity ^0.8.4;

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

pragma solidity ^0.8.4;

/*
 * @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 {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


pragma solidity ^0.8.4;


/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

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

        _beforeTokenTransfer(account, address(0), amount);

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

        emit Transfer(account, address(0), amount);
    }
    
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}


pragma solidity ^0.8.4;

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


pragma solidity ^0.8.4;

contract Treeb is ERC20, Ownable {

  constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {
    _mint(_msgSender(), 1_000_000_000 * 1E18);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":"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":[],"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":[{"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":[],"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":[],"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"}]

60806040523480156200001157600080fd5b50604051620010cf380380620010cf83398101604081905262000034916200032b565b8151829082906200004d906003906020850190620001d2565b50805162000063906004906020840190620001d2565b505050600062000078620000e660201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000de336b033b2e3c9fd0803ce8000000620000ea565b50506200040a565b3390565b6001600160a01b038216620001455760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000159919062000392565b90915550506001600160a01b038216600090815260208190526040812080548392906200018890849062000392565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001e090620003b7565b90600052602060002090601f0160209004810192826200020457600085556200024f565b82601f106200021f57805160ff19168380011785556200024f565b828001600101855582156200024f579182015b828111156200024f57825182559160200191906001019062000232565b506200025d92915062000261565b5090565b5b808211156200025d576000815560010162000262565b600082601f83011262000289578081fd5b81516001600160401b0380821115620002a657620002a6620003f4565b604051601f8301601f19908116603f01168101908282118183101715620002d157620002d1620003f4565b81604052838152602092508683858801011115620002ed578485fd5b8491505b83821015620003105785820183015181830184015290820190620002f1565b838211156200032157848385830101525b9695505050505050565b600080604083850312156200033e578182fd5b82516001600160401b038082111562000355578384fd5b620003638683870162000278565b9350602085015191508082111562000379578283fd5b50620003888582860162000278565b9150509250929050565b60008219821115620003b257634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680620003cc57607f821691505b60208210811415620003ee57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610cb5806200041a6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146101eb578063a9059cbb146101fe578063dd62ed3e14610211578063f2fde38b1461024a57600080fd5b806370a0823114610197578063715018a6146101c05780638da5cb5b146101c857806395d89b41146101e357600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461016f57806342966c681461018257600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b61010261025d565b60405161010f9190610bac565b60405180910390f35b61012b610126366004610b6b565b6102ef565b604051901515815260200161010f565b6002545b60405190815260200161010f565b61012b61015b366004610b30565b610305565b6040516012815260200161010f565b61012b61017d366004610b6b565b6103bb565b610195610190366004610b94565b6103f2565b005b61013f6101a5366004610add565b6001600160a01b031660009081526020819052604090205490565b6101956103ff565b6005546040516001600160a01b03909116815260200161010f565b6101026104a3565b61012b6101f9366004610b6b565b6104b2565b61012b61020c366004610b6b565b61054d565b61013f61021f366004610afe565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610195610258366004610add565b61055a565b60606003805461026c90610c2e565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610c2e565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b60006102fc338484610675565b50600192915050565b600061031284848461079a565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561039c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103b085336103ab8685610c17565b610675565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102fc9185906103ab908690610bff565b6103fc3382610972565b50565b6005546001600160a01b031633146104595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610393565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b60606004805461026c90610c2e565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105345760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610393565b61054333856103ab8685610c17565b5060019392505050565b60006102fc33848461079a565b6005546001600160a01b031633146105b45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610393565b6001600160a01b0381166106195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610393565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166106d75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610393565b6001600160a01b0382166107385760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610393565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107fe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610393565b6001600160a01b0382166108605760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610393565b6001600160a01b038316600090815260208190526040902054818110156108d85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610393565b6108e28282610c17565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610918908490610bff565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161096491815260200190565b60405180910390a350505050565b6001600160a01b0382166109d25760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610393565b6001600160a01b03821660009081526020819052604090205481811015610a465760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610393565b610a508282610c17565b6001600160a01b03841660009081526020819052604081209190915560028054849290610a7e908490610c17565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161078d565b80356001600160a01b0381168114610ad857600080fd5b919050565b600060208284031215610aee578081fd5b610af782610ac1565b9392505050565b60008060408385031215610b10578081fd5b610b1983610ac1565b9150610b2760208401610ac1565b90509250929050565b600080600060608486031215610b44578081fd5b610b4d84610ac1565b9250610b5b60208501610ac1565b9150604084013590509250925092565b60008060408385031215610b7d578182fd5b610b8683610ac1565b946020939093013593505050565b600060208284031215610ba5578081fd5b5035919050565b6000602080835283518082850152825b81811015610bd857858101830151858201604001528201610bbc565b81811115610be95783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610c1257610c12610c69565b500190565b600082821015610c2957610c29610c69565b500390565b600181811c90821680610c4257607f821691505b60208210811415610c6357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122055017f37c3971344e55d256291f197b20f5caa8b8d96c2f411bfdcede6a92b3d64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005547265656200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055452454542000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146101eb578063a9059cbb146101fe578063dd62ed3e14610211578063f2fde38b1461024a57600080fd5b806370a0823114610197578063715018a6146101c05780638da5cb5b146101c857806395d89b41146101e357600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461016f57806342966c681461018257600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b61010261025d565b60405161010f9190610bac565b60405180910390f35b61012b610126366004610b6b565b6102ef565b604051901515815260200161010f565b6002545b60405190815260200161010f565b61012b61015b366004610b30565b610305565b6040516012815260200161010f565b61012b61017d366004610b6b565b6103bb565b610195610190366004610b94565b6103f2565b005b61013f6101a5366004610add565b6001600160a01b031660009081526020819052604090205490565b6101956103ff565b6005546040516001600160a01b03909116815260200161010f565b6101026104a3565b61012b6101f9366004610b6b565b6104b2565b61012b61020c366004610b6b565b61054d565b61013f61021f366004610afe565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610195610258366004610add565b61055a565b60606003805461026c90610c2e565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610c2e565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b60006102fc338484610675565b50600192915050565b600061031284848461079a565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561039c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103b085336103ab8685610c17565b610675565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102fc9185906103ab908690610bff565b6103fc3382610972565b50565b6005546001600160a01b031633146104595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610393565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b60606004805461026c90610c2e565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105345760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610393565b61054333856103ab8685610c17565b5060019392505050565b60006102fc33848461079a565b6005546001600160a01b031633146105b45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610393565b6001600160a01b0381166106195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610393565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166106d75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610393565b6001600160a01b0382166107385760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610393565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107fe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610393565b6001600160a01b0382166108605760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610393565b6001600160a01b038316600090815260208190526040902054818110156108d85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610393565b6108e28282610c17565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610918908490610bff565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161096491815260200190565b60405180910390a350505050565b6001600160a01b0382166109d25760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610393565b6001600160a01b03821660009081526020819052604090205481811015610a465760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610393565b610a508282610c17565b6001600160a01b03841660009081526020819052604081209190915560028054849290610a7e908490610c17565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161078d565b80356001600160a01b0381168114610ad857600080fd5b919050565b600060208284031215610aee578081fd5b610af782610ac1565b9392505050565b60008060408385031215610b10578081fd5b610b1983610ac1565b9150610b2760208401610ac1565b90509250929050565b600080600060608486031215610b44578081fd5b610b4d84610ac1565b9250610b5b60208501610ac1565b9150604084013590509250925092565b60008060408385031215610b7d578182fd5b610b8683610ac1565b946020939093013593505050565b600060208284031215610ba5578081fd5b5035919050565b6000602080835283518082850152825b81811015610bd857858101830151858201604001528201610bbc565b81811115610be95783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610c1257610c12610c69565b500190565b600082821015610c2957610c29610c69565b500390565b600181811c90821680610c4257607f821691505b60208210811415610c6357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122055017f37c3971344e55d256291f197b20f5caa8b8d96c2f411bfdcede6a92b3d64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005547265656200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055452454542000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Treeb
Arg [1] : _symbol (string): TREEB

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 5472656562000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 5452454542000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

17820:175:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6575:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8742:169;;;;;;:::i;:::-;;:::i;:::-;;;1848:14:1;;1841:22;1823:41;;1811:2;1796:18;8742:169:0;1778:92:1;7695:108:0;7783:12;;7695:108;;;7042:25:1;;;7030:2;7015:18;7695:108:0;6997:76:1;9393:422:0;;;;;;:::i;:::-;;:::i;7537:93::-;;;7620:2;7220:36:1;;7208:2;7193:18;7537:93:0;7175:87:1;10224:215:0;;;;;;:::i;:::-;;:::i;13980:83::-;;;;;;:::i;:::-;;:::i;:::-;;7866:127;;;;;;:::i;:::-;-1:-1:-1;;;;;7967:18:0;7940:7;7967:18;;;;;;;;;;;;7866:127;17237:148;;;:::i;16586:87::-;16659:6;;16586:87;;-1:-1:-1;;;;;16659:6:0;;;1621:51:1;;1609:2;1594:18;16586:87:0;1576:102:1;6794:104:0;;;:::i;10942:377::-;;;;;;:::i;:::-;;:::i;8206:175::-;;;;;;:::i;:::-;;:::i;8444:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8560:18:0;;;8533:7;8560:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8444:151;17540:244;;;;;;:::i;:::-;;:::i;6575:100::-;6629:13;6662:5;6655:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6575:100;:::o;8742:169::-;8825:4;8842:39;4306:10;8865:7;8874:6;8842:8;:39::i;:::-;-1:-1:-1;8899:4:0;8742:169;;;;:::o;9393:422::-;9499:4;9516:36;9526:6;9534:9;9545:6;9516:9;:36::i;:::-;-1:-1:-1;;;;;9592:19:0;;9565:24;9592:19;;;:11;:19;;;;;;;;4306:10;9592:33;;;;;;;;9644:26;;;;9636:79;;;;-1:-1:-1;;;9636:79:0;;4709:2:1;9636:79:0;;;4691:21:1;4748:2;4728:18;;;4721:30;4787:34;4767:18;;;4760:62;-1:-1:-1;;;4838:18:1;;;4831:38;4886:19;;9636:79:0;;;;;;;;;9726:57;9735:6;4306:10;9757:25;9776:6;9757:16;:25;:::i;:::-;9726:8;:57::i;:::-;-1:-1:-1;9803:4:0;;9393:422;-1:-1:-1;;;;9393:422:0:o;10224:215::-;4306:10;10312:4;10361:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10361:34:0;;;;;;;;;;10312:4;;10329:80;;10352:7;;10361:47;;10398:10;;10361:47;:::i;13980:83::-;14028:27;4306:10;14048:6;14028:5;:27::i;:::-;13980:83;:::o;17237:148::-;16659:6;;-1:-1:-1;;;;;16659:6:0;4306:10;16806:23;16798:68;;;;-1:-1:-1;;;16798:68:0;;5118:2:1;16798:68:0;;;5100:21:1;;;5137:18;;;5130:30;5196:34;5176:18;;;5169:62;5248:18;;16798:68:0;5090:182:1;16798:68:0;17328:6:::1;::::0;17307:40:::1;::::0;17344:1:::1;::::0;-1:-1:-1;;;;;17328:6:0::1;::::0;17307:40:::1;::::0;17344:1;;17307:40:::1;17358:6;:19:::0;;-1:-1:-1;;;;;;17358:19:0::1;::::0;;17237:148::o;6794:104::-;6850:13;6883:7;6876:14;;;;;:::i;10942:377::-;4306:10;11035:4;11079:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11079:34:0;;;;;;;;;;11132:35;;;;11124:85;;;;-1:-1:-1;;;11124:85:0;;6692:2:1;11124:85:0;;;6674:21:1;6731:2;6711:18;;;6704:30;6770:34;6750:18;;;6743:62;-1:-1:-1;;;6821:18:1;;;6814:35;6866:19;;11124:85:0;6664:227:1;11124:85:0;11220:67;4306:10;11243:7;11252:34;11271:15;11252:16;:34;:::i;11220:67::-;-1:-1:-1;11307:4:0;;10942:377;-1:-1:-1;;;10942:377:0:o;8206:175::-;8292:4;8309:42;4306:10;8333:9;8344:6;8309:9;:42::i;17540:244::-;16659:6;;-1:-1:-1;;;;;16659:6:0;4306:10;16806:23;16798:68;;;;-1:-1:-1;;;16798:68:0;;5118:2:1;16798:68:0;;;5100:21:1;;;5137:18;;;5130:30;5196:34;5176:18;;;5169:62;5248:18;;16798:68:0;5090:182:1;16798:68:0;-1:-1:-1;;;;;17629:22:0;::::1;17621:73;;;::::0;-1:-1:-1;;;17621:73:0;;3492:2:1;17621:73:0::1;::::0;::::1;3474:21:1::0;3531:2;3511:18;;;3504:30;3570:34;3550:18;;;3543:62;-1:-1:-1;;;3621:18:1;;;3614:36;3667:19;;17621:73:0::1;3464:228:1::0;17621:73:0::1;17731:6;::::0;17710:38:::1;::::0;-1:-1:-1;;;;;17710:38:0;;::::1;::::0;17731:6:::1;::::0;17710:38:::1;::::0;17731:6:::1;::::0;17710:38:::1;17759:6;:17:::0;;-1:-1:-1;;;;;;17759:17:0::1;-1:-1:-1::0;;;;;17759:17:0;;;::::1;::::0;;;::::1;::::0;;17540:244::o;14501:346::-;-1:-1:-1;;;;;14603:19:0;;14595:68;;;;-1:-1:-1;;;14595:68:0;;6287:2:1;14595:68:0;;;6269:21:1;6326:2;6306:18;;;6299:30;6365:34;6345:18;;;6338:62;-1:-1:-1;;;6416:18:1;;;6409:34;6460:19;;14595:68:0;6259:226:1;14595:68:0;-1:-1:-1;;;;;14682:21:0;;14674:68;;;;-1:-1:-1;;;14674:68:0;;3899:2:1;14674:68:0;;;3881:21:1;3938:2;3918:18;;;3911:30;3977:34;3957:18;;;3950:62;-1:-1:-1;;;4028:18:1;;;4021:32;4070:19;;14674:68:0;3871:224:1;14674:68:0;-1:-1:-1;;;;;14755:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14807:32;;7042:25:1;;;14807:32:0;;7015:18:1;14807:32:0;;;;;;;;14501:346;;;:::o;11809:604::-;-1:-1:-1;;;;;11915:20:0;;11907:70;;;;-1:-1:-1;;;11907:70:0;;5881:2:1;11907:70:0;;;5863:21:1;5920:2;5900:18;;;5893:30;5959:34;5939:18;;;5932:62;-1:-1:-1;;;6010:18:1;;;6003:35;6055:19;;11907:70:0;5853:227:1;11907:70:0;-1:-1:-1;;;;;11996:23:0;;11988:71;;;;-1:-1:-1;;;11988:71:0;;2685:2:1;11988:71:0;;;2667:21:1;2724:2;2704:18;;;2697:30;2763:34;2743:18;;;2736:62;-1:-1:-1;;;2814:18:1;;;2807:33;2857:19;;11988:71:0;2657:225:1;11988:71:0;-1:-1:-1;;;;;12156:17:0;;12132:21;12156:17;;;;;;;;;;;12192:23;;;;12184:74;;;;-1:-1:-1;;;12184:74:0;;4302:2:1;12184:74:0;;;4284:21:1;4341:2;4321:18;;;4314:30;4380:34;4360:18;;;4353:62;-1:-1:-1;;;4431:18:1;;;4424:36;4477:19;;12184:74:0;4274:228:1;12184:74:0;12289:22;12305:6;12289:13;:22;:::i;:::-;-1:-1:-1;;;;;12269:17:0;;;:9;:17;;;;;;;;;;;:42;;;;12322:20;;;;;;;;:30;;12346:6;;12269:9;12322:30;;12346:6;;12322:30;:::i;:::-;;;;;;;;12387:9;-1:-1:-1;;;;;12370:35:0;12379:6;-1:-1:-1;;;;;12370:35:0;;12398:6;12370:35;;;;7042:25:1;;7030:2;7015:18;;6997:76;12370:35:0;;;;;;;;11809:604;;;;:::o;13366:494::-;-1:-1:-1;;;;;13450:21:0;;13442:67;;;;-1:-1:-1;;;13442:67:0;;5479:2:1;13442:67:0;;;5461:21:1;5518:2;5498:18;;;5491:30;5557:34;5537:18;;;5530:62;-1:-1:-1;;;5608:18:1;;;5601:31;5649:19;;13442:67:0;5451:223:1;13442:67:0;-1:-1:-1;;;;;13609:18:0;;13584:22;13609:18;;;;;;;;;;;13646:24;;;;13638:71;;;;-1:-1:-1;;;13638:71:0;;3089:2:1;13638:71:0;;;3071:21:1;3128:2;3108:18;;;3101:30;3167:34;3147:18;;;3140:62;-1:-1:-1;;;3218:18:1;;;3211:32;3260:19;;13638:71:0;3061:224:1;13638:71:0;13741:23;13758:6;13741:14;:23;:::i;:::-;-1:-1:-1;;;;;13720:18:0;;:9;:18;;;;;;;;;;:44;;;;13775:12;:22;;13791:6;;13720:9;13775:22;;13791:6;;13775:22;:::i;:::-;;;;-1:-1:-1;;13815:37:0;;7042:25:1;;;13841:1:0;;-1:-1:-1;;;;;13815:37:0;;;;;7030:2:1;7015:18;13815:37:0;6997:76:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:190::-;1339:6;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:1;;1350:120;-1:-1:-1;1350:120:1:o;1875:603::-;1987:4;2016:2;2045;2034:9;2027:21;2077:6;2071:13;2120:6;2115:2;2104:9;2100:18;2093:34;2145:4;2158:140;2172:6;2169:1;2166:13;2158:140;;;2267:14;;;2263:23;;2257:30;2233:17;;;2252:2;2229:26;2222:66;2187:10;;2158:140;;;2316:6;2313:1;2310:13;2307:2;;;2386:4;2381:2;2372:6;2361:9;2357:22;2353:31;2346:45;2307:2;-1:-1:-1;2462:2:1;2441:15;-1:-1:-1;;2437:29:1;2422:45;;;;2469:2;2418:54;;1996:482;-1:-1:-1;;;1996:482:1:o;7267:128::-;7307:3;7338:1;7334:6;7331:1;7328:13;7325:2;;;7344:18;;:::i;:::-;-1:-1:-1;7380:9:1;;7315:80::o;7400:125::-;7440:4;7468:1;7465;7462:8;7459:2;;;7473:18;;:::i;:::-;-1:-1:-1;7510:9:1;;7449:76::o;7530:380::-;7609:1;7605:12;;;;7652;;;7673:2;;7727:4;7719:6;7715:17;7705:27;;7673:2;7780;7772:6;7769:14;7749:18;7746:38;7743:2;;;7826:10;7821:3;7817:20;7814:1;7807:31;7861:4;7858:1;7851:15;7889:4;7886:1;7879:15;7743:2;;7585:325;;;:::o;7915:127::-;7976:10;7971:3;7967:20;7964:1;7957:31;8007:4;8004:1;7997:15;8031:4;8028:1;8021:15

Swarm Source

ipfs://55017f37c3971344e55d256291f197b20f5caa8b8d96c2f411bfdcede6a92b3d

Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Retreeb is a distributed payment solution that shares one third of its network fees to funding social and solidarity projects.

Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.