FTM Price: $1.00 (-1.15%)
Gas: 92 GWei

Contract

0xc9e8c581d67Fe5cc6217B2Fa1B2d4D9Cecb60fB2
 

Overview

FTM Balance

Fantom LogoFantom LogoFantom Logo0 FTM

FTM Value

$0.00

Sponsored

Transaction Hash
Method
Block
From
To
Value
Approve689393362023-10-03 15:31:20177 days ago1696347080IN
0xc9e8c581...Cecb60fB2
0 FTM0.0022580640.30098167
Transfer689392162023-10-03 15:24:40177 days ago1696346680IN
0xc9e8c581...Cecb60fB2
0 FTM0.0026013341.8361996
Approve653708282023-07-08 14:52:46264 days ago1688827966IN
0xc9e8c581...Cecb60fB2
0 FTM0.025645621,050.7056083
Approve595818232023-04-10 20:09:18353 days ago1681157358IN
0xc9e8c581...Cecb60fB2
0 FTM0.0015196762.26151692
Approve581713152023-03-23 2:25:05372 days ago1679538305IN
0xc9e8c581...Cecb60fB2
0 FTM0.001780772.95575791
Approve562515512023-02-21 19:11:37401 days ago1677006697IN
0xc9e8c581...Cecb60fB2
0 FTM0.00334933129.47796687
Approve552552752023-02-07 10:55:49415 days ago1675767349IN
0xc9e8c581...Cecb60fB2
0 FTM0.002130645.45959326
Approve534913482023-01-09 15:34:45444 days ago1673278485IN
0xc9e8c581...Cecb60fB2
0 FTM0.0008335934.15271202
Approve502575662022-10-30 8:22:04515 days ago1667118124IN
0xc9e8c581...Cecb60fB2
0 FTM0.001412757.8788123
Approve491498712022-10-14 11:27:58531 days ago1665746878IN
0xc9e8c581...Cecb60fB2
0 FTM0.000093732
Approve484402542022-10-05 2:15:39541 days ago1664936139IN
0xc9e8c581...Cecb60fB2
0 FTM0.000062092.54405095
Approve484402472022-10-05 2:15:28541 days ago1664936128IN
0xc9e8c581...Cecb60fB2
0 FTM0.000062092.54405095
Approve410800772022-06-22 12:40:26645 days ago1655901626IN
0xc9e8c581...Cecb60fB2
0 FTM0.000230934.8971531
Approve399463252022-06-06 22:38:50661 days ago1654555130IN
0xc9e8c581...Cecb60fB2
0 FTM0.02608411,008.35410897
Approve376682752022-05-06 6:56:41692 days ago1651820201IN
0xc9e8c581...Cecb60fB2
0 FTM0.00529306112.2411
Approve376628522022-05-06 5:22:43693 days ago1651814563IN
0xc9e8c581...Cecb60fB2
0 FTM0.00325358125.7763
Approve376626202022-05-06 5:18:47693 days ago1651814327IN
0xc9e8c581...Cecb60fB2
0 FTM0.00338644130.9127
Approve376575242022-05-06 3:52:25693 days ago1651809145IN
0xc9e8c581...Cecb60fB2
0 FTM0.00713139151.2235
Approve376156642022-05-05 14:10:27693 days ago1651759827IN
0xc9e8c581...Cecb60fB2
0 FTM0.01214411257.5198
Approve375794872022-05-05 3:21:12694 days ago1651720872IN
0xc9e8c581...Cecb60fB2
0 FTM0.00724086153.5447
Approve375770652022-05-05 2:35:59694 days ago1651718159IN
0xc9e8c581...Cecb60fB2
0 FTM0.00802837170.2442
Approve370714432022-04-27 12:48:33701 days ago1651063713IN
0xc9e8c581...Cecb60fB2
0 FTM0.00326668208.49378
Approve368536872022-04-24 11:36:25704 days ago1650800185IN
0xc9e8c581...Cecb60fB2
0 FTM0.00317224202.4668
Approve366362202022-04-21 17:30:26707 days ago1650562226IN
0xc9e8c581...Cecb60fB2
0 FTM0.0069344442.5842
Approve358783002022-04-12 12:58:47716 days ago1649768327IN
0xc9e8c581...Cecb60fB2
0 FTM0.01084567240.817
View all transactions

Latest 1 internal transaction

Parent Txn Hash Block From To Value
320480622022-02-26 22:01:46761 days ago1645912906  Contract Creation0 FTM
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Sgem

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at ftmscan.com on 2022-02-26
*/

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}


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



pragma solidity >=0.6.0 <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 GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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


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



pragma solidity >=0.6.0 <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/[email protected]



pragma solidity >=0.6.0 <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 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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

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

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

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

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

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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


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



