ETH Price: $3,574.86 (+1.76%)
Gas: 46 Gwei

Token

bearn.fi (BFIE)
 

Overview

Max Total Supply

6,985.077688261650913363 BFIE

Holders

286 (0.00%)

Market

Price

$10.70 @ 0.002993 ETH (+0.02%)

Onchain Market Cap

$74,725.82

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
HTX 34
Balance
0.008888888899999999 BFIE

Value
$0.10 ( ~2.79730914477066E-05 Eth) [0.0001%]
0xCAc725beF4f114F728cbCfd744a731C2a463c3Fc
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Bearn Fi is a cross-chain product in Decentralized Finance (DeFi) that at its core provides yield generation, casino/gaming aggregation, bridge, treasury, and governance on multi-chain: Binance Smart Chain blockchain (BSC) and Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BearnTokenERC20

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-11-28
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

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

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

/**
 * @title Initializable
 *
 * @dev Helper contract to support initializer functions. To use it, replace
 * the constructor with a function that has the `initializer` modifier.
 * WARNING: Unlike constructors, initializer functions must be manually
 * invoked. This applies both to deploying an Initializable contract, as well
 * as extending an Initializable contract via inheritance.
 * WARNING: When used with inheritance, manual care must be taken to not invoke
 * a parent initializer twice, or ensure that all initializers are idempotent,
 * because this is not dealt with automatically as with constructors.
 */
contract Initializable {

  /**
   * @dev Indicates that the contract has been initialized.
   */
  bool private initialized;

  /**
   * @dev Indicates that the contract is in the process of being initialized.
   */
  bool private initializing;

  /**
   * @dev Modifier to use in the initializer function of a contract.
   */
  modifier initializer() {
    require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized");

    bool isTopLevelCall = !initializing;
    if (isTopLevelCall) {
      initializing = true;
      initialized = true;
    }

    _;

    if (isTopLevelCall) {
      initializing = false;
    }
  }

  /// @dev Returns true if and only if the function is running in the constructor
  function isConstructor() private view returns (bool) {
    // extcodesize checks the size of the code stored in an address, and
    // address returns the current address. Since the code is still not
    // deployed when running a constructor, any checks on its code size will
    // yield zero, making it an effective way to detect if a contract is
    // under construction or not.
    address self = address(this);
    uint256 cs;
    assembly { cs := extcodesize(self) }
    return cs == 0;
  }

  // Reserved storage space to allow for layout changes in the future.
  uint256[50] private ______gap;
}

/*
 * @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.
 */
contract ContextUpgradeSafe is Initializable {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.

    function __Context_init() internal initializer {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal initializer {


    }


    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;
    }

    uint256[50] private __gap;
}

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

/**
 * @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, 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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * 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);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}

/**
 * @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 {ERC20MinterPauser}.
 *
 * 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 ERC20UpgradeSafe is Initializable, ContextUpgradeSafe, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    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.
     */

    function __ERC20_init(string memory name, string memory symbol) internal initializer {
        __Context_init_unchained();
        __ERC20_init_unchained(name, symbol);
    }

    function __ERC20_init_unchained(string memory name, string memory symbol) internal initializer {


        _name = name;
        _symbol = symbol;
        _decimals = 18;

    }


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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * 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 returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) 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 {
        _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 { }

    uint256[44] private __gap;
}

contract ERC20WithPermit is Initializable, ERC20UpgradeSafe {
    using SafeMath for uint;

    mapping(address => uint) public nonces;

    // If the token is redeployed, the version is increased to prevent a permit
    // signature being used on both token instances.
    string public version;

    // --- EIP712 niceties ---
    bytes32 public DOMAIN_SEPARATOR;
    // PERMIT_TYPEHASH is the value returned from
    // keccak256("Permit(address holder,address spender,uint nonce,uint expiry,bool allowed)")
    bytes32 public constant PERMIT_TYPEHASH = 0xea2aa0a1be11a07ed86d755c93467f4f82362b452371d1ba94d1715123511acb;

    function initialize(
        uint _chainId,
        string memory _version,
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) public initializer {
        __ERC20_init(_name, _symbol);
        _setupDecimals(_decimals);
        version = _version;
        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                keccak256(
                    "EIP712Domain(string name,string version,uint chainId,address verifyingContract)"
                ),
                keccak256(bytes(name())),
                keccak256(bytes(version)),
                _chainId,
                address(this)
            )
        );
    }

    // --- Approve by signature ---
    function permit(
        address holder,
        address spender,
        uint nonce,
        uint expiry,
        bool allowed,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external {
        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                DOMAIN_SEPARATOR,
                keccak256(
                    abi.encode(
                        PERMIT_TYPEHASH,
                        holder,
                        spender,
                        nonce,
                        expiry,
                        allowed
                    )
                )
            )
        );

        require(holder != address(0), "ERC20WithRate: address must not be 0x0");
        require(
            holder == ecrecover(digest, v, r, s),
            "ERC20WithRate: invalid signature"
        );
        require(
            expiry == 0 || now <= expiry,
            "ERC20WithRate: permit has expired"
        );
        require(nonce == nonces[holder]++, "ERC20WithRate: invalid nonce");
        uint amount = allowed ? uint(-1) : 0;
        _approve(holder, spender, amount);
    }
}

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves.

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "SafeERC20: low-level call failed");

        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

/**
 * @title Claimable
 * @dev Extension for the Ownable contract, where the ownership needs to be claimed.
 * This allows the new owner to accept the transfer.
 */
