Token Trilife Token

 

Overview ERC-20

Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
100,000,000 TRI

Holders:
539 addresses

Transfers:
-

Contract:
0x9505cE093a27fB5FB2363dEf96e9Fbc609c648c00x9505cE093a27fB5FB2363dEf96e9Fbc609c648c0

Decimals:
18

Social Profiles:
Not Available, Update ?

 
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TRI

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 Etherscan.io on 2021-12-28
*/

// Sources flattened with hardhat v2.8.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @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) {
        return msg.data;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @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 Contracts guidelines: functions revert
 * instead 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 default 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");
        unchecked {
            _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");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` 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);

        _afterTokenTransfer(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");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(account, address(0), 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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}


// File @openzeppelin/contracts/security/[email protected]

// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}


// File contracts/token/TRI.sol

pragma solidity 0.8.4;

contract TRI is Ownable, ERC20Burnable, ERC20Pausable {
    constructor(
        string memory name, 
        string memory symbol, 
        address[] memory fundKeepers,
        uint256[] memory amounts
    ) 
        ERC20(name, symbol) 
    {
        require(fundKeepers.length == amounts.length, "TRI: contructor input is invalid");
        
        for (uint256 i = 0; i < fundKeepers.length; i++) {
            _mint(fundKeepers[i], amounts[i]);
        }
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the owner.
     */
    function pause() onlyOwner public {
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the owner.
     */
    function unpause() onlyOwner public {
        _unpause();
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override(ERC20, ERC20Pausable) {
        super._beforeTokenTransfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address[]","name":"fundKeepers","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001632380380620016328339810160408190526200003491620004ed565b838362000041336200015f565b8151620000569060049060208501906200033f565b5080516200006c9060059060208401906200033f565b50506006805460ff19169055508051825114620000d05760405162461bcd60e51b815260206004820181905260248201527f5452493a20636f6e74727563746f7220696e70757420697320696e76616c696460448201526064015b60405180910390fd5b60005b825181101562000154576200013f8382815181106200010257634e487b7160e01b600052603260045260246000fd5b60200260200101518383815181106200012b57634e487b7160e01b600052603260045260246000fd5b6020026020010151620001af60201b60201c565b806200014b81620006c4565b915050620000d3565b50505050506200070e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002075760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000c7565b6200021560008383620002a2565b80600360008282546200022991906200066c565b90915550506001600160a01b03821660009081526001602052604081208054839290620002589084906200066c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b620002ba838383620002bf60201b620006c41760201c565b505050565b620002d7838383620002ba60201b620005401760201c565b60065460ff1615620002ba5760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b6064820152608401620000c7565b8280546200034d9062000687565b90600052602060002090601f016020900481019282620003715760008555620003bc565b82601f106200038c57805160ff1916838001178555620003bc565b82800160010185558215620003bc579182015b82811115620003bc5782518255916020019190600101906200039f565b50620003ca929150620003ce565b5090565b5b80821115620003ca5760008155600101620003cf565b600082601f830112620003f6578081fd5b815160206200040f620004098362000646565b62000613565b80838252828201915082860187848660051b89010111156200042f578586fd5b855b858110156200044f5781518452928401929084019060010162000431565b5090979650505050505050565b600082601f8301126200046d578081fd5b81516001600160401b03811115620004895762000489620006f8565b60206200049f601f8301601f1916820162000613565b8281528582848701011115620004b3578384fd5b835b83811015620004d2578581018301518282018401528201620004b5565b83811115620004e357848385840101525b5095945050505050565b6000806000806080858703121562000503578384fd5b84516001600160401b03808211156200051a578586fd5b62000528888389016200045c565b95506020915081870151818111156200053f578586fd5b6200054d89828a016200045c565b95505060408701518181111562000562578485fd5b8701601f8101891362000573578485fd5b805162000584620004098262000646565b8082825285820191508584018c878560051b8701011115620005a4578889fd5b8894505b83851015620005dd5780516001600160a01b0381168114620005c857898afd5b835260019490940193918601918601620005a8565b5060608b0151909750945050505080821115620005f8578283fd5b506200060787828801620003e5565b91505092959194509250565b604051601f8201601f191681016001600160401b03811182821017156200063e576200063e620006f8565b604052919050565b60006001600160401b03821115620006625762000662620006f8565b5060051b60200190565b60008219821115620006825762000682620006e2565b500190565b600181811c908216806200069c57607f821691505b60208210811415620006be57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620006db57620006db620006e2565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b610f14806200071e6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b411461023d578063a457c2d714610245578063a9059cbb14610258578063dd62ed3e1461026b578063f2fde38b146102a457600080fd5b806370a08231146101d6578063715018a6146101ff57806379cc6790146102075780638456cb591461021a5780638da5cb5b1461022257600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b5780633f4ba83a146101ae57806342966c68146101b85780635c975abb146101cb57600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102b7565b60405161013b9190610dd6565b60405180910390f35b610157610152366004610d95565b610349565b604051901515815260200161013b565b6003545b60405190815260200161013b565b610157610187366004610d5a565b61035f565b6040516012815260200161013b565b6101576101a9366004610d95565b61040e565b6101b661044a565b005b6101b66101c6366004610dbe565b61047e565b60065460ff16610157565b61016b6101e4366004610d07565b6001600160a01b031660009081526001602052604090205490565b6101b661048b565b6101b6610215366004610d95565b6104bf565b6101b6610545565b6000546040516001600160a01b03909116815260200161013b565b61012e610577565b610157610253366004610d95565b610586565b610157610266366004610d95565b61061f565b61016b610279366004610d28565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b66102b2366004610d07565b61062c565b6060600480546102c690610e8d565b80601f01602080910402602001604051908101604052809291908181526020018280546102f290610e8d565b801561033f5780601f106103145761010080835404028352916020019161033f565b820191906000526020600020905b81548152906001019060200180831161032257829003601f168201915b5050505050905090565b600061035633848461072a565b50600192915050565b600061036c84848461084e565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103f65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610403853385840361072a565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610356918590610445908690610e5e565b61072a565b6000546001600160a01b031633146104745760405162461bcd60e51b81526004016103ed90610e29565b61047c610a28565b565b6104883382610abb565b50565b6000546001600160a01b031633146104b55760405162461bcd60e51b81526004016103ed90610e29565b61047c6000610c15565b60006104cb8333610279565b9050818110156105295760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016103ed565b610536833384840361072a565b6105408383610abb565b505050565b6000546001600160a01b0316331461056f5760405162461bcd60e51b81526004016103ed90610e29565b61047c610c65565b6060600580546102c690610e8d565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156106085760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103ed565b610615338585840361072a565b5060019392505050565b600061035633848461084e565b6000546001600160a01b031633146106565760405162461bcd60e51b81526004016103ed90610e29565b6001600160a01b0381166106bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ed565b61048881610c15565b60065460ff16156105405760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b60648201526084016103ed565b6001600160a01b03831661078c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ed565b6001600160a01b0382166107ed5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ed565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108b25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ed565b6001600160a01b0382166109145760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ed565b61091f838383610ce0565b6001600160a01b038316600090815260016020526040902054818110156109975760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ed565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906109ce908490610e5e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a1a91815260200190565b60405180910390a350505050565b60065460ff16610a715760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016103ed565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610b1b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103ed565b610b2782600083610ce0565b6001600160a01b03821660009081526001602052604090205481811015610b9b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103ed565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610bca908490610e76565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60065460ff1615610cab5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103ed565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610a9e3390565b6105408383836106c4565b80356001600160a01b0381168114610d0257600080fd5b919050565b600060208284031215610d18578081fd5b610d2182610ceb565b9392505050565b60008060408385031215610d3a578081fd5b610d4383610ceb565b9150610d5160208401610ceb565b90509250929050565b600080600060608486031215610d6e578081fd5b610d7784610ceb565b9250610d8560208501610ceb565b9150604084013590509250925092565b60008060408385031215610da7578182fd5b610db083610ceb565b946020939093013593505050565b600060208284031215610dcf578081fd5b5035919050565b6000602080835283518082850152825b81811015610e0257858101830151858201604001528201610de6565b81811115610e135783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610e7157610e71610ec8565b500190565b600082821015610e8857610e88610ec8565b500390565b600181811c90821680610ea157607f821691505b60208210811415610ec257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220b22ad8bbd01e980de09d80db741fc23dddb26ac75612183bf688f6f8e475c31964736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000d5472696c69666520546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354524900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000b45c6d92113fada04fbe04633383cfca5399dc0a000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000052b7d2dcc80cd2e4000000

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000d5472696c69666520546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354524900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000b45c6d92113fada04fbe04633383cfca5399dc0a000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000052b7d2dcc80cd2e4000000

-----Decoded View---------------
Arg [0] : name (string): Trilife Token
Arg [1] : symbol (string): TRI
Arg [2] : fundKeepers (address[]): 0xb45c6d92113fada04fbe04633383cfca5399dc0a
Arg [3] : amounts (uint256[]): 100000000000000000000000000

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 5472696c69666520546f6b656e00000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5452490000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [9] : 000000000000000000000000b45c6d92113fada04fbe04633383cfca5399dc0a
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [11] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000


Deployed ByteCode Sourcemap

23960:1251:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9304:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11471:169;;;;;;:::i;:::-;;:::i;:::-;;;1848:14:1;;1841:22;1823:41;;1811:2;1796:18;11471:169:0;1778:92:1;10424:108:0;10512:12;;10424:108;;;8552:25:1;;;8540:2;8525:18;10424:108:0;8507:76:1;12122:492:0;;;;;;:::i;:::-;;:::i;10266:93::-;;;10349:2;8730:36:1;;8718:2;8703:18;10266:93:0;8685:87:1;13023:215:0;;;;;;:::i;:::-;;:::i;24918:65::-;;;:::i;:::-;;19837:91;;;;;;:::i;:::-;;:::i;21758:86::-;21829:7;;;;21758:86;;10595:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10696:18:0;10669:7;10696:18;;;:9;:18;;;;;;;10595:127;2711:103;;;:::i;20247:368::-;;;;;;:::i;:::-;;:::i;24647:61::-;;;:::i;2060:87::-;2106:7;2133:6;2060:87;;-1:-1:-1;;;;;2133:6:0;;;1621:51:1;;1609:2;1594:18;2060:87:0;1576:102:1;9523:104:0;;;:::i;13741:413::-;;;;;;:::i;:::-;;:::i;10935:175::-;;;;;;:::i;:::-;;:::i;11173:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11289:18:0;;;11262:7;11289:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11173:151;2969:201;;;;;;:::i;:::-;;:::i;9304:100::-;9358:13;9391:5;9384:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9304:100;:::o;11471:169::-;11554:4;11571:39;860:10;11594:7;11603:6;11571:8;:39::i;:::-;-1:-1:-1;11628:4:0;11471:169;;;;:::o;12122:492::-;12262:4;12279:36;12289:6;12297:9;12308:6;12279:9;:36::i;:::-;-1:-1:-1;;;;;12355:19:0;;12328:24;12355:19;;;:11;:19;;;;;;;;860:10;12355:33;;;;;;;;12407:26;;;;12399:79;;;;-1:-1:-1;;;12399:79:0;;5403:2:1;12399:79:0;;;5385:21:1;5442:2;5422:18;;;5415:30;5481:34;5461:18;;;5454:62;-1:-1:-1;;;5532:18:1;;;5525:38;5580:19;;12399:79:0;;;;;;;;;12514:57;12523:6;860:10;12564:6;12545:16;:25;12514:8;:57::i;:::-;-1:-1:-1;12602:4:0;;12122:492;-1:-1:-1;;;;12122:492:0:o;13023:215::-;860:10;13111:4;13160:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13160:34:0;;;;;;;;;;13111:4;;13128:80;;13151:7;;13160:47;;13197:10;;13160:47;:::i;:::-;13128:8;:80::i;24918:65::-;2106:7;2133:6;-1:-1:-1;;;;;2133:6:0;860:10;2280:23;2272:68;;;;-1:-1:-1;;;2272:68:0;;;;;;;:::i;:::-;24965:10:::1;:8;:10::i;:::-;24918:65::o:0;19837:91::-;19893:27;860:10;19913:6;19893:5;:27::i;:::-;19837:91;:::o;2711:103::-;2106:7;2133:6;-1:-1:-1;;;;;2133:6:0;860:10;2280:23;2272:68;;;;-1:-1:-1;;;2272:68:0;;;;;;;:::i;:::-;2776:30:::1;2803:1;2776:18;:30::i;20247:368::-:0;20324:24;20351:32;20361:7;860:10;11173:151;:::i;20351:32::-;20324:59;;20422:6;20402:16;:26;;20394:75;;;;-1:-1:-1;;;20394:75:0;;6173:2:1;20394:75:0;;;6155:21:1;6212:2;6192:18;;;6185:30;6251:34;6231:18;;;6224:62;-1:-1:-1;;;6302:18:1;;;6295:34;6346:19;;20394:75:0;6145:226:1;20394:75:0;20505:58;20514:7;860:10;20556:6;20537:16;:25;20505:8;:58::i;:::-;20585:22;20591:7;20600:6;20585:5;:22::i;:::-;20247:368;;;:::o;24647:61::-;2106:7;2133:6;-1:-1:-1;;;;;2133:6:0;860:10;2280:23;2272:68;;;;-1:-1:-1;;;2272:68:0;;;;;;;:::i;:::-;24692:8:::1;:6;:8::i;9523:104::-:0;9579:13;9612:7;9605:14;;;;;:::i;13741:413::-;860:10;13834:4;13878:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13878:34:0;;;;;;;;;;13931:35;;;;13923:85;;;;-1:-1:-1;;;13923:85:0;;7791:2:1;13923:85:0;;;7773:21:1;7830:2;7810:18;;;7803:30;7869:34;7849:18;;;7842:62;-1:-1:-1;;;7920:18:1;;;7913:35;7965:19;;13923:85:0;7763:227:1;13923:85:0;14044:67;860:10;14067:7;14095:15;14076:16;:34;14044:8;:67::i;:::-;-1:-1:-1;14142:4:0;;13741:413;-1:-1:-1;;;13741:413:0:o;10935:175::-;11021:4;11038:42;860:10;11062:9;11073:6;11038:9;:42::i;2969:201::-;2106:7;2133:6;-1:-1:-1;;;;;2133:6:0;860:10;2280:23;2272:68;;;;-1:-1:-1;;;2272:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3058:22:0;::::1;3050:73;;;::::0;-1:-1:-1;;;3050:73:0;;3841:2:1;3050:73:0::1;::::0;::::1;3823:21:1::0;3880:2;3860:18;;;3853:30;3919:34;3899:18;;;3892:62;-1:-1:-1;;;3970:18:1;;;3963:36;4016:19;;3050:73:0::1;3813:228:1::0;3050:73:0::1;3134:28;3153:8;3134:18;:28::i;23618:272::-:0;21829:7;;;;23826:9;23818:64;;;;-1:-1:-1;;;23818:64:0;;8197:2:1;23818:64:0;;;8179:21:1;8236:2;8216:18;;;8209:30;8275:34;8255:18;;;8248:62;-1:-1:-1;;;8326:18:1;;;8319:40;8376:19;;23818:64:0;8169:232:1;17425:380:0;-1:-1:-1;;;;;17561:19:0;;17553:68;;;;-1:-1:-1;;;17553:68:0;;7386:2:1;17553:68:0;;;7368:21:1;7425:2;7405:18;;;7398:30;7464:34;7444:18;;;7437:62;-1:-1:-1;;;7515:18:1;;;7508:34;7559:19;;17553:68:0;7358:226:1;17553:68:0;-1:-1:-1;;;;;17640:21:0;;17632:68;;;;-1:-1:-1;;;17632:68:0;;4248:2:1;17632:68:0;;;4230:21:1;4287:2;4267:18;;;4260:30;4326:34;4306:18;;;4299:62;-1:-1:-1;;;4377:18:1;;;4370:32;4419:19;;17632:68:0;4220:224:1;17632:68:0;-1:-1:-1;;;;;17713:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17765:32;;8552:25:1;;;17765:32:0;;8525:18:1;17765:32:0;;;;;;;17425:380;;;:::o;14644:733::-;-1:-1:-1;;;;;14784:20:0;;14776:70;;;;-1:-1:-1;;;14776:70:0;;6980:2:1;14776:70:0;;;6962:21:1;7019:2;6999:18;;;6992:30;7058:34;7038:18;;;7031:62;-1:-1:-1;;;7109:18:1;;;7102:35;7154:19;;14776:70:0;6952:227:1;14776:70:0;-1:-1:-1;;;;;14865:23:0;;14857:71;;;;-1:-1:-1;;;14857:71:0;;2685:2:1;14857: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;;14857:71:0;2657:225:1;14857:71:0;14941:47;14962:6;14970:9;14981:6;14941:20;:47::i;:::-;-1:-1:-1;;;;;15025:17:0;;15001:21;15025:17;;;:9;:17;;;;;;15061:23;;;;15053:74;;;;-1:-1:-1;;;15053:74:0;;4651:2:1;15053:74:0;;;4633:21:1;4690:2;4670:18;;;4663:30;4729:34;4709:18;;;4702:62;-1:-1:-1;;;4780:18:1;;;4773:36;4826:19;;15053:74:0;4623:228:1;15053:74:0;-1:-1:-1;;;;;15163:17:0;;;;;;;:9;:17;;;;;;15183:22;;;15163:42;;15227:20;;;;;;;;:30;;15199:6;;15163:17;15227:30;;15199:6;;15227:30;:::i;:::-;;;;;;;;15292:9;-1:-1:-1;;;;;15275:35:0;15284:6;-1:-1:-1;;;;;15275:35:0;;15303:6;15275:35;;;;8552:25:1;;8540:2;8525:18;;8507:76;15275:35:0;;;;;;;;14644:733;;;;:::o;22817:120::-;21829:7;;;;22353:41;;;;-1:-1:-1;;;22353:41:0;;3089:2:1;22353:41:0;;;3071:21:1;3128:2;3108:18;;;3101:30;-1:-1:-1;;;3147:18:1;;;3140:50;3207:18;;22353:41:0;3061:170:1;22353:41:0;22876:7:::1;:15:::0;;-1:-1:-1;;22876:15:0::1;::::0;;22907:22:::1;860:10:::0;22916:12:::1;22907:22;::::0;-1:-1:-1;;;;;1639:32:1;;;1621:51;;1609:2;1594:18;22907:22:0::1;;;;;;;22817:120::o:0;16396:591::-;-1:-1:-1;;;;;16480:21:0;;16472:67;;;;-1:-1:-1;;;16472:67:0;;6578:2:1;16472:67:0;;;6560:21:1;6617:2;6597:18;;;6590:30;6656:34;6636:18;;;6629:62;-1:-1:-1;;;6707:18:1;;;6700:31;6748:19;;16472:67:0;6550:223:1;16472:67:0;16552:49;16573:7;16590:1;16594:6;16552:20;:49::i;:::-;-1:-1:-1;;;;;16639:18:0;;16614:22;16639:18;;;:9;:18;;;;;;16676:24;;;;16668:71;;;;-1:-1:-1;;;16668:71:0;;3438:2:1;16668:71:0;;;3420:21:1;3477:2;3457:18;;;3450:30;3516:34;3496:18;;;3489:62;-1:-1:-1;;;3567:18:1;;;3560:32;3609:19;;16668:71:0;3410:224:1;16668:71:0;-1:-1:-1;;;;;16775:18:0;;;;;;:9;:18;;;;;16796:23;;;16775:44;;16841:12;:22;;16813:6;;16775:18;16841:22;;16813:6;;16841:22;:::i;:::-;;;;-1:-1:-1;;16881:37:0;;8552:25:1;;;16907:1:0;;-1:-1:-1;;;;;16881:37:0;;;;;8540:2:1;8525:18;16881:37:0;;;;;;;20247:368;;;:::o;3330:191::-;3404:16;3423:6;;-1:-1:-1;;;;;3440:17:0;;;-1:-1:-1;;;;;;3440:17:0;;;;;;3473:40;;3423:6;;;;;;;3473:40;;3404:16;3473:40;3330:191;;:::o;22558:118::-;21829:7;;;;22083:9;22075:38;;;;-1:-1:-1;;;22075:38:0;;5058:2:1;22075:38:0;;;5040:21:1;5097:2;5077:18;;;5070:30;-1:-1:-1;;;5116:18:1;;;5109:46;5172:18;;22075:38:0;5030:166:1;22075:38:0;22618:7:::1;:14:::0;;-1:-1:-1;;22618:14:0::1;22628:4;22618:14;::::0;;22648:20:::1;22655:12;860:10:::0;;780:98;24991:217;25156:44;25183:4;25189:2;25193:6;25156:26;:44::i;14:173:1:-;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;5610:356::-;5812:2;5794:21;;;5831:18;;;5824:30;5890:34;5885:2;5870:18;;5863:62;5957:2;5942:18;;5784:182::o;8777:128::-;8817:3;8848:1;8844:6;8841:1;8838:13;8835:2;;;8854:18;;:::i;:::-;-1:-1:-1;8890:9:1;;8825:80::o;8910:125::-;8950:4;8978:1;8975;8972:8;8969:2;;;8983:18;;:::i;:::-;-1:-1:-1;9020:9:1;;8959:76::o;9040:380::-;9119:1;9115:12;;;;9162;;;9183:2;;9237:4;9229:6;9225:17;9215:27;;9183:2;9290;9282:6;9279:14;9259:18;9256:38;9253:2;;;9336:10;9331:3;9327:20;9324:1;9317:31;9371:4;9368:1;9361:15;9399:4;9396:1;9389:15;9253:2;;9095:325;;;:::o;9425:127::-;9486:10;9481:3;9477:20;9474:1;9467:31;9517:4;9514:1;9507:15;9541:4;9538:1;9531:15

Swarm Source

ipfs://b22ad8bbd01e980de09d80db741fc23dddb26ac75612183bf688f6f8e475c319
Loading