pragma solidity >=0.6.0 <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 {
    using SafeMath for uint256;

    /**
     * @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 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}


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



pragma solidity >=0.6.0 <0.8.0;


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



pragma solidity >=0.6.0 <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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


// File contracts/owner/Operator.sol



pragma solidity 0.6.12;


contract Operator is Context, Ownable {
    address private _operator;

    event OperatorTransferred(address indexed previousOperator, address indexed newOperator);

    constructor() internal {
        _operator = _msgSender();
        emit OperatorTransferred(address(0), _operator);
    }

    function operator() public view returns (address) {
        return _operator;
    }

    modifier onlyOperator() {
        require(_operator == msg.sender, "operator: caller is not the operator");
        _;
    }

    function isOperator() public view returns (bool) {
        return _msgSender() == _operator;
    }

    function transferOperator(address newOperator_) public onlyOwner {
        _transferOperator(newOperator_);
    }

    function _transferOperator(address newOperator_) internal {
        require(newOperator_ != address(0), "operator: zero address given for new operator");
        emit OperatorTransferred(address(0), newOperator_);
        _operator = newOperator_;
    }
}
contract Sgem is ERC20Burnable, Operator {
    using SafeMath for uint256;

    // TOTAL MAX SUPPLY = 100,000 sGEM
    uint256 public constant FARMING_POOL_REWARD_ALLOCATION = 70000 ether;
    uint256 public constant COMMUNITY_FUND_POOL_ALLOCATION = 7000 ether;
    uint256 public constant DEV_FUND_POOL_ALLOCATION = 3500 ether;

    uint256 public constant VESTING_DURATION = 150 days;
    uint256 public startTime;
    uint256 public endTime;

    uint256 public communityFundRewardRate;
    uint256 public devFundRewardRate;

    address public communityFund;
    address public devFund1;
    address public devFund2;
    address public devFund3;
    address public devFund4;
    address public devFund5;


    uint256 public communityFundLastClaimed;
    uint256 public devFundLastClaimed;

    bool public rewardPoolDistributed = false;

    constructor(uint256 _startTime, address _communityFund, address _devFund1, address _devFund2, address _devFund3, address _devFund4, address _devFund5) public ERC20("SGEM", "SGEM") {
        _mint(msg.sender, 1 ether); // mint 1 GEM Share for initial pools deployment

        startTime = _startTime;
        endTime = startTime + VESTING_DURATION;

        communityFundLastClaimed = startTime;
        devFundLastClaimed = startTime;

        communityFundRewardRate = COMMUNITY_FUND_POOL_ALLOCATION.div(VESTING_DURATION);
        devFundRewardRate = DEV_FUND_POOL_ALLOCATION.div(VESTING_DURATION);

        require(_devFund1 != address(0), "Address cannot be 0");
        require(_devFund2 != address(0), "Address cannot be 0");
        require(_devFund3 != address(0), "Address cannot be 0");
        require(_devFund4 != address(0), "Address cannot be 0");
        require(_devFund5 != address(0), "Address cannot be 0");
        devFund1 = _devFund1;
        devFund2 = _devFund2;
        devFund3 = _devFund3;
        devFund4 = _devFund4;
        devFund5 = _devFund5;


        require(_communityFund != address(0), "Address cannot be 0");
        communityFund = _communityFund;
    }

    function setTreasuryFund(address _communityFund) external onlyOwner {
        communityFund = _communityFund;
    }

    function setDevFund(uint parameter, address _devFund) external onlyOwner {
        require(_devFund != address(0), "zero");

        if (parameter == 1) {
            devFund1 = _devFund;
        } else if (parameter == 2) {
            devFund2 = _devFund;
        } else if (parameter == 3) {
            devFund3 = _devFund;
        } else if (parameter == 4) {
            devFund4 = _devFund;
        } else if (parameter == 5) {
            devFund5 = _devFund;
        }
    }

    function unclaimedTreasuryFund() public view returns (uint256 _pending) {
        uint256 _now = block.timestamp;
        if (_now > endTime) _now = endTime;
        if (communityFundLastClaimed >= _now) return 0;
        _pending = _now.sub(communityFundLastClaimed).mul(communityFundRewardRate);
    }

    function unclaimedDevFund() public view returns (uint256 _pending) {
        uint256 _now = block.timestamp;
        if (_now > endTime) _now = endTime;
        if (devFundLastClaimed >= _now) return 0;
        _pending = _now.sub(devFundLastClaimed).mul(devFundRewardRate);
    }

    /**
     * @dev Claim pending rewards to community and dev fund
     */
    function claimRewards() external {
        uint256 _pending = unclaimedTreasuryFund();
        if (_pending > 0 && communityFund != address(0)) {
            _mint(communityFund, _pending);
            communityFundLastClaimed = block.timestamp;
        }
        _pending = unclaimedDevFund();
        if (_pending > 0 && devFund1 != address(0) && devFund2 != address(0) && devFund3 != address(0) && devFund4 != address(0) && devFund5 != address(0)) {
            _mint(devFund1, _pending.div(5));
            _mint(devFund2, _pending.div(5));
            _mint(devFund3, _pending.div(5));
            _mint(devFund4, _pending.div(5));
            _mint(devFund5, _pending.div(5));

            devFundLastClaimed = block.timestamp;
        }
    }

    /**
     * @notice distribute to reward pool (only once)
     */
    function distributeReward(address _farmingIncentiveFund) external onlyOperator {
        require(!rewardPoolDistributed, "only can distribute once");
        require(_farmingIncentiveFund != address(0), "!_farmingIncentiveFund");
        rewardPoolDistributed = true;
        _mint(_farmingIncentiveFund, FARMING_POOL_REWARD_ALLOCATION);
    }

    function burn(uint256 amount) public override {
        super.burn(amount);
    }

    function governanceRecoverUnsupported(
        IERC20 _token,
        uint256 _amount,
        address _to
    ) external onlyOperator {
        _token.transfer(_to, _amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"address","name":"_communityFund","type":"address"},{"internalType":"address","name":"_devFund1","type":"address"},{"internalType":"address","name":"_devFund2","type":"address"},{"internalType":"address","name":"_devFund3","type":"address"},{"internalType":"address","name":"_devFund4","type":"address"},{"internalType":"address","name":"_devFund5","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":[],"name":"COMMUNITY_FUND_POOL_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEV_FUND_POOL_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FARMING_POOL_REWARD_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VESTING_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"communityFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityFundLastClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityFundRewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devFund1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFund2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFund3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFund4","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFund5","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFundLastClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFundRewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_farmingIncentiveFund","type":"address"}],"name":"distributeReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"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":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"rewardPoolDistributed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"parameter","type":"uint256"},{"internalType":"address","name":"_devFund","type":"address"}],"name":"setDevFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_communityFund","type":"address"}],"name":"setTreasuryFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unclaimedDevFund","outputs":[{"internalType":"uint256","name":"_pending","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unclaimedTreasuryFund","outputs":[{"internalType":"uint256","name":"_pending","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526000601360006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162003e5538038062003e55833981810160405260e08110156200005257600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291905050506040518060400160405280600481526020017f5347454d000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5347454d0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012392919062000bdd565b5080600490805190602001906200013c92919062000bdd565b506012600560006101000a81548160ff021916908360ff160217905550505060006200016d620008de60201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200021c620008de60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a3620002f333670de0b6b3a7640000620008e660201b60201c565b8660078190555062c5c100600754016008819055506007546011819055506007546012819055506200034162c5c10069017b7883c0691660000062000ac460201b6200232f1790919060201c565b6009819055506200036d62c5c10068bdbc41e0348b30000062000ac460201b6200232f1790919060201c565b600a81905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141562000417576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f416464726573732063616e6e6f7420626520300000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620004bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f416464726573732063616e6e6f7420626520300000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200055f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f416464726573732063616e6e6f7420626520300000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f416464726573732063616e6e6f7420626520300000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620006a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f416464726573732063616e6e6f7420626520300000000000000000000000000081525060200191505060405180910390fd5b84600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141562000890576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f416464726573732063616e6e6f7420626520300000000000000000000000000081525060200191505060405180910390fd5b85600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050505062000c83565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200098a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6200099e6000838362000b4f60201b60201c565b620009ba8160025462000b5460201b620023b81790919060201c565b60028190555062000a18816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b5460201b620023b81790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080821162000b3c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b81838162000b4657fe5b04905092915050565b505050565b60008082840190508381101562000bd3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000c2057805160ff191683800117855562000c51565b8280016001018555821562000c51579182015b8281111562000c5057825182559160200191906001019062000c33565b5b50905062000c60919062000c64565b5090565b5b8082111562000c7f57600081600090555060010162000c65565b5090565b6131c28062000c936000396000f3fe608060405234801561001057600080fd5b50600436106102685760003560e01c80634cfc4d30116101515780638da5cb5b116100c3578063a9059cbb11610087578063a9059cbb14610a84578063abb4b1be14610ae8578063ca9ab2ee14610b06578063dd62ed3e14610b3a578063f2fde38b14610bb2578063f746b71814610bf657610268565b80638da5cb5b1461092b57806395d89b411461095f5780639662676c146109e2578063a06160fd14610a02578063a457c2d714610a2057610268565b80636beec71a116101155780636beec71a146107f55780636dc651d91461082957806370a082311461085d578063715018a6146108b557806378e97925146108bf57806379cc6790146108dd57610268565b80634cfc4d30146106e35780634f337dd51461070157806354575af41461071f57806355a715441461078d578063570ca735146107c157610268565b80632c07a624116101ea578063387e1faf116101ae578063387e1faf146105a757806339509351146105f55780633bba8eed1461065957806342966c68146106775780634456eda2146106a557806344cdc454146106c557610268565b80632c07a624146105225780632e3367ce14610540578063313ce5671461055e5780633197cbb61461057f578063372500ab1461059d57610268565b8063117effeb11610231578063117effeb146103ea578063177647821461041e57806318160ddd1461043c57806323b872dd1461045a57806329605e77146104de57610268565b8062f380f41461026d57806304017315146102a157806306fdde03146102bf578063092193ab14610342578063095ea7b314610386575b600080fd5b610275610c3a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6102a9610c60565b6040518082815260200191505060405180910390f35b6102c7610c66565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103075780820151818401526020810190506102ec565b50505050905090810190601f1680156103345780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103846004803603602081101561035857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d08565b005b6103d26004803603604081101561039c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f06565b60405180821515815260200191505060405180910390f35b6103f2610f24565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610426610f4a565b6040518082815260200191505060405180910390f35b610444610fa3565b6040518082815260200191505060405180910390f35b6104c66004803603606081101561047057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fad565b60405180821515815260200191505060405180910390f35b610520600480360360208110156104f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611086565b005b61052a611141565b6040518082815260200191505060405180910390f35b61054861119a565b6040518082815260200191505060405180910390f35b6105666111a0565b604051808260ff16815260200191505060405180910390f35b6105876111b7565b6040518082815260200191505060405180910390f35b6105a56111bd565b005b6105f3600480360360408110156105bd57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611581565b005b6106416004803603604081101561060b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611862565b60405180821515815260200191505060405180910390f35b610661611915565b6040518082815260200191505060405180910390f35b6106a36004803603602081101561068d57600080fd5b8101908080359060200190929190505050611923565b005b6106ad61192f565b60405180821515815260200191505060405180910390f35b6106cd61198e565b6040518082815260200191505060405180910390f35b6106eb611994565b6040518082815260200191505060405180910390f35b61070961199b565b6040518082815260200191505060405180910390f35b61078b6004803603606081101561073557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119a8565b005b610795611b00565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107c9611b26565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107fd611b50565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610831611b76565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61089f6004803603602081101561087357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b9c565b6040518082815260200191505060405180910390f35b6108bd611be4565b005b6108c7611d54565b6040518082815260200191505060405180910390f35b610929600480360360408110156108f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d5a565b005b610933611dbc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610967611de6565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109a757808201518184015260208101905061098c565b50505050905090810190601f1680156109d45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109ea611e88565b60405180821515815260200191505060405180910390f35b610a0a611e9b565b6040518082815260200191505060405180910390f35b610a6c60048036036040811015610a3657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ea9565b60405180821515815260200191505060405180910390f35b610ad060048036036040811015610a9a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611f76565b60405180821515815260200191505060405180910390f35b610af0611f94565b6040518082815260200191505060405180910390f35b610b0e611f9a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b9c60048036036040811015610b5057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fc0565b6040518082815260200191505060405180910390f35b610bf460048036036020811015610bc857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612047565b005b610c3860048036036020811015610c0c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061223c565b005b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610cfe5780601f10610cd357610100808354040283529160200191610cfe565b820191906000526020600020905b815481529060010190602001808311610ce157829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806130da6024913960400191505060405180910390fd5b601360009054906101000a900460ff1615610e31576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6f6e6c792063616e2064697374726962757465206f6e6365000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ed4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f215f6661726d696e67496e63656e7469766546756e640000000000000000000081525060200191505060405180910390fd5b6001601360006101000a81548160ff021916908315150217905550610f0381690ed2b525841adfc00000612440565b50565b6000610f1a610f13612607565b848461260f565b6001905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080429050600854811115610f605760085490505b8060115410610f73576000915050610fa0565b610f9c600954610f8e6011548461280690919063ffffffff16565b61288990919063ffffffff16565b9150505b90565b6000600254905090565b6000610fba84848461290f565b61107b84610fc6612607565b6110768560405180606001604052806028815260200161308e60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061102c612607565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bd09092919063ffffffff16565b61260f565b600190509392505050565b61108e612607565b73ffffffffffffffffffffffffffffffffffffffff166110ac611dbc565b73ffffffffffffffffffffffffffffffffffffffff1614611135576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61113e81612c8a565b50565b6000804290506008548111156111575760085490505b806012541061116a576000915050611197565b611193600a546111856012548461280690919063ffffffff16565b61288990919063ffffffff16565b9150505b90565b600a5481565b6000600560009054906101000a900460ff16905090565b60085481565b60006111c7610f4a565b90506000811180156112285750600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561126157611259600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612440565b426011819055505b611269611141565b90506000811180156112ca5750600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b80156113255750600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b80156113805750600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b80156113db5750600073ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b80156114365750600073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561157e5761147a600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661147560058461232f90919063ffffffff16565b612440565b6114b9600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166114b460058461232f90919063ffffffff16565b612440565b6114f8600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166114f360058461232f90919063ffffffff16565b612440565b611537600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661153260058461232f90919063ffffffff16565b612440565b611576601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661157160058461232f90919063ffffffff16565b612440565b426012819055505b50565b611589612607565b73ffffffffffffffffffffffffffffffffffffffff166115a7611dbc565b73ffffffffffffffffffffffffffffffffffffffff1614611630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260048152602001807f7a65726f0000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b60018214156117225780600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061185e565b60028214156117715780600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061185d565b60038214156117c05780600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061185c565b600482141561180f5780600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061185b565b600582141561185a5780601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b5b5b5b5050565b600061190b61186f612607565b846119068560016000611880612607565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123b890919063ffffffff16565b61260f565b6001905092915050565b69017b7883c0691660000081565b61192c81612daf565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611972612607565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b60095481565b62c5c10081565b68bdbc41e0348b30000081565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a4e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806130da6024913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611abf57600080fd5b505af1158015611ad3573d6000803e3d6000fd5b505050506040513d6020811015611ae957600080fd5b810190808051906020019092919050505050505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611bec612607565b73ffffffffffffffffffffffffffffffffffffffff16611c0a611dbc565b73ffffffffffffffffffffffffffffffffffffffff1614611c93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b6000611d99826040518060600160405280602481526020016130b660249139611d8a86611d85612607565b611fc0565b612bd09092919063ffffffff16565b9050611dad83611da7612607565b8361260f565b611db78383612dc3565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e7e5780601f10611e5357610100808354040283529160200191611e7e565b820191906000526020600020905b815481529060010190602001808311611e6157829003601f168201915b5050505050905090565b601360009054906101000a900460ff1681565b690ed2b525841adfc0000081565b6000611f6c611eb6612607565b84611f67856040518060600160405280602581526020016131686025913960016000611ee0612607565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bd09092919063ffffffff16565b61260f565b6001905092915050565b6000611f8a611f83612607565b848461290f565b6001905092915050565b60115481565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61204f612607565b73ffffffffffffffffffffffffffffffffffffffff1661206d611dbc565b73ffffffffffffffffffffffffffffffffffffffff16146120f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561217c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612fd26026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612244612607565b73ffffffffffffffffffffffffffffffffffffffff16612262611dbc565b73ffffffffffffffffffffffffffffffffffffffff16146122eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008082116123a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b8183816123af57fe5b04905092915050565b600080828401905083811015612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6124ef60008383612f87565b612504816002546123b890919063ffffffff16565b60028190555061255b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123b890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612695576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806131446024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561271b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612ff86022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008282111561287e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b60008083141561289c5760009050612909565b60008284029050828482816128ad57fe5b0414612904576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061306d6021913960400191505060405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061311f6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612f8d6023913960400191505060405180910390fd5b612a26838383612f87565b612a918160405180606001604052806026815260200161301a602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bd09092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612b24816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123b890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290612c7d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612c42578082015181840152602081019050612c27565b50505050905090810190601f168015612c6f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613040602d913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612dc0612dba612607565b82612dc3565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130fe6021913960400191505060405180910390fd5b612e5582600083612f87565b612ec081604051806060016040528060228152602001612fb0602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bd09092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612f178160025461280690919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63656f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f7245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208d9eae7923100465d8fc71efd01c46c7331d834d6e9b3a7286895291a6d0623864736f6c634300060c003300000000000000000000000000000000000000000000000000000000621aaa07000000000000000000000000a0e86af33ffb93a66059605d4139f1ea423015d900000000000000000000000067011139c54b24d7b646bb0f0ce448b827ee72ff00000000000000000000000085d708fa876a806c902b7f2fcbac79baf5996364000000000000000000000000f5ebd28af4193b1bdcd4b5e2230728a60ba656700000000000000000000000006e2bcdfa22fbb2b07718ccb30762853ada8d73cf0000000000000000000000000500b0c6bcac47c4ba7a01af369725c381e06760

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102685760003560e01c80634cfc4d30116101515780638da5cb5b116100c3578063a9059cbb11610087578063a9059cbb14610a84578063abb4b1be14610ae8578063ca9ab2ee14610b06578063dd62ed3e14610b3a578063f2fde38b14610bb2578063f746b71814610bf657610268565b80638da5cb5b1461092b57806395d89b411461095f5780639662676c146109e2578063a06160fd14610a02578063a457c2d714610a2057610268565b80636beec71a116101155780636beec71a146107f55780636dc651d91461082957806370a082311461085d578063715018a6146108b557806378e97925146108bf57806379cc6790146108dd57610268565b80634cfc4d30146106e35780634f337dd51461070157806354575af41461071f57806355a715441461078d578063570ca735146107c157610268565b80632c07a624116101ea578063387e1faf116101ae578063387e1faf146105a757806339509351146105f55780633bba8eed1461065957806342966c68146106775780634456eda2146106a557806344cdc454146106c557610268565b80632c07a624146105225780632e3367ce14610540578063313ce5671461055e5780633197cbb61461057f578063372500ab1461059d57610268565b8063117effeb11610231578063117effeb146103ea578063177647821461041e57806318160ddd1461043c57806323b872dd1461045a57806329605e77146104de57610268565b8062f380f41461026d57806304017315146102a157806306fdde03146102bf578063092193ab14610342578063095ea7b314610386575b600080fd5b610275610c3a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6102a9610c60565b6040518082815260200191505060405180910390f35b6102c7610c66565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103075780820151818401526020810190506102ec565b50505050905090810190601f1680156103345780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103846004803603602081101561035857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d08565b005b6103d26004803603604081101561039c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f06565b60405180821515815260200191505060405180910390f35b6103f2610f24565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610426610f4a565b6040518082815260200191505060405180910390f35b610444610fa3565b6040518082815260200191505060405180910390f35b6104c66004803603606081101561047057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fad565b60405180821515815260200191505060405180910390f35b610520600480360360208110156104f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611086565b005b61052a611141565b6040518082815260200191505060405180910390f35b61054861119a565b6040518082815260200191505060405180910390f35b6105666111a0565b604051808260ff16815260200191505060405180910390f35b6105876111b7565b6040518082815260200191505060405180910390f35b6105a56111bd565b005b6105f3600480360360408110156105bd57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611581565b005b6106416004803603604081101561060b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611862565b60405180821515815260200191505060405180910390f35b610661611915565b6040518082815260200191505060405180910390f35b6106a36004803603602081101561068d57600080fd5b8101908080359060200190929190505050611923565b005b6106ad61192f565b60405180821515815260200191505060405180910390f35b6106cd61198e565b6040518082815260200191505060405180910390f35b6106eb611994565b6040518082815260200191505060405180910390f35b61070961199b565b6040518082815260200191505060405180910390f35b61078b6004803603606081101561073557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119a8565b005b610795611b00565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107c9611b26565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107fd611b50565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610831611b76565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61089f6004803603602081101561087357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b9c565b6040518082815260200191505060405180910390f35b6108bd611be4565b005b6108c7611d54565b6040518082815260200191505060405180910390f35b610929600480360360408110156108f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d5a565b005b610933611dbc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610967611de6565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109a757808201518184015260208101905061098c565b50505050905090810190601f1680156109d45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109ea611e88565b60405180821515815260200191505060405180910390f35b610a0a611e9b565b6040518082815260200191505060405180910390f35b610a6c60048036036040811015610a3657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ea9565b60405180821515815260200191505060405180910390f35b610ad060048036036040811015610a9a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611f76565b60405180821515815260200191505060405180910390f35b610af0611f94565b6040518082815260200191505060405180910390f35b610b0e611f9a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b9c60048036036040811015610b5057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fc0565b6040518082815260200191505060405180910390f35b610bf460048036036020811015610bc857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612047565b005b610c3860048036036020811015610c0c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061223c565b005b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610cfe5780601f10610cd357610100808354040283529160200191610cfe565b820191906000526020600020905b815481529060010190602001808311610ce157829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806130da6024913960400191505060405180910390fd5b601360009054906101000a900460ff1615610e31576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6f6e6c792063616e2064697374726962757465206f6e6365000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ed4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f215f6661726d696e67496e63656e7469766546756e640000000000000000000081525060200191505060405180910390fd5b6001601360006101000a81548160ff021916908315150217905550610f0381690ed2b525841adfc00000612440565b50565b6000610f1a610f13612607565b848461260f565b6001905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080429050600854811115610f605760085490505b8060115410610f73576000915050610fa0565b610f9c600954610f8e6011548461280690919063ffffffff16565b61288990919063ffffffff16565b9150505b90565b6000600254905090565b6000610fba84848461290f565b61107b84610fc6612607565b6110768560405180606001604052806028815260200161308e60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061102c612607565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bd09092919063ffffffff16565b61260f565b600190509392505050565b61108e612607565b73ffffffffffffffffffffffffffffffffffffffff166110ac611dbc565b73ffffffffffffffffffffffffffffffffffffffff1614611135576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61113e81612c8a565b50565b6000804290506008548111156111575760085490505b806012541061116a576000915050611197565b611193600a546111856012548461280690919063ffffffff16565b61288990919063ffffffff16565b9150505b90565b600a5481565b6000600560009054906101000a900460ff16905090565b60085481565b60006111c7610f4a565b90506000811180156112285750600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561126157611259600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612440565b426011819055505b611269611141565b90506000811180156112ca5750600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b80156113255750600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b80156113805750600073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b80156113db5750600073ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b80156114365750600073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561157e5761147a600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661147560058461232f90919063ffffffff16565b612440565b6114b9600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166114b460058461232f90919063ffffffff16565b612440565b6114f8600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166114f360058461232f90919063ffffffff16565b612440565b611537600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661153260058461232f90919063ffffffff16565b612440565b611576601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661157160058461232f90919063ffffffff16565b612440565b426012819055505b50565b611589612607565b73ffffffffffffffffffffffffffffffffffffffff166115a7611dbc565b73ffffffffffffffffffffffffffffffffffffffff1614611630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260048152602001807f7a65726f0000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b60018214156117225780600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061185e565b60028214156117715780600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061185d565b60038214156117c05780600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061185c565b600482141561180f5780600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061185b565b600582141561185a5780601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b5b5b5b5050565b600061190b61186f612607565b846119068560016000611880612607565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123b890919063ffffffff16565b61260f565b6001905092915050565b69017b7883c0691660000081565b61192c81612daf565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611972612607565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b60095481565b62c5c10081565b68bdbc41e0348b30000081565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a4e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806130da6024913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611abf57600080fd5b505af1158015611ad3573d6000803e3d6000fd5b505050506040513d6020811015611ae957600080fd5b810190808051906020019092919050505050505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611bec612607565b73ffffffffffffffffffffffffffffffffffffffff16611c0a611dbc565b73ffffffffffffffffffffffffffffffffffffffff1614611c93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b6000611d99826040518060600160405280602481526020016130b660249139611d8a86611d85612607565b611fc0565b612bd09092919063ffffffff16565b9050611dad83611da7612607565b8361260f565b611db78383612dc3565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e7e5780601f10611e5357610100808354040283529160200191611e7e565b820191906000526020600020905b815481529060010190602001808311611e6157829003601f168201915b5050505050905090565b601360009054906101000a900460ff1681565b690ed2b525841adfc0000081565b6000611f6c611eb6612607565b84611f67856040518060600160405280602581526020016131686025913960016000611ee0612607565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bd09092919063ffffffff16565b61260f565b6001905092915050565b6000611f8a611f83612607565b848461290f565b6001905092915050565b60115481565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61204f612607565b73ffffffffffffffffffffffffffffffffffffffff1661206d611dbc565b73ffffffffffffffffffffffffffffffffffffffff16146120f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561217c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612fd26026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612244612607565b73ffffffffffffffffffffffffffffffffffffffff16612262611dbc565b73ffffffffffffffffffffffffffffffffffffffff16146122eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008082116123a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b8183816123af57fe5b04905092915050565b600080828401905083811015612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6124ef60008383612f87565b612504816002546123b890919063ffffffff16565b60028190555061255b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123b890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612695576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806131446024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561271b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612ff86022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008282111561287e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b60008083141561289c5760009050612909565b60008284029050828482816128ad57fe5b0414612904576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061306d6021913960400191505060405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061311f6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612f8d6023913960400191505060405180910390fd5b612a26838383612f87565b612a918160405180606001604052806026815260200161301a602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bd09092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612b24816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123b890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290612c7d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612c42578082015181840152602081019050612c27565b50505050905090810190601f168015612c6f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613040602d913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612dc0612dba612607565b82612dc3565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130fe6021913960400191505060405180910390fd5b612e5582600083612f87565b612ec081604051806060016040528060228152602001612fb0602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bd09092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612f178160025461280690919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63656f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f7245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208d9eae7923100465d8fc71efd01c46c7331d834d6e9b3a7286895291a6d0623864736f6c634300060c0033

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

00000000000000000000000000000000000000000000000000000000621aaa07000000000000000000000000a0e86af33ffb93a66059605d4139f1ea423015d900000000000000000000000067011139c54b24d7b646bb0f0ce448b827ee72ff00000000000000000000000085d708fa876a806c902b7f2fcbac79baf5996364000000000000000000000000f5ebd28af4193b1bdcd4b5e2230728a60ba656700000000000000000000000006e2bcdfa22fbb2b07718ccb30762853ada8d73cf0000000000000000000000000500b0c6bcac47c4ba7a01af369725c381e06760

-----Decoded View---------------
Arg [0] : _startTime (uint256): 1645914631
Arg [1] : _communityFund (address): 0xa0e86Af33FfB93A66059605D4139f1eA423015d9
Arg [2] : _devFund1 (address): 0x67011139c54B24d7b646BB0f0Ce448B827EE72Ff
Arg [3] : _devFund2 (address): 0x85d708fA876a806C902b7F2FCbaC79BAF5996364
Arg [4] : _devFund3 (address): 0xF5eBd28Af4193b1bDcd4b5e2230728a60bA65670
Arg [5] : _devFund4 (address): 0x6E2BCDFa22FBb2B07718CCb30762853ADA8d73CF
Arg [6] : _devFund5 (address): 0x0500b0c6bcaC47c4BA7a01af369725C381e06760

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000621aaa07
Arg [1] : 000000000000000000000000a0e86af33ffb93a66059605d4139f1ea423015d9
Arg [2] : 00000000000000000000000067011139c54b24d7b646bb0f0ce448b827ee72ff
Arg [3] : 00000000000000000000000085d708fa876a806c902b7f2fcbac79baf5996364
Arg [4] : 000000000000000000000000f5ebd28af4193b1bdcd4b5e2230728a60ba65670
Arg [5] : 0000000000000000000000006e2bcdfa22fbb2b07718ccb30762853ada8d73cf
Arg [6] : 0000000000000000000000000500b0c6bcac47c4ba7a01af369725c381e06760


Deployed Bytecode Sourcemap

27073:4902:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27621:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27856:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13432:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31338:348;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;15578:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27686:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29805:308;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14531:108;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16229:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26688:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30121:285;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27580:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14375:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27504:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30493:765;;;:::i;:::-;;29300:497;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16959:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27271:67;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31694:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26580:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27535:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27415:51;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27345:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31785:187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27776:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26352:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27746:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27656;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;14702:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25415:148;;;:::i;:::-;;27473:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23244:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24764:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;13642:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27898:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27196:68;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17680:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15042:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27810:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27716:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15280:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25718:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29175:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27621:28;;;;;;;;;;;;;:::o;27856:33::-;;;;:::o;13432:91::-;13477:13;13510:5;13503:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13432:91;:::o;31338:348::-;26501:10;26488:23;;:9;;;;;;;;;;;:23;;;26480:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31437:21:::1;;;;;;;;;;;31436:22;31428:59;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31539:1;31506:35;;:21;:35;;;;31498:70;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31603:4;31579:21;;:28;;;;;;;;;;;;;;;;;;31618:60;31624:21;27253:11;31618:5;:60::i;:::-;31338:348:::0;:::o;15578:169::-;15661:4;15678:39;15687:12;:10;:12::i;:::-;15701:7;15710:6;15678:8;:39::i;:::-;15735:4;15728:11;;15578:169;;;;:::o;27686:23::-;;;;;;;;;;;;;:::o;29805:308::-;29859:16;29888:12;29903:15;29888:30;;29940:7;;29933:4;:14;29929:34;;;29956:7;;29949:14;;29929:34;30006:4;29978:24;;:32;29974:46;;30019:1;30012:8;;;;;29974:46;30042:63;30081:23;;30042:34;30051:24;;30042:4;:8;;:34;;;;:::i;:::-;:38;;:63;;;;:::i;:::-;30031:74;;29805:308;;;:::o;14531:108::-;14592:7;14619:12;;14612:19;;14531:108;:::o;16229:321::-;16335:4;16352:36;16362:6;16370:9;16381:6;16352:9;:36::i;:::-;16399:121;16408:6;16416:12;:10;:12::i;:::-;16430:89;16468:6;16430:89;;;;;;;;;;;;;;;;;:11;:19;16442:6;16430:19;;;;;;;;;;;;;;;:33;16450:12;:10;:12::i;:::-;16430:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;16399:8;:121::i;:::-;16538:4;16531:11;;16229:321;;;;;:::o;26688:115::-;24995:12;:10;:12::i;:::-;24984:23;;:7;:5;:7::i;:::-;:23;;;24976:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26764:31:::1;26782:12;26764:17;:31::i;:::-;26688:115:::0;:::o;30121:285::-;30170:16;30199:12;30214:15;30199:30;;30251:7;;30244:4;:14;30240:34;;;30267:7;;30260:14;;30240:34;30311:4;30289:18;;:26;30285:40;;30324:1;30317:8;;;;;30285:40;30347:51;30380:17;;30347:28;30356:18;;30347:4;:8;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;30336:62;;30121:285;;;:::o;27580:32::-;;;;:::o;14375:91::-;14424:5;14449:9;;;;;;;;;;;14442:16;;14375:91;:::o;27504:22::-;;;;:::o;30493:765::-;30537:16;30556:23;:21;:23::i;:::-;30537:42;;30605:1;30594:8;:12;:43;;;;;30635:1;30610:27;;:13;;;;;;;;;;;:27;;;;30594:43;30590:163;;;30654:30;30660:13;;;;;;;;;;;30675:8;30654:5;:30::i;:::-;30726:15;30699:24;:42;;;;30590:163;30774:18;:16;:18::i;:::-;30763:29;;30818:1;30807:8;:12;:38;;;;;30843:1;30823:22;;:8;;;;;;;;;;;:22;;;;30807:38;:64;;;;;30869:1;30849:22;;:8;;;;;;;;;;;:22;;;;30807:64;:90;;;;;30895:1;30875:22;;:8;;;;;;;;;;;:22;;;;30807:90;:116;;;;;30921:1;30901:22;;:8;;;;;;;;;;;:22;;;;30807:116;:142;;;;;30947:1;30927:22;;:8;;;;;;;;;;;:22;;;;30807:142;30803:448;;;30966:32;30972:8;;;;;;;;;;;30982:15;30995:1;30982:8;:12;;:15;;;;:::i;:::-;30966:5;:32::i;:::-;31013;31019:8;;;;;;;;;;;31029:15;31042:1;31029:8;:12;;:15;;;;:::i;:::-;31013:5;:32::i;:::-;31060;31066:8;;;;;;;;;;;31076:15;31089:1;31076:8;:12;;:15;;;;:::i;:::-;31060:5;:32::i;:::-;31107;31113:8;;;;;;;;;;;31123:15;31136:1;31123:8;:12;;:15;;;;:::i;:::-;31107:5;:32::i;:::-;31154;31160:8;;;;;;;;;;;31170:15;31183:1;31170:8;:12;;:15;;;;:::i;:::-;31154:5;:32::i;:::-;31224:15;31203:18;:36;;;;30803:448;30493:765;:::o;29300:497::-;24995:12;:10;:12::i;:::-;24984:23;;:7;:5;:7::i;:::-;:23;;;24976:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29412:1:::1;29392:22;;:8;:22;;;;29384:39;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;29453:1;29440:9;:14;29436:354;;;29482:8;29471;;:19;;;;;;;;;;;;;;;;;;29436:354;;;29525:1;29512:9;:14;29508:282;;;29554:8;29543;;:19;;;;;;;;;;;;;;;;;;29508:282;;;29597:1;29584:9;:14;29580:210;;;29626:8;29615;;:19;;;;;;;;;;;;;;;;;;29580:210;;;29669:1;29656:9;:14;29652:138;;;29698:8;29687;;:19;;;;;;;;;;;;;;;;;;29652:138;;;29741:1;29728:9;:14;29724:66;;;29770:8;29759;;:19;;;;;;;;;;;;;;;;;;29724:66;29652:138;29580:210;29508:282;29436:354;29300:497:::0;;:::o;16959:218::-;17047:4;17064:83;17073:12;:10;:12::i;:::-;17087:7;17096:50;17135:10;17096:11;:25;17108:12;:10;:12::i;:::-;17096:25;;;;;;;;;;;;;;;:34;17122:7;17096:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;17064:8;:83::i;:::-;17165:4;17158:11;;16959:218;;;;:::o;27271:67::-;27328:10;27271:67;:::o;31694:83::-;31751:18;31762:6;31751:10;:18::i;:::-;31694:83;:::o;26580:100::-;26623:4;26663:9;;;;;;;;;;;26647:25;;:12;:10;:12::i;:::-;:25;;;26640:32;;26580:100;:::o;27535:38::-;;;;:::o;27415:51::-;27458:8;27415:51;:::o;27345:61::-;27396:10;27345:61;:::o;31785:187::-;26501:10;26488:23;;:9;;;;;;;;;;;:23;;;26480:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31935:6:::1;:15;;;31951:3;31956:7;31935:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;31785:187:::0;;;:::o;27776:23::-;;;;;;;;;;;;;:::o;26352:85::-;26393:7;26420:9;;;;;;;;;;;26413:16;;26352:85;:::o;27746:23::-;;;;;;;;;;;;;:::o;27656:::-;;;;;;;;;;;;;:::o;14702:127::-;14776:7;14803:9;:18;14813:7;14803:18;;;;;;;;;;;;;;;;14796:25;;14702:127;;;:::o;25415:148::-;24995:12;:10;:12::i;:::-;24984:23;;:7;:5;:7::i;:::-;:23;;;24976:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25522:1:::1;25485:40;;25506:6;;;;;;;;;;;25485:40;;;;;;;;;;;;25553:1;25536:6;;:19;;;;;;;;;;;;;;;;;;25415:148::o:0;27473:24::-;;;;:::o;23244:295::-;23321:26;23350:84;23387:6;23350:84;;;;;;;;;;;;;;;;;:32;23360:7;23369:12;:10;:12::i;:::-;23350:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;23321:113;;23447:51;23456:7;23465:12;:10;:12::i;:::-;23479:18;23447:8;:51::i;:::-;23509:22;23515:7;23524:6;23509:5;:22::i;:::-;23244:295;;;:::o;24764:87::-;24810:7;24837:6;;;;;;;;;;;24830:13;;24764:87;:::o;13642:95::-;13689:13;13722:7;13715:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13642:95;:::o;27898:41::-;;;;;;;;;;;;;:::o;27196:68::-;27253:11;27196:68;:::o;17680:269::-;17773:4;17790:129;17799:12;:10;:12::i;:::-;17813:7;17822:96;17861:15;17822:96;;;;;;;;;;;;;;;;;:11;:25;17834:12;:10;:12::i;:::-;17822:25;;;;;;;;;;;;;;;:34;17848:7;17822:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;17790:8;:129::i;:::-;17937:4;17930:11;;17680:269;;;;:::o;15042:175::-;15128:4;15145:42;15155:12;:10;:12::i;:::-;15169:9;15180:6;15145:9;:42::i;:::-;15205:4;15198:11;;15042:175;;;;:::o;27810:39::-;;;;:::o;27716:23::-;;;;;;;;;;;;;:::o;15280:151::-;15369:7;15396:11;:18;15408:5;15396:18;;;;;;;;;;;;;;;:27;15415:7;15396:27;;;;;;;;;;;;;;;;15389:34;;15280:151;;;;:::o;25718:244::-;24995:12;:10;:12::i;:::-;24984:23;;:7;:5;:7::i;:::-;:23;;;24976:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25827:1:::1;25807:22;;:8;:22;;;;25799:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25917:8;25888:38;;25909:6;;;;;;;;;;;25888:38;;;;;;;;;;;;25946:8;25937:6;;:17;;;;;;;;;;;;;;;;;;25718:244:::0;:::o;29175:117::-;24995:12;:10;:12::i;:::-;24984:23;;:7;:5;:7::i;:::-;:23;;;24976:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29270:14:::1;29254:13;;:30;;;;;;;;;;;;;;;;;;29175:117:::0;:::o;4351:153::-;4409:7;4441:1;4437;:5;4429:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4495:1;4491;:5;;;;;;4484:12;;4351:153;;;;:::o;2774:179::-;2832:7;2852:9;2868:1;2864;:5;2852:17;;2893:1;2888;:6;;2880:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2944:1;2937:8;;;2774:179;;;;:::o;19260:378::-;19363:1;19344:21;;:7;:21;;;;19336:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19414:49;19443:1;19447:7;19456:6;19414:20;:49::i;:::-;19491:24;19508:6;19491:12;;:16;;:24;;;;:::i;:::-;19476:12;:39;;;;19547:30;19570:6;19547:9;:18;19557:7;19547:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;19526:9;:18;19536:7;19526:18;;;;;;;;;;;;;;;:51;;;;19614:7;19593:37;;19610:1;19593:37;;;19623:6;19593:37;;;;;;;;;;;;;;;;;;19260:378;;:::o;8085:106::-;8138:15;8173:10;8166:17;;8085:106;:::o;20827:346::-;20946:1;20929:19;;:5;:19;;;;20921:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21027:1;21008:21;;:7;:21;;;;21000:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21111:6;21081:11;:18;21093:5;21081:18;;;;;;;;;;;;;;;:27;21100:7;21081:27;;;;;;;;;;;;;;;:36;;;;21149:7;21133:32;;21142:5;21133:32;;;21158:6;21133:32;;;;;;;;;;;;;;;;;;20827:346;;;:::o;3236:158::-;3294:7;3327:1;3322;:6;;3314:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3385:1;3381;:5;3374:12;;3236:158;;;;:::o;3653:220::-;3711:7;3740:1;3735;:6;3731:20;;;3750:1;3743:8;;;;3731:20;3762:9;3778:1;3774;:5;3762:17;;3807:1;3802;3798;:5;;;;;;:10;3790:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3864:1;3857:8;;;3653:220;;;;;:::o;18439:539::-;18563:1;18545:20;;:6;:20;;;;18537:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18647:1;18626:23;;:9;:23;;;;18618:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18702:47;18723:6;18731:9;18742:6;18702:20;:47::i;:::-;18782:71;18804:6;18782:71;;;;;;;;;;;;;;;;;:9;:17;18792:6;18782:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;18762:9;:17;18772:6;18762:17;;;;;;;;;;;;;;;:91;;;;18887:32;18912:6;18887:9;:20;18897:9;18887:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;18864:9;:20;18874:9;18864:20;;;;;;;;;;;;;;;:55;;;;18952:9;18935:35;;18944:6;18935:35;;;18963:6;18935:35;;;;;;;;;;;;;;;;;;18439:539;;;:::o;5601:166::-;5687:7;5720:1;5715;:6;;5723:12;5707:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5758:1;5754;:5;5747:12;;5601:166;;;;;:::o;26811:257::-;26912:1;26888:26;;:12;:26;;;;26880:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27012:12;26980:45;;27008:1;26980:45;;;;;;;;;;;;27048:12;27036:9;;:24;;;;;;;;;;;;;;;;;;26811:257;:::o;22834:91::-;22890:27;22896:12;:10;:12::i;:::-;22910:6;22890:5;:27::i;:::-;22834:91;:::o;19971:418::-;20074:1;20055:21;;:7;:21;;;;20047:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20127:49;20148:7;20165:1;20169:6;20127:20;:49::i;:::-;20210:68;20233:6;20210:68;;;;;;;;;;;;;;;;;:9;:18;20220:7;20210:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;20189:9;:18;20199:7;20189:18;;;;;;;;;;;;;;;:89;;;;20304:24;20321:6;20304:12;;:16;;:24;;;;:::i;:::-;20289:12;:39;;;;20370:1;20344:37;;20353:7;20344:37;;;20374:6;20344:37;;;;;;;;;;;;;;;;;;19971:418;;:::o;22206:92::-;;;;:::o

Swarm Source

ipfs://8d9eae7923100465d8fc71efd01c46c7331d834d6e9b3a7286895291a6d06238

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Txn 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.