contract Claimable is Initializable {
    address private _owner;
    address public pendingOwner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    function initialize(address _nextOwner) public virtual initializer {
        _owner = _nextOwner;
    }

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

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

    modifier onlyPendingOwner() {
        require(
            msg.sender == pendingOwner,
            "Claimable: caller is not the pending owner"
        );
        _;
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        require(
            newOwner != pendingOwner,
            "Claimable: invalid new owner"
        );
        pendingOwner = newOwner;
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function _transferOwnership(address newOwner) internal {
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    function claimOwnership() public onlyPendingOwner {
        _transferOwnership(pendingOwner);
        delete pendingOwner;
    }
}

contract CanReclaimTokens is Claimable {
    using SafeERC20 for ERC20UpgradeSafe;

    mapping(address => bool) private recoverableTokensBlacklist;

    function initialize(address _nextOwner) public override initializer {
        Claimable.initialize(_nextOwner);
    }

    function blacklistRecoverableToken(address _token) public onlyOwner {
        recoverableTokensBlacklist[_token] = true;
    }

    /// @notice Allow the owner of the contract to recover funds accidentally
    /// sent to the contract. To withdraw ETH, the token should be set to `0x0`.
    function recoverTokens(address _token) external onlyOwner {
        require(
            !recoverableTokensBlacklist[_token],
            "CanReclaimTokens: token is not recoverable"
        );

        if (_token == address(0x0)) {
            msg.sender.transfer(address(this).balance);
        } else {
            ERC20UpgradeSafe(_token).safeTransfer(
                msg.sender, ERC20UpgradeSafe(_token).balanceOf(address(this))
            );
        }
    }
}

/**
 * @dev Wrapped BFI on Ethereum
 *
 * Read more about its tokenomic here: https://bearn-defi.medium.com/bearn-fi-introduction-9e65f6395dfc
 *
 * Total 12,500 BFI issued (minted) on Ethereum:
 * - 500 BFIE for initial supply (Uniswap and Value Liquid)
 * - 3000 BFIE for UNIv2 BFIE-ETH (50/50) mining incentive (4 months)
 * - 7000 BFIE for ValueLiquid VLP BFIE-VALUE (70/30) mining incentive (18 months)
 * - 2000 BFIE reserve for public mint (from BFI Bsc)
 */
contract BearnTokenERC20 is
    ERC20WithPermit,
    CanReclaimTokens {

    uint public cap = 12500 ether;

    function initialize(
        uint _chainId,
        address _nextOwner,
        string memory _version,
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) public initializer {
        __ERC20_init(_name, _symbol);
        _setupDecimals(_decimals);
        ERC20WithPermit.initialize(
            _chainId,
            _version,
            _name,
            _symbol,
            _decimals
        );
        CanReclaimTokens.initialize(_nextOwner);
        _mint(msg.sender, cap.sub(2000 ether)); // first mint to setup liquidity
    }

    // Can be called by only Gateway
    function mint(address _to, uint _amount) external onlyOwner {
        _mint(_to, _amount);
    }

    // Can be called by only Gateway
    function burn(uint _amount) external onlyOwner {
        _burn(msg.sender, _amount);
    }

    function transfer(address recipient, uint amount) public override returns (bool) {
        require(
            recipient != address(this),
            "BEARN ERC20UpgradeSafe: can't transfer to token address"
        );
        return super.transfer(recipient, amount);
    }

    function transferFrom(address sender, address recipient, uint amount) public override returns (bool) {
        require(
            recipient != address(this),
            "BEARN ERC20UpgradeSafe: can't transfer to stoken address"
        );
        return super.transferFrom(sender, recipient, amount);
    }

    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - minted tokens must not cause the total supply to go over the cap.
     */
    function _beforeTokenTransfer(address from, address to, uint amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) { // When minting tokens
            require(totalSupply().add(amount) <= cap, "ERC20Capped: cap exceeded");
        }
    }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"address","name":"_token","type":"address"}],"name":"blacklistRecoverableToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_chainId","type":"uint256"},{"internalType":"string","name":"_version","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_chainId","type":"uint256"},{"internalType":"address","name":"_nextOwner","type":"address"},{"internalType":"string","name":"_version","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nextOwner","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"bool","name":"allowed","type":"bool"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"recoverTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526902a5a058fc295ed00000609d5534801561001e57600080fd5b5061316c8061002e6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80635dca3452116100f9578063a457c2d711610097578063dd62ed3e11610071578063dd62ed3e14610940578063e30c39781461097b578063f2fde38b14610983578063f65d901c146109b6576101c4565b8063a457c2d71461089b578063a9059cbb146108d4578063c4d66de81461090d576101c4565b80637ecebe00116100d35780637ecebe00146107c85780638da5cb5b146107fb5780638fcbaf0c1461082c57806395d89b4114610893576101c4565b80635dca3452146103fa57806363f76b71146105ba57806370a0823114610795576101c4565b8063355274ea1161016657806340c10f191161014057806340c10f191461039457806342966c68146103cd5780634e71e0c8146103ea57806354fd4d50146103f2576101c4565b8063355274ea1461034b5780633644e51514610353578063395093511461035b576101c4565b806318160ddd116101a257806318160ddd146102c857806323b872dd146102e257806330adf81f14610325578063313ce5671461032d576101c4565b806306fdde03146101c9578063095ea7b31461024657806316114acd14610293575b600080fd5b6101d16109e9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561020b5781810151838201526020016101f3565b50505050905090810190601f1680156102385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027f6004803603604081101561025c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610a9d565b604080519115158252519081900360200190f35b6102c6600480360360208110156102a957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610aba565b005b6102d0610cc4565b60408051918252519081900360200190f35b61027f600480360360608110156102f857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610cca565b6102d0610d4e565b610335610d72565b6040805160ff9092168252519081900360200190f35b6102d0610d7b565b6102d0610d81565b61027f6004803603604081101561037157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610d87565b6102c6600480360360408110156103aa57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610de7565b6102c6600480360360208110156103e357600080fd5b5035610e7b565b6102c6610f0b565b6101d1610fc7565b6102c6600480360360a081101561041057600080fd5b8135919081019060408101602082013564010000000081111561043257600080fd5b82018360208201111561044457600080fd5b8035906020019184600183028401116401000000008311171561046657600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156104b957600080fd5b8201836020820111156104cb57600080fd5b803590602001918460018302840111640100000000831117156104ed57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561054057600080fd5b82018360208201111561055257600080fd5b8035906020019184600183028401116401000000008311171561057457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506110739050565b6102c6600480360360c08110156105d057600080fd5b81359173ffffffffffffffffffffffffffffffffffffffff6020820135169181019060608101604082013564010000000081111561060d57600080fd5b82018360208201111561061f57600080fd5b8035906020019184600183028401116401000000008311171561064157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561069457600080fd5b8201836020820111156106a657600080fd5b803590602001918460018302840111640100000000831117156106c857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561071b57600080fd5b82018360208201111561072d57600080fd5b8035906020019184600183028401116401000000008311171561074f57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506112919050565b6102d0600480360360208110156107ab57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166113fb565b6102d0600480360360208110156107de57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611423565b610803611435565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6102c6600480360361010081101561084357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013590911690604081013590606081013590608081013515159060ff60a0820135169060c08101359060e00135611451565b6101d16117c8565b61027f600480360360408110156108b157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611847565b61027f600480360360408110156108ea57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356118bc565b6102c66004803603602081101561092357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661193e565b6102d06004803603604081101561095657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516611a5b565b610803611a93565b6102c66004803603602081101561099957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611aaf565b6102c6600480360360208110156109cc57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611c06565b60688054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a935780601f10610a6857610100808354040283529160200191610a93565b820191906000526020600020905b815481529060010190602001808311610a7657829003601f168201915b5050505050905090565b6000610ab1610aaa611cdb565b8484611cdf565b50600192915050565b609a5473ffffffffffffffffffffffffffffffffffffffff163314610b4057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166000908152609c602052604090205460ff1615610bbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612ef8602a913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8116610c0c5760405133904780156108fc02916000818181858888f19350505050158015610c06573d6000803e3d6000fd5b50610cc1565b610cc1338273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610c7757600080fd5b505afa158015610c8b573d6000803e3d6000fd5b505050506040513d6020811015610ca157600080fd5b505173ffffffffffffffffffffffffffffffffffffffff84169190611e26565b50565b60675490565b600073ffffffffffffffffffffffffffffffffffffffff8316301415610d3b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806130b46038913960400191505060405180910390fd5b610d46848484611eb8565b949350505050565b7fea2aa0a1be11a07ed86d755c93467f4f82362b452371d1ba94d1715123511acb81565b606a5460ff1690565b609d5481565b60995481565b6000610ab1610d94611cdb565b84610de28560666000610da5611cdb565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490611f54565b611cdf565b609a5473ffffffffffffffffffffffffffffffffffffffff163314610e6d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610e778282611fc8565b5050565b609a5473ffffffffffffffffffffffffffffffffffffffff163314610f0157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610cc133826120fb565b609b5473ffffffffffffffffffffffffffffffffffffffff163314610f7b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612fe0602a913960400191505060405180910390fd5b609b54610f9d9073ffffffffffffffffffffffffffffffffffffffff16612245565b609b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b6098805460408051602060026001851615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f8101849004840282018401909252818152929183018282801561106b5780601f106110405761010080835404028352916020019161106b565b820191906000526020600020905b81548152906001019060200180831161104e57829003601f168201915b505050505081565b600054610100900460ff168061108c575061108c6122d3565b8061109a575060005460ff16155b6110ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612f91602e913960400191505060405180910390fd5b600054610100900460ff1615801561115557600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b61115f84846122d9565b61116882612400565b845161117b906098906020880190612dfd565b507f4771e259cc52e342be37df42506473f4042cb91fdf5c67782c2c45ed51b98beb6111a56109e9565b80519060200120609860405180828054600181600116156101000203166002900480156112095780601f106111e7576101008083540402835291820191611209565b820191906000526020600020905b8154815290600101906020018083116111f5575b505060408051918290038220602080840197909752828201959095526060820194909452608081018b90523060a0808301919091528451808303909101815260c090910190935250508051910120609955801561128957600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b505050505050565b600054610100900460ff16806112aa57506112aa6122d3565b806112b8575060005460ff16155b61130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612f91602e913960400191505060405180910390fd5b600054610100900460ff1615801561137357600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b61137d84846122d9565b61138682612400565b6113938786868686611073565b61139c8661193e565b6113c3336113be686c6b935b8bbd400000609d5461243490919063ffffffff16565b611fc8565b80156113f257600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526065602052604090205490565b60976020526000908152604090205481565b609a5473ffffffffffffffffffffffffffffffffffffffff1690565b609954604080517fea2aa0a1be11a07ed86d755c93467f4f82362b452371d1ba94d1715123511acb60208083019190915273ffffffffffffffffffffffffffffffffffffffff808d16838501819052908c166060840152608083018b905260a083018a905288151560c0808501919091528451808503909101815260e0840185528051908301207f190100000000000000000000000000000000000000000000000000000000000061010085015261010284019590955261012280840195909552835180840390950185526101429092019092528251929091019190912090611585576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806131116026913960400191505060405180910390fd5b60018185858560405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156115df573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161461168257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f455243323057697468526174653a20696e76616c6964207369676e6174757265604482015290519081900360640190fd5b85158061168f5750854211155b6116e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612f486021913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff89166000908152609760205260409020805460018101909155871461177f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f455243323057697468526174653a20696e76616c6964206e6f6e636500000000604482015290519081900360640190fd5b60008561178d5760006117af565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b90506117bc8a8a83611cdf565b50505050505050505050565b60698054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a935780601f10610a6857610100808354040283529160200191610a93565b6000610ab1611854611cdb565b84610de2856040518060600160405280602581526020016130ec602591396066600061187e611cdb565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190612472565b600073ffffffffffffffffffffffffffffffffffffffff831630141561192d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806130536037913960400191505060405180910390fd5b6119378383612523565b9392505050565b600054610100900460ff168061195757506119576122d3565b80611965575060005460ff16155b6119ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612f91602e913960400191505060405180910390fd5b600054610100900460ff16158015611a2057600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b611a2982612537565b8015610e7757600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260666020908152604080832093909416825291909152205490565b609b5473ffffffffffffffffffffffffffffffffffffffff1681565b609a5473ffffffffffffffffffffffffffffffffffffffff163314611b3557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b609b5473ffffffffffffffffffffffffffffffffffffffff82811691161415611bbf57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f436c61696d61626c653a20696e76616c6964206e6577206f776e657200000000604482015290519081900360640190fd5b609b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b609a5473ffffffffffffffffffffffffffffffffffffffff163314611c8c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff166000908152609c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316611d4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061302f6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612ed66022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260666020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052611eb390849061268b565b505050565b6000611ec58484846128cf565b611f4a84611ed1611cdb565b610de285604051806060016040528060288152602001612f696028913973ffffffffffffffffffffffffffffffffffffffff8a16600090815260666020526040812090611f1c611cdb565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190612472565b5060019392505050565b60008282018381101561193757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff821661204a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61205660008383612aa1565b6067546120639082611f54565b60675573ffffffffffffffffffffffffffffffffffffffff82166000908152606560205260409020546120969082611f54565b73ffffffffffffffffffffffffffffffffffffffff831660008181526065602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff8216612167576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612fbf6021913960400191505060405180910390fd5b61217382600083612aa1565b6121bd81604051806060016040528060228152602001612eb46022913973ffffffffffffffffffffffffffffffffffffffff85166000908152606560205260409020549190612472565b73ffffffffffffffffffffffffffffffffffffffff83166000908152606560205260409020556067546121f09082612434565b60675560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b609a5460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3609a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b303b1590565b600054610100900460ff16806122f257506122f26122d3565b80612300575060005460ff16155b612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612f91602e913960400191505060405180910390fd5b600054610100900460ff161580156123bb57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b6123c3612b49565b6123cd8383612c5c565b8015611eb357600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055505050565b606a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660ff92909216919091179055565b600061193783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152505b6000818484111561251b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124e05781810151838201526020016124c8565b50505050905090810190601f16801561250d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000610ab1612530611cdb565b84846128cf565b600054610100900460ff168061255057506125506122d3565b8061255e575060005460ff16155b6125b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612f91602e913960400191505060405180910390fd5b600054610100900460ff1615801561261957600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b609a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84161790558015610e7757600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050565b6126aa8273ffffffffffffffffffffffffffffffffffffffff16612dc4565b61271557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b6020831061277e57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101612741565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146127e0576040519150601f19603f3d011682016040523d82523d6000602084013e6127e5565b606091505b50915091508161285657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156128c95780806020019051602081101561287257600080fd5b50516128c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061308a602a913960400191505060405180910390fd5b50505050565b73ffffffffffffffffffffffffffffffffffffffff831661293b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061300a6025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166129a7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612e916023913960400191505060405180910390fd5b6129b2838383612aa1565b6129fc81604051806060016040528060268152602001612f226026913973ffffffffffffffffffffffffffffffffffffffff86166000908152606560205260409020549190612472565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152606560205260408082209390935590841681522054612a389082611f54565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526065602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b612aac838383611eb3565b73ffffffffffffffffffffffffffffffffffffffff8316611eb357609d54612adc82612ad6610cc4565b90611f54565b1115611eb357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b600054610100900460ff1680612b625750612b626122d3565b80612b70575060005460ff16155b612bc5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612f91602e913960400191505060405180910390fd5b600054610100900460ff16158015612c2b57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b8015610cc157600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550565b600054610100900460ff1680612c755750612c756122d3565b80612c83575060005460ff16155b612cd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612f91602e913960400191505060405180910390fd5b600054610100900460ff16158015612d3e57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b8251612d51906068906020860190612dfd565b508151612d65906069906020850190612dfd565b50606a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660121790558015611eb357600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590610d46575050151592915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612e3e57805160ff1916838001178555612e6b565b82800160010185558215612e6b579182015b82811115612e6b578251825591602001919060010190612e50565b50612e77929150612e7b565b5090565b5b80821115612e775760008155600101612e7c56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737343616e5265636c61696d546f6b656e733a20746f6b656e206973206e6f74207265636f76657261626c6545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365455243323057697468526174653a207065726d697420686173206578706972656445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e2066726f6d20746865207a65726f2061646472657373436c61696d61626c653a2063616c6c6572206973206e6f74207468652070656e64696e67206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373424541524e20455243323055706772616465536166653a2063616e2774207472616e7366657220746f20746f6b656e20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564424541524e20455243323055706772616465536166653a2063616e2774207472616e7366657220746f2073746f6b656e206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f455243323057697468526174653a2061646472657373206d757374206e6f7420626520307830a2646970667358221220f83cae558d85f3448643db82473d7f73bf1d789950d4092a302c3208743bc3eb64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80635dca3452116100f9578063a457c2d711610097578063dd62ed3e11610071578063dd62ed3e14610940578063e30c39781461097b578063f2fde38b14610983578063f65d901c146109b6576101c4565b8063a457c2d71461089b578063a9059cbb146108d4578063c4d66de81461090d576101c4565b80637ecebe00116100d35780637ecebe00146107c85780638da5cb5b146107fb5780638fcbaf0c1461082c57806395d89b4114610893576101c4565b80635dca3452146103fa57806363f76b71146105ba57806370a0823114610795576101c4565b8063355274ea1161016657806340c10f191161014057806340c10f191461039457806342966c68146103cd5780634e71e0c8146103ea57806354fd4d50146103f2576101c4565b8063355274ea1461034b5780633644e51514610353578063395093511461035b576101c4565b806318160ddd116101a257806318160ddd146102c857806323b872dd146102e257806330adf81f14610325578063313ce5671461032d576101c4565b806306fdde03146101c9578063095ea7b31461024657806316114acd14610293575b600080fd5b6101d16109e9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561020b5781810151838201526020016101f3565b50505050905090810190601f1680156102385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027f6004803603604081101561025c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610a9d565b604080519115158252519081900360200190f35b6102c6600480360360208110156102a957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610aba565b005b6102d0610cc4565b60408051918252519081900360200190f35b61027f600480360360608110156102f857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610cca565b6102d0610d4e565b610335610d72565b6040805160ff9092168252519081900360200190f35b6102d0610d7b565b6102d0610d81565b61027f6004803603604081101561037157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610d87565b6102c6600480360360408110156103aa57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610de7565b6102c6600480360360208110156103e357600080fd5b5035610e7b565b6102c6610f0b565b6101d1610fc7565b6102c6600480360360a081101561041057600080fd5b8135919081019060408101602082013564010000000081111561043257600080fd5b82018360208201111561044457600080fd5b8035906020019184600183028401116401000000008311171561046657600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156104b957600080fd5b8201836020820111156104cb57600080fd5b803590602001918460018302840111640100000000831117156104ed57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561054057600080fd5b82018360208201111561055257600080fd5b8035906020019184600183028401116401000000008311171561057457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506110739050565b6102c6600480360360c08110156105d057600080fd5b81359173ffffffffffffffffffffffffffffffffffffffff6020820135169181019060608101604082013564010000000081111561060d57600080fd5b82018360208201111561061f57600080fd5b8035906020019184600183028401116401000000008311171561064157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561069457600080fd5b8201836020820111156106a657600080fd5b803590602001918460018302840111640100000000831117156106c857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561071b57600080fd5b82018360208201111561072d57600080fd5b8035906020019184600183028401116401000000008311171561074f57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506112919050565b6102d0600480360360208110156107ab57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166113fb565b6102d0600480360360208110156107de57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611423565b610803611435565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6102c6600480360361010081101561084357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013590911690604081013590606081013590608081013515159060ff60a0820135169060c08101359060e00135611451565b6101d16117c8565b61027f600480360360408110156108b157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611847565b61027f600480360360408110156108ea57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356118bc565b6102c66004803603602081101561092357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661193e565b6102d06004803603604081101561095657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516611a5b565b610803611a93565b6102c66004803603602081101561099957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611aaf565b6102c6600480360360208110156109cc57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611c06565b60688054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a935780601f10610a6857610100808354040283529160200191610a93565b820191906000526020600020905b815481529060010190602001808311610a7657829003601f168201915b5050505050905090565b6000610ab1610aaa611cdb565b8484611cdf565b50600192915050565b609a5473ffffffffffffffffffffffffffffffffffffffff163314610b4057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166000908152609c602052604090205460ff1615610bbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612ef8602a913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8116610c0c5760405133904780156108fc02916000818181858888f19350505050158015610c06573d6000803e3d6000fd5b50610cc1565b610cc1338273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610c7757600080fd5b505afa158015610c8b573d6000803e3d6000fd5b505050506040513d6020811015610ca157600080fd5b505173ffffffffffffffffffffffffffffffffffffffff84169190611e26565b50565b60675490565b600073ffffffffffffffffffffffffffffffffffffffff8316301415610d3b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806130b46038913960400191505060405180910390fd5b610d46848484611eb8565b949350505050565b7fea2aa0a1be11a07ed86d755c93467f4f82362b452371d1ba94d1715123511acb81565b606a5460ff1690565b609d5481565b60995481565b6000610ab1610d94611cdb565b84610de28560666000610da5611cdb565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490611f54565b611cdf565b609a5473ffffffffffffffffffffffffffffffffffffffff163314610e6d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610e778282611fc8565b5050565b609a5473ffffffffffffffffffffffffffffffffffffffff163314610f0157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610cc133826120fb565b609b5473ffffffffffffffffffffffffffffffffffffffff163314610f7b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612fe0602a913960400191505060405180910390fd5b609b54610f9d9073ffffffffffffffffffffffffffffffffffffffff16612245565b609b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b6098805460408051602060026001851615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f8101849004840282018401909252818152929183018282801561106b5780601f106110405761010080835404028352916020019161106b565b820191906000526020600020905b81548152906001019060200180831161104e57829003601f168201915b505050505081565b600054610100900460ff168061108c575061108c6122d3565b8061109a575060005460ff16155b6110ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612f91602e913960400191505060405180910390fd5b600054610100900460ff1615801561115557600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b61115f84846122d9565b61116882612400565b845161117b906098906020880190612dfd565b507f4771e259cc52e342be37df42506473f4042cb91fdf5c67782c2c45ed51b98beb6111a56109e9565b80519060200120609860405180828054600181600116156101000203166002900480156112095780601f106111e7576101008083540402835291820191611209565b820191906000526020600020905b8154815290600101906020018083116111f5575b505060408051918290038220602080840197909752828201959095526060820194909452608081018b90523060a0808301919091528451808303909101815260c090910190935250508051910120609955801561128957600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b505050505050565b600054610100900460ff16806112aa57506112aa6122d3565b806112b8575060005460ff16155b61130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612f91602e913960400191505060405180910390fd5b600054610100900460ff1615801561137357600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b61137d84846122d9565b61138682612400565b6113938786868686611073565b61139c8661193e565b6113c3336113be686c6b935b8bbd400000609d5461243490919063ffffffff16565b611fc8565b80156113f257600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff1660009081526065602052604090205490565b60976020526000908152604090205481565b609a5473ffffffffffffffffffffffffffffffffffffffff1690565b609954604080517fea2aa0a1be11a07ed86d755c93467f4f82362b452371d1ba94d1715123511acb60208083019190915273ffffffffffffffffffffffffffffffffffffffff808d16838501819052908c166060840152608083018b905260a083018a905288151560c0808501919091528451808503909101815260e0840185528051908301207f190100000000000000000000000000000000000000000000000000000000000061010085015261010284019590955261012280840195909552835180840390950185526101429092019092528251929091019190912090611585576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806131116026913960400191505060405180910390fd5b60018185858560405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156115df573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161461168257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f455243323057697468526174653a20696e76616c6964207369676e6174757265604482015290519081900360640190fd5b85158061168f5750854211155b6116e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612f486021913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff89166000908152609760205260409020805460018101909155871461177f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f455243323057697468526174653a20696e76616c6964206e6f6e636500000000604482015290519081900360640190fd5b60008561178d5760006117af565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b90506117bc8a8a83611cdf565b50505050505050505050565b60698054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a935780601f10610a6857610100808354040283529160200191610a93565b6000610ab1611854611cdb565b84610de2856040518060600160405280602581526020016130ec602591396066600061187e611cdb565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190612472565b600073ffffffffffffffffffffffffffffffffffffffff831630141561192d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806130536037913960400191505060405180910390fd5b6119378383612523565b9392505050565b600054610100900460ff168061195757506119576122d3565b80611965575060005460ff16155b6119ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612f91602e913960400191505060405180910390fd5b600054610100900460ff16158015611a2057600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b611a2982612537565b8015610e7757600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260666020908152604080832093909416825291909152205490565b609b5473ffffffffffffffffffffffffffffffffffffffff1681565b609a5473ffffffffffffffffffffffffffffffffffffffff163314611b3557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b609b5473ffffffffffffffffffffffffffffffffffffffff82811691161415611bbf57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f436c61696d61626c653a20696e76616c6964206e6577206f776e657200000000604482015290519081900360640190fd5b609b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b609a5473ffffffffffffffffffffffffffffffffffffffff163314611c8c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff166000908152609c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316611d4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061302f6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612ed66022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260666020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052611eb390849061268b565b505050565b6000611ec58484846128cf565b611f4a84611ed1611cdb565b610de285604051806060016040528060288152602001612f696028913973ffffffffffffffffffffffffffffffffffffffff8a16600090815260666020526040812090611f1c611cdb565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190612472565b5060019392505050565b60008282018381101561193757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff821661204a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61205660008383612aa1565b6067546120639082611f54565b60675573ffffffffffffffffffffffffffffffffffffffff82166000908152606560205260409020546120969082611f54565b73ffffffffffffffffffffffffffffffffffffffff831660008181526065602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff8216612167576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612fbf6021913960400191505060405180910390fd5b61217382600083612aa1565b6121bd81604051806060016040528060228152602001612eb46022913973ffffffffffffffffffffffffffffffffffffffff85166000908152606560205260409020549190612472565b73ffffffffffffffffffffffffffffffffffffffff83166000908152606560205260409020556067546121f09082612434565b60675560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b609a5460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3609a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b303b1590565b600054610100900460ff16806122f257506122f26122d3565b80612300575060005460ff16155b612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612f91602e913960400191505060405180910390fd5b600054610100900460ff161580156123bb57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b6123c3612b49565b6123cd8383612c5c565b8015611eb357600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055505050565b606a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660ff92909216919091179055565b600061193783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152505b6000818484111561251b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124e05781810151838201526020016124c8565b50505050905090810190601f16801561250d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000610ab1612530611cdb565b84846128cf565b600054610100900460ff168061255057506125506122d3565b8061255e575060005460ff16155b6125b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612f91602e913960400191505060405180910390fd5b600054610100900460ff1615801561261957600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b609a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84161790558015610e7757600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050565b6126aa8273ffffffffffffffffffffffffffffffffffffffff16612dc4565b61271557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b6020831061277e57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101612741565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146127e0576040519150601f19603f3d011682016040523d82523d6000602084013e6127e5565b606091505b50915091508161285657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156128c95780806020019051602081101561287257600080fd5b50516128c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061308a602a913960400191505060405180910390fd5b50505050565b73ffffffffffffffffffffffffffffffffffffffff831661293b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061300a6025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166129a7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612e916023913960400191505060405180910390fd5b6129b2838383612aa1565b6129fc81604051806060016040528060268152602001612f226026913973ffffffffffffffffffffffffffffffffffffffff86166000908152606560205260409020549190612472565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152606560205260408082209390935590841681522054612a389082611f54565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526065602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b612aac838383611eb3565b73ffffffffffffffffffffffffffffffffffffffff8316611eb357609d54612adc82612ad6610cc4565b90611f54565b1115611eb357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b600054610100900460ff1680612b625750612b626122d3565b80612b70575060005460ff16155b612bc5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612f91602e913960400191505060405180910390fd5b600054610100900460ff16158015612c2b57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b8015610cc157600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550565b600054610100900460ff1680612c755750612c756122d3565b80612c83575060005460ff16155b612cd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180612f91602e913960400191505060405180910390fd5b600054610100900460ff16158015612d3e57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b8251612d51906068906020860190612dfd565b508151612d65906069906020850190612dfd565b50606a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660121790558015611eb357600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590610d46575050151592915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612e3e57805160ff1916838001178555612e6b565b82800160010185558215612e6b579182015b82811115612e6b578251825591602001919060010190612e50565b50612e77929150612e7b565b5090565b5b80821115612e775760008155600101612e7c56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737343616e5265636c61696d546f6b656e733a20746f6b656e206973206e6f74207265636f76657261626c6545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365455243323057697468526174653a207065726d697420686173206578706972656445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e2066726f6d20746865207a65726f2061646472657373436c61696d61626c653a2063616c6c6572206973206e6f74207468652070656e64696e67206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373424541524e20455243323055706772616465536166653a2063616e2774207472616e7366657220746f20746f6b656e20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564424541524e20455243323055706772616465536166653a2063616e2774207472616e7366657220746f2073746f6b656e206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f455243323057697468526174653a2061646472657373206d757374206e6f7420626520307830a2646970667358221220f83cae558d85f3448643db82473d7f73bf1d789950d4092a302c3208743bc3eb64736f6c634300060c0033

Deployed Bytecode Sourcemap

38041:2113:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19498:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21604:169;;;;;;;;;;;;;;;;-1:-1:-1;21604:169:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;37079:478;;;;;;;;;;;;;;;;-1:-1:-1;37079:478:0;;;;:::i;:::-;;20573:100;;;:::i;:::-;;;;;;;;;;;;;;;;39335:315;;;;;;;;;;;;;;;;-1:-1:-1;39335:315:0;;;;;;;;;;;;;;;;;;:::i;28877:108::-;;;:::i;20425:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38122:29;;;:::i;28692:31::-;;;:::i;22977:218::-;;;;;;;;;;;;;;;;-1:-1:-1;22977:218:0;;;;;;;;;:::i;38801:98::-;;;;;;;;;;;;;;;;-1:-1:-1;38801:98:0;;;;;;;;;:::i;38945:92::-;;;;;;;;;;;;;;;;-1:-1:-1;38945:92:0;;:::i;36358:131::-;;;:::i;28630:21::-;;;:::i;28994:690::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28994:690:0;;;;;;;;-1:-1:-1;28994:690:0;;-1:-1:-1;;28994:690:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28994:690:0;;;;;;;;-1:-1:-1;28994:690:0;;-1:-1:-1;;28994:690:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28994:690:0;;-1:-1:-1;;;28994:690:0;;;;;-1:-1:-1;28994:690:0;;-1:-1:-1;28994:690:0:i;38160:595::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38160:595:0;;;;;;;;-1:-1:-1;38160:595:0;;-1:-1:-1;;38160:595:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38160:595:0;;;;;;;;-1:-1:-1;38160:595:0;;-1:-1:-1;;38160:595:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38160:595:0;;-1:-1:-1;;;38160:595:0;;;;;-1:-1:-1;38160:595:0;;-1:-1:-1;38160:595:0:i;20736:119::-;;;;;;;;;;;;;;;;-1:-1:-1;20736:119:0;;;;:::i;28448:38::-;;;;;;;;;;;;;;;;-1:-1:-1;28448:38:0;;;;:::i;35204:79::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29729:1187;;;;;;;;;;;;;;;;-1:-1:-1;29729:1187:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;19700:87::-;;;:::i;23698:269::-;;;;;;;;;;;;;;;;-1:-1:-1;23698:269:0;;;;;;;;;:::i;39045:282::-;;;;;;;;;;;;;;;;-1:-1:-1;39045:282:0;;;;;;;;;:::i;36655:119::-;;;;;;;;;;;;;;;;-1:-1:-1;36655:119:0;;;;:::i;21306:151::-;;;;;;;;;;;;;;;;-1:-1:-1;21306:151:0;;;;;;;;;;;:::i;34890:27::-;;;:::i;35833:217::-;;;;;;;;;;;;;;;;-1:-1:-1;35833:217:0;;;;:::i;36782:128::-;;;;;;;;;;;;;;;;-1:-1:-1;36782:128:0;;;;:::i;19498:83::-;19568:5;19561:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19535:13;;19561:12;;19568:5;;19561:12;;19568:5;19561:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19498:83;:::o;21604:169::-;21687:4;21704:39;21713:12;:10;:12::i;:::-;21727:7;21736:6;21704:8;:39::i;:::-;-1:-1:-1;21761:4:0;21604:169;;;;:::o;37079:478::-;35416:6;;:20;:6;35426:10;35416:20;35408:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37171:34:::1;::::0;::::1;;::::0;;;:26:::1;:34;::::0;;;;;::::1;;37170:35;37148:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37292:22;::::0;::::1;37288:262;;37331:42;::::0;:10:::1;::::0;37351:21:::1;37331:42:::0;::::1;;;::::0;::::1;::::0;;;37351:21;37331:10;:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;37288:262;;;37406:132;37462:10;37491:6;37474:34;;;37517:4;37474:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;37474:49:0;37406:37:::1;::::0;::::1;::::0;:132;:37:::1;:132::i;:::-;37079:478:::0;:::o;20573:100::-;20653:12;;20573:100;:::o;39335:315::-;39430:4;39469:26;;;39490:4;39469:26;;39447:132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39597:45;39616:6;39624:9;39635:6;39597:18;:45::i;:::-;39590:52;39335:315;-1:-1:-1;;;;39335:315:0:o;28877:108::-;28919:66;28877:108;:::o;20425:83::-;20491:9;;;;20425:83;:::o;38122:29::-;;;;:::o;28692:31::-;;;;:::o;22977:218::-;23065:4;23082:83;23091:12;:10;:12::i;:::-;23105:7;23114:50;23153:10;23114:11;:25;23126:12;:10;:12::i;:::-;23114:25;;;;;;;;;;;;;;;;;;-1:-1:-1;23114:25:0;;;:34;;;;;;;;;;;:38;:50::i;:::-;23082:8;:83::i;38801:98::-;35416:6;;:20;:6;35426:10;35416:20;35408:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38872:19:::1;38878:3;38883:7;38872:5;:19::i;:::-;38801:98:::0;;:::o;38945:92::-;35416:6;;:20;:6;35426:10;35416:20;35408:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39003:26:::1;39009:10;39021:7;39003:5;:26::i;36358:131::-:0;35576:12;;;;35562:10;:26;35540:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36438:12:::1;::::0;36419:32:::1;::::0;36438:12:::1;;36419:18;:32::i;:::-;36469:12;36462:19:::0;;;::::1;::::0;;36358:131::o;28630:21::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28994:690::-;4180:12;;;;;;;;:31;;;4196:15;:13;:15::i;:::-;4180:47;;;-1:-1:-1;4216:11:0;;;;4215:12;4180:47;4172:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4287:19;4310:12;;;;;;4309:13;4329:83;;;;4358:12;:19;;4386:18;4358:19;;;;;;4386:18;4373:4;4386:18;;;4329:83;29196:28:::1;29209:5;29216:7;29196:12;:28::i;:::-;29235:25;29250:9;29235:14;:25::i;:::-;29271:18:::0;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;29372:132;29539:6;:4;:6::i;:::-;29523:24;;;;;;29582:7;29566:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;29566:25:0::1;::::0;;;;;::::1;::::0;;29343:322:::1;::::0;;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;;29645:4:::1;29343:322:::0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;29319:357:0;;;::::1;::::0;29300:16:::1;:376:::0;4430:57;;;;4474:5;4459:20;;;;;;4430:57;28994:690;;;;;;:::o;38160:595::-;4180:12;;;;;;;;:31;;;4196:15;:13;:15::i;:::-;4180:47;;;-1:-1:-1;4216:11:0;;;;4215:12;4180:47;4172:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4287:19;4310:12;;;;;;4309:13;4329:83;;;;4358:12;:19;;4386:18;4358:19;;;;;;4386:18;4373:4;4386:18;;;4329:83;38391:28:::1;38404:5;38411:7;38391:12;:28::i;:::-;38430:25;38445:9;38430:14;:25::i;:::-;38466:149;38507:8;38530;38553:5;38573:7;38595:9;38466:26;:149::i;:::-;38626:39;38654:10;38626:27;:39::i;:::-;38676:38;38682:10;38694:19;38702:10;38694:3;;:7;;:19;;;;:::i;:::-;38676:5;:38::i;:::-;4434:14:::0;4430:57;;;4474:5;4459:20;;;;;;4430:57;38160:595;;;;;;;:::o;20736:119::-;20829:18;;20802:7;20829:18;;;:9;:18;;;;;;;20736:119::o;28448:38::-;;;;;;;;;;;;;:::o;35204:79::-;35269:6;;;;35204:79;:::o;29729:1187::-;30052:16;;30119:241;;;28919:66;30119:241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30087:292;;;;;;29988:406;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29964:441;;;;;;;;;;;30418:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30532:26;30542:6;30550:1;30553;30556;30532:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30522:36;;:6;:36;;;30500:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30651:11;;;:28;;;30673:6;30666:3;:13;;30651:28;30629:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30768:14;;;;;;;:6;:14;;;;;:16;;;;;;;;30759:25;;30751:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30828:11;30842:7;:22;;30863:1;30842:22;;;30857:2;30842:22;30828:36;;30875:33;30884:6;30892:7;30901:6;30875:8;:33::i;:::-;29729:1187;;;;;;;;;;:::o;19700:87::-;19772:7;19765:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19739:13;;19765:14;;19772:7;;19765:14;;19772:7;19765:14;;;;;;;;;;;;;;;;;;;;;;;;23698:269;23791:4;23808:129;23817:12;:10;:12::i;:::-;23831:7;23840:96;23879:15;23840:96;;;;;;;;;;;;;;;;;:11;:25;23852:12;:10;:12::i;:::-;23840:25;;;;;;;;;;;;;;;;;;-1:-1:-1;23840:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;39045:282::-;39120:4;39159:26;;;39180:4;39159:26;;39137:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39286:33;39301:9;39312:6;39286:14;:33::i;:::-;39279:40;39045:282;-1:-1:-1;;;39045:282:0:o;36655:119::-;4180:12;;;;;;;;:31;;;4196:15;:13;:15::i;:::-;4180:47;;;-1:-1:-1;4216:11:0;;;;4215:12;4180:47;4172:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4287:19;4310:12;;;;;;4309:13;4329:83;;;;4358:12;:19;;4386:18;4358:19;;;;;;4386:18;4373:4;4386:18;;;4329:83;36734:32:::1;36755:10;36734:20;:32::i;:::-;4434:14:::0;4430:57;;;4474:5;4459:20;;;;;;36655:119;;:::o;21306:151::-;21422:18;;;;21395:7;21422:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21306:151::o;34890:27::-;;;;;;:::o;35833:217::-;35416:6;;:20;:6;35426:10;35416:20;35408:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35940:12:::1;::::0;::::1;35928:24:::0;;::::1;35940:12:::0;::::1;35928:24;;35906:102;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;36019:12;:23:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;35833:217::o;36782:128::-;35416:6;;:20;:6;35426:10;35416:20;35408:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36861:34:::1;;;::::0;;;:26:::1;:34;::::0;;;;:41;;;::::1;36898:4;36861:41;::::0;;36782:128::o;6103:106::-;6191:10;6103:106;:::o;26845:346::-;26947:19;;;26939:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27026:21;;;27018:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27099:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;27151:32;;;;;;;;;;;;;;;;;26845:346;;;:::o;31481:177::-;31591:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31614:23;31591:58;;;31564:86;;31584:5;;31564:19;:86::i;:::-;31481:177;;;:::o;22247:321::-;22353:4;22370:36;22380:6;22388:9;22399:6;22370:9;:36::i;:::-;22417:121;22426:6;22434:12;:10;:12::i;:::-;22448:89;22486:6;22448:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;22468:12;:10;:12::i;:::-;22448:33;;;;;;;;;;;;;-1:-1:-1;22448:33:0;;;:89;:37;:89::i;22417:121::-;-1:-1:-1;22556:4:0;22247:321;;;;;:::o;10036:181::-;10094:7;10126:5;;;10150:6;;;;10142:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25277:378;25361:21;;;25353:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25431:49;25460:1;25464:7;25473:6;25431:20;:49::i;:::-;25508:12;;:24;;25525:6;25508:16;:24::i;:::-;25493:12;:39;25564:18;;;;;;;:9;:18;;;;;;:30;;25587:6;25564:22;:30::i;:::-;25543:18;;;;;;;:9;:18;;;;;;;;:51;;;;25610:37;;;;;;;25543:18;;;;25610:37;;;;;;;;;;25277:378;;:::o;25987:418::-;26071:21;;;26063:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26143:49;26164:7;26181:1;26185:6;26143:20;:49::i;:::-;26226:68;26249:6;26226:68;;;;;;;;;;;;;;;;;:18;;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;26205:18;;;;;;;:9;:18;;;;;:89;26320:12;;:24;;26337:6;26320:16;:24::i;:::-;26305:12;:39;26360:37;;;;;;;;26386:1;;26360:37;;;;;;;;;;;;;25987:418;;:::o;36205:145::-;36297:6;;36276:38;;;;;;;36297:6;;36276:38;;36297:6;;36276:38;36325:6;:17;;;;;;;;;;;;;;;36205:145::o;4581:508::-;4998:4;5044:17;5076:7;4581:508;:::o;19057:177::-;4180:12;;;;;;;;:31;;;4196:15;:13;:15::i;:::-;4180:47;;;-1:-1:-1;4216:11:0;;;;4215:12;4180:47;4172:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4287:19;4310:12;;;;;;4309:13;4329:83;;;;4358:12;:19;;4386:18;4358:19;;;;;;4386:18;4373:4;4386:18;;;4329:83;19153:26:::1;:24;:26::i;:::-;19190:36;19213:4;19219:6;19190:22;:36::i;:::-;4434:14:::0;4430:57;;;4474:5;4459:20;;;;;;19057:177;;;:::o;27523:90::-;27584:9;:21;;;;;;;;;;;;;;;27523:90::o;10492:136::-;10550:7;10577:43;10581:1;10584;10577:43;;;;;;;;;;;;;;;;;10923:192;11009:7;11045:12;11037:6;;;;11029:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11081:5:0;;;10923:192::o;21068:175::-;21154:4;21171:42;21181:12;:10;:12::i;:::-;21195:9;21206:6;21171:9;:42::i;35018:105::-;4180:12;;;;;;;;:31;;;4196:15;:13;:15::i;:::-;4180:47;;;-1:-1:-1;4216:11:0;;;;4215:12;4180:47;4172:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4287:19;4310:12;;;;;;4309:13;4329:83;;;;4358:12;:19;;4386:18;4358:19;;;;;;4386:18;4373:4;4386:18;;;4329:83;35096:6:::1;:19:::0;;;::::1;;::::0;::::1;;::::0;;4430:57;;;;4474:5;4459:20;;;;;;35018:105;;:::o;33525:1115::-;34130:27;34138:5;34130:25;;;:27::i;:::-;34122:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34267:12;34281:23;34316:5;34308:19;;34328:4;34308:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34266:67;;;;34352:7;34344:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34413:17;;:21;34409:224;;34555:10;34544:30;;;;;;;;;;;;;;;-1:-1:-1;34544:30:0;34536:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33525:1115;;;;:::o;24457:539::-;24563:20;;;24555:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24644:23;;;24636:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24720:47;24741:6;24749:9;24760:6;24720:20;:47::i;:::-;24800:71;24822:6;24800:71;;;;;;;;;;;;;;;;;:17;;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;24780:17;;;;;;;;:9;:17;;;;;;:91;;;;24905:20;;;;;;;:32;;24930:6;24905:24;:32::i;:::-;24882:20;;;;;;;;:9;:20;;;;;;;;;:55;;;;24953:35;;;;;;;24882:20;;24953:35;;;;;;;;;;;;;24457:539;;;:::o;39837:314::-;39943:44;39970:4;39976:2;39980:6;39943:26;:44::i;:::-;40004:18;;;40000:144;;40099:3;;40070:25;40088:6;40070:13;:11;:13::i;:::-;:17;;:25::i;:::-;:32;;40062:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6024:69;4180:12;;;;;;;;:31;;;4196:15;:13;:15::i;:::-;4180:47;;;-1:-1:-1;4216:11:0;;;;4215:12;4180:47;4172:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4287:19;4310:12;;;;;;4309:13;4329:83;;;;4358:12;:19;;4386:18;4358:19;;;;;;4386:18;4373:4;4386:18;;;4329:83;4434:14;4430:57;;;4474:5;4459:20;;;;;;6024:69;:::o;19242:184::-;4180:12;;;;;;;;:31;;;4196:15;:13;:15::i;:::-;4180:47;;;-1:-1:-1;4216:11:0;;;;4215:12;4180:47;4172:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4287:19;4310:12;;;;;;4309:13;4329:83;;;;4358:12;:19;;4386:18;4358:19;;;;;;4386:18;4373:4;4386:18;;;4329:83;19352:12;;::::1;::::0;:5:::1;::::0;:12:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;19375:16:0;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;19402:9:0::1;:14:::0;;;::::1;19414:2;19402:14;::::0;;4430:57;;;;4474:5;4459:20;;;;;;19242:184;;;:::o;15188:619::-;15248:4;15716:20;;15559:66;15756:23;;;;;;:42;;-1:-1:-1;;15783:15:0;;;15748:51;-1:-1:-1;;15188:619:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;

Swarm Source

ipfs://f83cae558d85f3448643db82473d7f73bf1d789950d4092a302c3208743bc3eb
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.