ETH Price: $3,415.72 (-2.42%)
Gas: 8 Gwei

Token

EarnableFi (EFI)
 

Overview

Max Total Supply

30,000,000,000 EFI

Holders

133

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
34,296,160.113956580463565463 EFI

Value
$0.00
0x5c2f72d1ad0ab5bedc1b44c964447a2a6929f6c3
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
EarnableFi

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-26
*/

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


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



pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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


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



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * 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).
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

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


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



pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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


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



pragma solidity ^0.8.0;

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

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

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


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



pragma solidity ^0.8.0;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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


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



pragma solidity ^0.8.0;

/**
 * @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) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @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 Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


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



pragma solidity ^0.8.0;


/**
 * @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 IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    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));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    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) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _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. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "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");
        }
    }
}


// File contracts/interfaces/IUniswapRouter01.sol


pragma solidity >=0.8.0;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}


// File contracts/interfaces/IUniswapRouter02.sol


pragma solidity >=0.8.0;
interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}


// File contracts/interfaces/IUniswapV2Factory.sol


pragma solidity >=0.8.0;

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setReflectionFeeTo(address) external;

    function setReflectionFeeToSetter(address) external;
}


// File contracts/EarnableFi.sol


pragma solidity >=0.8.0;

contract EarnableFi is ERC20('EarnableFi', 'EFI'), Ownable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    uint256 constant public MAX_SUPPLY = 30000000000 * 1e18;  // 30B max supply

    uint16 private MAX_BP_RATE = 10000;
    uint16 private devTaxRate = 300;
    uint16 private marketingTaxRate = 500;
    uint16 private burnTaxRate = 400;
    uint16 private passiveIncomeRewardTaxRate = 700;
    uint16 private maxTransferAmountRate = 1000;

    uint256 public minAmountToSwap = 1000000000 * 1e18;    // 10% of total supply
    uint256 public totalDividends;  // dividend balance in balanceOf(address(this))
    uint256 public increasedDividends; // dividend amount so far

    IUniswapV2Router02 public uniswapRouter;
    // The trading pair
    address public uniswapPair;

    address public feeRecipient = 0x9489Af121660de8c644C981f71dF2c61C205f4Ca;

    // In swap and withdraw
    bool private _inSwapAndWithdraw;
    // The operator can only update the transfer tax rate
    address private _operator;
    // Automatic swap and liquify enabled
    bool public swapAndWithdrawEnabled = false;

    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _isExcludedFromMaxTx;

    bool private _tradingOpen = false;

    string public website = "https://earnablefi.com";
    string public telegram = "https://t.me/earnablefiportal";

    struct CoinTypeInfo {
        address coinAddress;
        address[] routerPath;
    }

    mapping(address => uint256) public claimed; // claimed amount by user
    mapping(address => uint256) public dividendsWhenClaim;  // dividend amount when user are claiming

    CoinTypeInfo[] public coins;

    modifier onlyOperator() {
        require(_operator == msg.sender, "!operator");
        _;
    }

    modifier lockTheSwap {
        _inSwapAndWithdraw = true;
        _;
        _inSwapAndWithdraw = false;
    }

    modifier transferTaxFree {
        uint16 _devTaxRate = devTaxRate;
        uint16 _marketingTaxRate = marketingTaxRate;
        uint16 _passiveIncomeRewardTaxRate = passiveIncomeRewardTaxRate;
        devTaxRate = 0;
        marketingTaxRate = 0;
        passiveIncomeRewardTaxRate = 0;
        _;
        devTaxRate = _devTaxRate;
        marketingTaxRate = _marketingTaxRate;
        passiveIncomeRewardTaxRate = _passiveIncomeRewardTaxRate;
    }

    constructor() public {
        _operator = msg.sender;
        _mint(msg.sender, MAX_SUPPLY);

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        // Create a uniswap pair for this new token
        uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapRouter = _uniswapV2Router;

        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromMaxTx[address(this)] = true;
        _isExcludedFromMaxTx[msg.sender] = true;
    }

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

    /// @notice Burns `_amount` token fromo `_from`. Must only be called by the owner.
    function burn(address _from, uint256 _amount) public onlyOwner {
        _burn(_from, _amount);
    }

    function _transfer(address _sender, address _recepient, uint256 _amount) internal override {
        require(_tradingOpen || _sender == owner() || _recepient == owner() || _sender == address(uniswapRouter), "!tradable");

        // swap and withdraw
        if (
            swapAndWithdrawEnabled == true
            && _inSwapAndWithdraw == false
            && address(uniswapRouter) != address(0)
            && uniswapPair != address(0)
            && _sender != uniswapPair
            && _sender != address(uniswapRouter)
            && _sender != owner()
            && _sender != address(this)
        ) {
            swapAndWithdraw();
        }

        if (!_isExcludedFromMaxTx[_sender]) {
            require(_amount <= maxTransferAmount(), 'exceed max tx amount');
        }

        if (_isExcludedFromFee[_sender]) {
            super._transfer(_sender, _recepient, _amount);
        } else {
            uint256 devFee = _amount.mul(devTaxRate).div(MAX_BP_RATE);
            uint256 marketingFee = _amount.mul(marketingTaxRate).div(MAX_BP_RATE);
            uint256 passiveIncomeRewardFee = _amount.mul(passiveIncomeRewardTaxRate).div(MAX_BP_RATE);
            _amount = _amount.sub(devFee).sub(marketingFee).sub(passiveIncomeRewardFee);

            super._transfer(_sender, _recepient, _amount);
            super._transfer(_sender, address(this), devFee);
            super._transfer(_sender, address(this), marketingFee);
            super._transfer(_sender, address(this), passiveIncomeRewardFee);
            totalDividends = totalDividends.add(passiveIncomeRewardFee);
            increasedDividends = increasedDividends.add(passiveIncomeRewardFee);
        }
    }

    /**
     * @dev Transfers operator of the contract to a new account (`newOperator`).
     * Can only be called by the current operator.
     */
    function transferOperator(address newOperator) public onlyOperator {
        require(newOperator != address(0));
        _operator = newOperator;
    }

    /**
     * @dev Update the swap router.
     * Can only be called by the current operator.
     */
    function updatePancakeRouter(address _router) public onlyOperator {
        uniswapRouter = IUniswapV2Router02(_router);
        uniswapPair = IUniswapV2Factory(uniswapRouter.factory()).getPair(address(this), uniswapRouter.WETH());
        require(uniswapPair != address(0));
    }

    /**
     * @dev Update the swapAndWithdrawEnabled.
     * Can only be called by the current operator.
     */
    function updateSwapAndLiquifyEnabled(bool _enabled) public onlyOperator {
        swapAndWithdrawEnabled = _enabled;
    }

    function manualSwap() external onlyOperator {
        swapAndWithdraw();
    }

    function manualWithdraw() external onlyOperator {
        uint256 bal = address(this).balance;
        payable(feeRecipient).transfer(bal);
    }

    /// @dev Swap and liquify
    function swapAndWithdraw() private lockTheSwap transferTaxFree {
        uint256 contractTokenBalance = balanceOf(address(this));
        if (contractTokenBalance > totalDividends) {
            contractTokenBalance = contractTokenBalance.sub(totalDividends);
            // swap tokens for ETH
            swapTokensForEth(contractTokenBalance);

            uint256 bal = address(this).balance;
            payable(feeRecipient).transfer(bal);
        }
    }

    /// @dev Swap tokens for eth
    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the pantherSwap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();

        _approve(address(this), address(uniswapRouter), tokenAmount);

        // make the swap
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp + 1 days
        );
    }

    /**
     * @dev Returns the max transfer amount.
     */
    function maxTransferAmount() public view returns (uint256) {
        return totalSupply().mul(maxTransferAmountRate).div(MAX_BP_RATE);
    }

    function updateFees(uint16 _passiveIncomeRate, uint16 _devTaxRate, uint16 _marketingTaxRate) external onlyOwner {
        require(_passiveIncomeRate + _devTaxRate + _marketingTaxRate <= MAX_BP_RATE, '!values');
        passiveIncomeRewardTaxRate = _passiveIncomeRate;
        devTaxRate = _devTaxRate;
        marketingTaxRate = _marketingTaxRate;
    }

    function setMaxTransferAmountRate(uint16 _maxTransferAmountRate) external onlyOwner {
        require(_maxTransferAmountRate <= MAX_BP_RATE);
        maxTransferAmountRate = _maxTransferAmountRate;
    }

    function openTrading() external onlyOwner {
        _tradingOpen = true;
        swapAndWithdrawEnabled = true;
        maxTransferAmountRate = MAX_BP_RATE;
    }

    function isExcludedFromFee(address _addr) external view returns (bool) {
        return _isExcludedFromFee[_addr];
    }

    function excludeFromFee(address _addr, bool _is) external onlyOperator {
        _isExcludedFromFee[_addr] = _is;
    }

    function isExcludedFromMaxTx(address _addr) external view returns (bool) {
        return _isExcludedFromMaxTx[_addr];
    }

    function excludeFromMaxTx(address _addr, bool _is) external onlyOperator {
        _isExcludedFromMaxTx[_addr] = _is;
    }

    function withdrawDividends(uint16 _cId) external {
        if (totalDividends <= balanceOf(address(this))) {
            uint256 withdrawable = withdrawableDividends(msg.sender);
            require(withdrawable > 0, "not enough to claim");
            CoinTypeInfo storage coin = coins[_cId];
            if (_cId == 0) { // if withdrawing token, reinvest
                transfer(msg.sender, withdrawable);
            } else if (_cId == 1) { // if withdrawing ETH
                _approve(address(this), address(uniswapRouter), withdrawable);
                uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(withdrawable, 0, coin.routerPath, msg.sender, block.timestamp.add(300));
            } else { // if withdrawing other coins
                _approve(address(this), address(uniswapRouter), withdrawable);
                uniswapRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens(withdrawable, 0, coin.routerPath, msg.sender, block.timestamp.add(300));
            }
            claimed[msg.sender] = claimed[msg.sender].add(withdrawable);
            dividendsWhenClaim[msg.sender] = increasedDividends;
            totalDividends = totalDividends.sub(withdrawable);
        }
    }

    function withdrawableDividends(address _user) public view returns (uint256) {
        uint256 holdingAmount = balanceOf(_user);
        uint256 soldAmount = tokenAmountSold();
        if (soldAmount == 0) {
            return 0;
        }

        uint256 availableAmount = increasedDividends.sub(dividendsWhenClaim[_user]);

        if (availableAmount > 0) {
            uint256 brut = availableAmount.mul(holdingAmount).div(soldAmount);

            if (brut > totalDividends) {
                return totalDividends;
            } else {
                return brut;
            }
        }
        return 0;
    }

    function tokenAmountSold() private view returns (uint256) {
        uint256 tokenBalanceInLp = balanceOf(uniswapPair);
        uint256 soldAmount = totalSupply().sub(tokenBalanceInLp);
        return soldAmount;
    }

    function addCoinInfo(address[] memory _path, address _coinAddr) external onlyOperator {
        coins.push(CoinTypeInfo({
            coinAddress: _coinAddr,
            routerPath: _path
        }));
    }

    function updateCoinInfo(uint8 _cId, address[] memory _path, address _coinAddr) external onlyOperator {
        CoinTypeInfo storage coin = coins[_cId];
        coin.routerPath = _path;
        coin.coinAddress = _coinAddr;
    }

    mapping (address => address) internal _delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

      /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegator The address to get delegatee for
     */
    function delegates(address delegator)
        external
        view
        returns (address)
    {
        return _delegates[delegator];
    }

   /**
    * @notice Delegate votes from `msg.sender` to `delegatee`
    * @param delegatee The address to delegate votes to
    */
    function delegate(address delegatee) external {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(
        address delegatee,
        uint nonce,
        uint expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    )
        external
    {
        bytes32 domainSeparator = keccak256(
            abi.encode(
                DOMAIN_TYPEHASH,
                keccak256(bytes(name())),
                getChainId(),
                address(this)
            )
        );

        bytes32 structHash = keccak256(
            abi.encode(
                DELEGATION_TYPEHASH,
                delegatee,
                nonce,
                expiry
            )
        );

        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                domainSeparator,
                structHash
            )
        );

        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "MARS::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "MARS::delegateBySig: invalid nonce");
        require(block.timestamp <= expiry, "MARS::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account)
        external
        view
        returns (uint256)
    {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber)
        external
        view
        returns (uint256)
    {
        require(blockNumber < block.number, "MARS::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee)
        internal
    {
        address currentDelegate = _delegates[delegator];
        uint256 delegatorBalance = balanceOf(delegator); // balance of underlying MARSs (not scaled);
        _delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                // decrease old representative
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = srcRepOld.sub(amount);
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                // increase new representative
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = dstRepOld.add(amount);
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(
        address delegatee,
        uint32 nCheckpoints,
        uint256 oldVotes,
        uint256 newVotes
    )
        internal
    {
        uint32 blockNumber = safe32(block.number, "MARS::_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function getChainId() internal view returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }

    //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","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":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_path","type":"address[]"},{"internalType":"address","name":"_coinAddr","type":"address"}],"name":"addCoinInfo","outputs":[],"stateMutability":"nonpayable","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":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"coins","outputs":[{"internalType":"address","name":"coinAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"dividendsWhenClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_is","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_is","type":"bool"}],"name":"excludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"increasedDividends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"isExcludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransferAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minAmountToSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxTransferAmountRate","type":"uint16"}],"name":"setMaxTransferAmountRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndWithdrawEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"telegram","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDividends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_cId","type":"uint8"},{"internalType":"address[]","name":"_path","type":"address[]"},{"internalType":"address","name":"_coinAddr","type":"address"}],"name":"updateCoinInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_passiveIncomeRate","type":"uint16"},{"internalType":"uint16","name":"_devTaxRate","type":"uint16"},{"internalType":"uint16","name":"_marketingTaxRate","type":"uint16"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"updatePancakeRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"updateSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"website","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_cId","type":"uint16"}],"name":"withdrawDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"withdrawableDividends","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600580546a3e802bc019001f4012c27160a41b6001600160a01b039091161790556b033b2e3c9fd0803ce8000000600655600b80546001600160a01b031916739489af121660de8c644c981f71df2c61c205f4ca179055600c805460ff60a01b19169055600f805460ff1916905560c0604052601660808190527f68747470733a2f2f6561726e61626c6566692e636f6d0000000000000000000060a0908152620000ae91601091906200050c565b5060408051808201909152601d8082527f68747470733a2f2f742e6d652f6561726e61626c656669706f7274616c0000006020909201918252620000f5916011916200050c565b503480156200010357600080fd5b506040518060400160405280600a8152602001694561726e61626c65466960b01b8152506040518060400160405280600381526020016245464960e81b81525081600390805190602001906200015b9291906200050c565b508051620001719060049060208401906200050c565b5050506000620001866200042060201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c80546001600160a01b0319163390811790915562000201906b60ef6b1aba6f07233000000062000424565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200025457600080fd5b505afa15801562000269573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028f9190620005b2565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002d857600080fd5b505afa158015620002ed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003139190620005b2565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200035c57600080fd5b505af115801562000371573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003979190620005b2565b600a80546001600160a01b039283166001600160a01b03199182161790915560098054939092169216919091179055306000818152600d60209081526040808320805460ff199081166001908117909255338086528386208054831684179055958552600e90935281842080548416821790559383529091208054909116909117905562000648565b3390565b6001600160a01b0382166200047f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620004939190620005e4565b90915550506001600160a01b03821660009081526020819052604081208054839290620004c2908490620005e4565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200051a906200060b565b90600052602060002090601f0160209004810192826200053e576000855562000589565b82601f106200055957805160ff191683800117855562000589565b8280016001018555821562000589579182015b82811115620005895782518255916020019190600101906200056c565b50620005979291506200059b565b5090565b5b808211156200059757600081556001016200059c565b600060208284031215620005c557600080fd5b81516001600160a01b0381168114620005dd57600080fd5b9392505050565b600082198211156200060657634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200062057607f821691505b602082108114156200064257634e487b7160e01b600052602260045260246000fd5b50919050565b61356b80620006586000396000f3fe60806040526004361061036e5760003560e01c8063782d6fe1116101c6578063c3cda520116100f7578063db90127e11610095578063df8408fe1161006f578063df8408fe14610a9b578063e7a324dc14610abb578063f1127ed814610aef578063f2fde38b14610b5357600080fd5b8063db90127e14610a1f578063dd62ed3e14610a3f578063dea0621014610a8557600080fd5b8063c884ef83116100d1578063c884ef831461099d578063c9567bf9146109ca578063d4c989d3146109df578063d880cd85146109ff57600080fd5b8063c3cda5201461093d578063c66106571461095d578063c816841b1461097d57600080fd5b80639f9a4e7f11610164578063a9059cbb1161013e578063a9059cbb146108d3578063a9e75723146108f3578063b4b5ea5714610908578063beb0a4161461092857600080fd5b80639f9a4e7f14610873578063a457c2d714610893578063a758046c146108b357600080fd5b80638da5cb5b116101a05780638da5cb5b1461080a57806395d89b4114610828578063997664d71461083d5780639dc29fac1461085357600080fd5b8063782d6fe11461079d5780637ecebe00146107bd578063859864aa146107ea57600080fd5b80634e8c9f90116102a057806362e546f91161023e5780636fcfff45116102185780636fcfff45146106ea57806370a0823114610732578063715018a614610768578063735de9f71461077d57600080fd5b806362e546f91461067c578063658c27a914610691578063670babe0146106ca57600080fd5b80635342acb41161027a5780635342acb4146105cc578063570ca73514610605578063587cde1e146106235780635c19a95c1461065c57600080fd5b80634e8c9f90146105775780635158ea1b1461059757806351bc3c85146105b757600080fd5b806329605e771161030d57806339509351116102e757806339509351146104dd57806346904840146104fd57806347ecb665146105355780634b418bc51461054a57600080fd5b806329605e771461047f578063313ce567146104a157806332cb6b0c146104bd57600080fd5b806313f43a571161034957806313f43a57146103f257806318160ddd1461041657806320606b701461042b57806323b872dd1461045f57600080fd5b8062dc12971461037a57806306fdde03146103b0578063095ea7b3146103d257600080fd5b3661037557005b600080fd5b34801561038657600080fd5b50600c5461039b90600160a01b900460ff1681565b60405190151581526020015b60405180910390f35b3480156103bc57600080fd5b506103c5610b73565b6040516103a791906131dc565b3480156103de57600080fd5b5061039b6103ed366004612fe4565b610c05565b3480156103fe57600080fd5b5061040860065481565b6040519081526020016103a7565b34801561042257600080fd5b50600254610408565b34801561043757600080fd5b506104087f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b34801561046b57600080fd5b5061039b61047a366004612f6e565b610c1c565b34801561048b57600080fd5b5061049f61049a366004612efb565b610cd2565b005b3480156104ad57600080fd5b50604051601281526020016103a7565b3480156104c957600080fd5b506104086b60ef6b1aba6f07233000000081565b3480156104e957600080fd5b5061039b6104f8366004612fe4565b610d31565b34801561050957600080fd5b50600b5461051d906001600160a01b031681565b6040516001600160a01b0390911681526020016103a7565b34801561054157600080fd5b506103c5610d68565b34801561055657600080fd5b50610408610565366004612efb565b60136020526000908152604090205481565b34801561058357600080fd5b5061049f610592366004613103565b610df6565b3480156105a357600080fd5b5061049f6105b2366004613103565b610e61565b3480156105c357600080fd5b5061049f611095565b3480156105d857600080fd5b5061039b6105e7366004612efb565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561061157600080fd5b50600c546001600160a01b031661051d565b34801561062f57600080fd5b5061051d61063e366004612efb565b6001600160a01b039081166000908152601560205260409020541690565b34801561066857600080fd5b5061049f610677366004612efb565b6110c9565b34801561068857600080fd5b5061049f6110d3565b34801561069d57600080fd5b5061039b6106ac366004612efb565b6001600160a01b03166000908152600e602052604090205460ff1690565b3480156106d657600080fd5b5061049f6106e536600461311e565b61113b565b3480156106f657600080fd5b5061071d610705366004612efb565b60176020526000908152604090205463ffffffff1681565b60405163ffffffff90911681526020016103a7565b34801561073e57600080fd5b5061040861074d366004612efb565b6001600160a01b031660009081526020819052604090205490565b34801561077457600080fd5b5061049f611215565b34801561078957600080fd5b5060095461051d906001600160a01b031681565b3480156107a957600080fd5b506104086107b8366004612fe4565b611289565b3480156107c957600080fd5b506104086107d8366004612efb565b60186020526000908152604090205481565b3480156107f657600080fd5b5061049f6108053660046130a1565b6114ee565b34801561081657600080fd5b506005546001600160a01b031661051d565b34801561083457600080fd5b506103c56115c3565b34801561084957600080fd5b5061040860075481565b34801561085f57600080fd5b5061049f61086e366004612fe4565b6115d2565b34801561087f57600080fd5b5061049f61088e3660046130e8565b611606565b34801561089f57600080fd5b5061039b6108ae366004612fe4565b61164e565b3480156108bf57600080fd5b5061049f6108ce36600461317a565b6116e9565b3480156108df57600080fd5b5061039b6108ee366004612fe4565b611776565b3480156108ff57600080fd5b50610408611783565b34801561091457600080fd5b50610408610923366004612efb565b6117c1565b34801561093457600080fd5b506103c5611836565b34801561094957600080fd5b5061049f610958366004613010565b611843565b34801561096957600080fd5b5061051d610978366004613161565b611b11565b34801561098957600080fd5b50600a5461051d906001600160a01b031681565b3480156109a957600080fd5b506104086109b8366004612efb565b60126020526000908152604090205481565b3480156109d657600080fd5b5061049f611b40565b3480156109eb57600080fd5b5061049f6109fa366004612faf565b611bb3565b348015610a0b57600080fd5b5061049f610a1a366004612efb565b611c08565b348015610a2b57600080fd5b50610408610a3a366004612efb565b611df9565b348015610a4b57600080fd5b50610408610a5a366004612f35565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a9157600080fd5b5061040860085481565b348015610aa757600080fd5b5061049f610ab6366004612faf565b611e97565b348015610ac757600080fd5b506104087fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b348015610afb57600080fd5b50610b37610b0a36600461306a565b60166020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff90931683526020830191909152016103a7565b348015610b5f57600080fd5b5061049f610b6e366004612efb565b611eec565b606060038054610b829061343e565b80601f0160208091040260200160405190810160405280929190818152602001828054610bae9061343e565b8015610bfb5780601f10610bd057610100808354040283529160200191610bfb565b820191906000526020600020905b815481529060010190602001808311610bde57829003601f168201915b5050505050905090565b6000610c12338484611fd7565b5060015b92915050565b6000610c298484846120fc565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610cb35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610cc78533610cc28685613402565b611fd7565b506001949350505050565b600c546001600160a01b03163314610cfc5760405162461bcd60e51b8152600401610caa90613231565b6001600160a01b038116610d0f57600080fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c12918590610cc2908690613375565b60118054610d759061343e565b80601f0160208091040260200160405190810160405280929190818152602001828054610da19061343e565b8015610dee5780601f10610dc357610100808354040283529160200191610dee565b820191906000526020600020905b815481529060010190602001808311610dd157829003601f168201915b505050505081565b6005546001600160a01b03163314610e205760405162461bcd60e51b8152600401610caa90613254565b60055461ffff600160a01b90910481169082161115610e3e57600080fd5b6005805461ffff909216600160f01b026001600160f01b03909216919091179055565b3060009081526020819052604090205460075411611092576000610e8433611df9565b905060008111610ecc5760405162461bcd60e51b81526020600482015260136024820152726e6f7420656e6f75676820746f20636c61696d60681b6044820152606401610caa565b600060148361ffff1681548110610ee557610ee56134c0565b906000526020600020906002020190508261ffff1660001415610f1257610f0c3383611776565b50611043565b8261ffff1660011415610fb357600954610f379030906001600160a01b031684611fd7565b6009546001600160a01b031663791ac9478360006001850133610f5c4261012c6123d7565b6040518663ffffffff1660e01b8152600401610f7c9594939291906132fa565b600060405180830381600087803b158015610f9657600080fd5b505af1158015610faa573d6000803e3d6000fd5b50505050611043565b600954610fcb9030906001600160a01b031684611fd7565b6009546001600160a01b0316635c11d7958360006001850133610ff04261012c6123d7565b6040518663ffffffff1660e01b81526004016110109594939291906132fa565b600060405180830381600087803b15801561102a57600080fd5b505af115801561103e573d6000803e3d6000fd5b505050505b3360009081526012602052604090205461105d90836123d7565b3360009081526012602090815260408083209390935560085460139091529190205560075461108c90836123e3565b60075550505b50565b600c546001600160a01b031633146110bf5760405162461bcd60e51b8152600401610caa90613231565b6110c76123ef565b565b6110923382612516565b600c546001600160a01b031633146110fd5760405162461bcd60e51b8152600401610caa90613231565b600b5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015611137573d6000803e3d6000fd5b5050565b6005546001600160a01b031633146111655760405162461bcd60e51b8152600401610caa90613254565b600554600160a01b900461ffff168161117e848661334f565b611188919061334f565b61ffff1611156111c45760405162461bcd60e51b81526020600482015260076024820152662176616c75657360c81b6044820152606401610caa565b6005805467ffff00000000ffff60b01b1916600160e01b61ffff9586160261ffff60b01b191617600160b01b938516939093029290921761ffff60c01b1916600160c01b9190931602919091179055565b6005546001600160a01b0316331461123f5760405162461bcd60e51b8152600401610caa90613254565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b60004382106112ea5760405162461bcd60e51b815260206004820152602760248201527f4d4152533a3a6765745072696f72566f7465733a206e6f742079657420646574604482015266195c9b5a5b995960ca1b6064820152608401610caa565b6001600160a01b03831660009081526017602052604090205463ffffffff1680611318576000915050610c16565b6001600160a01b0384166000908152601660205260408120849161133d600185613419565b63ffffffff908116825260208201929092526040016000205416116113a6576001600160a01b038416600090815260166020526040812090611380600184613419565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050610c16565b6001600160a01b038416600090815260166020908152604080832083805290915290205463ffffffff168310156113e1576000915050610c16565b6000806113ef600184613419565b90505b8163ffffffff168163ffffffff1611156114b757600060026114148484613419565b61141e91906133c0565b6114289083613419565b6001600160a01b038816600090815260166020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915291925087141561148b57602001519450610c169350505050565b805163ffffffff168711156114a2578193506114b0565b6114ad600183613419565b92505b50506113f2565b506001600160a01b038516600090815260166020908152604080832063ffffffff9094168352929052206001015491505092915050565b600c546001600160a01b031633146115185760405162461bcd60e51b8152600401610caa90613231565b604080518082019091526001600160a01b03828116825260208083018581526014805460018101825560009190915284517fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec600290920291820180546001600160a01b03191691909516178455905180516115bc937fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ed909301929190910190612d96565b5050505050565b606060048054610b829061343e565b6005546001600160a01b031633146115fc5760405162461bcd60e51b8152600401610caa90613254565b6111378282612595565b600c546001600160a01b031633146116305760405162461bcd60e51b8152600401610caa90613231565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156116d05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610caa565b6116df3385610cc28685613402565b5060019392505050565b600c546001600160a01b031633146117135760405162461bcd60e51b8152600401610caa90613231565b600060148460ff168154811061172b5761172b6134c0565b9060005260206000209060020201905082816001019080519060200190611753929190612d96565b5080546001600160a01b0319166001600160a01b03929092169190911790555050565b6000610c123384846120fc565b6005546000906117bc9061ffff600160a01b82048116916117b691600160f01b909104166117b060025490565b906126e4565b906126f0565b905090565b6001600160a01b03811660009081526017602052604081205463ffffffff16806117ec57600061182f565b6001600160a01b038316600090815260166020526040812090611810600184613419565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9392505050565b60108054610d759061343e565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661186e610b73565b8051906020012061187c4690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a90528251808503909101815261014084019092528151919093012061190160f01b610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa1580156119a8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611a1a5760405162461bcd60e51b815260206004820152602660248201527f4d4152533a3a64656c656761746542795369673a20696e76616c6964207369676044820152656e617475726560d01b6064820152608401610caa565b6001600160a01b0381166000908152601860205260408120805491611a3e83613479565b919050558914611a9b5760405162461bcd60e51b815260206004820152602260248201527f4d4152533a3a64656c656761746542795369673a20696e76616c6964206e6f6e604482015261636560f01b6064820152608401610caa565b87421115611afa5760405162461bcd60e51b815260206004820152602660248201527f4d4152533a3a64656c656761746542795369673a207369676e617475726520656044820152651e1c1a5c995960d21b6064820152608401610caa565b611b04818b612516565b505050505b505050505050565b60148181548110611b2157600080fd5b60009182526020909120600290910201546001600160a01b0316905081565b6005546001600160a01b03163314611b6a5760405162461bcd60e51b8152600401610caa90613254565b600f8054600160ff19909116179055600c8054600160a01b60ff60a01b199091168117909155600580546001600160f01b03811692900461ffff16600160f01b02919091179055565b600c546001600160a01b03163314611bdd5760405162461bcd60e51b8152600401610caa90613231565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b600c546001600160a01b03163314611c325760405162461bcd60e51b8152600401610caa90613231565b600980546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b158015611c8657600080fd5b505afa158015611c9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cbe9190612f18565b6001600160a01b031663e6a4390530600960009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611d1b57600080fd5b505afa158015611d2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d539190612f18565b6040516001600160e01b031960e085901b1681526001600160a01b0392831660048201529116602482015260440160206040518083038186803b158015611d9957600080fd5b505afa158015611dad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dd19190612f18565b600a80546001600160a01b0319166001600160a01b0392909216918217905561109257600080fd5b6001600160a01b0381166000908152602081905260408120546000611e1c6126fc565b905080611e2d575060009392505050565b6001600160a01b038416600090815260136020526040812054600854611e52916123e3565b90508015611e8c576000611e6a836117b684876126e4565b9050600754811115611e83575050600754949350505050565b95945050505050565b506000949350505050565b600c546001600160a01b03163314611ec15760405162461bcd60e51b8152600401610caa90613231565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314611f165760405162461bcd60e51b8152600401610caa90613254565b6001600160a01b038116611f7b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610caa565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166120395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610caa565b6001600160a01b03821661209a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610caa565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600f5460ff168061211a57506005546001600160a01b038481169116145b8061213257506005546001600160a01b038381169116145b8061214a57506009546001600160a01b038481169116145b6121825760405162461bcd60e51b8152602060048201526009602482015268217472616461626c6560b81b6044820152606401610caa565b600c54600160a01b900460ff16151560011480156121aa5750600b54600160a01b900460ff16155b80156121c057506009546001600160a01b031615155b80156121d65750600a546001600160a01b031615155b80156121f05750600a546001600160a01b03848116911614155b801561220a57506009546001600160a01b03848116911614155b801561222457506005546001600160a01b03848116911614155b801561223957506001600160a01b0383163014155b15612246576122466123ef565b6001600160a01b0383166000908152600e602052604090205460ff166122b45761226e611783565b8111156122b45760405162461bcd60e51b8152602060048201526014602482015273195e18d95959081b585e081d1e08185b5bdd5b9d60621b6044820152606401610caa565b6001600160a01b0383166000908152600d602052604090205460ff16156122e5576122e0838383612726565b505050565b60055460009061230f9061ffff600160a01b82048116916117b6918691600160b01b9004166126e4565b60055490915060009061233c9061ffff600160a01b82048116916117b6918791600160c01b9004166126e4565b6005549091506000906123699061ffff600160a01b82048116916117b6918891600160e01b9004166126e4565b90506123818161237b848188886123e3565b906123e3565b935061238e868686612726565b612399863085612726565b6123a4863084612726565b6123af863083612726565b6007546123bc90826123d7565b6007556008546123cc90826123d7565b600855505050505050565b600061182f8284613375565b600061182f8284613402565b600b805460ff60a01b1916600160a01b1790556005805467ffff0000ffffffff60b01b19811690915561ffff600160b01b8204811691600160c01b8104821691600160e01b909104166000612459306001600160a01b031660009081526020819052604090205490565b90506007548111156124bb576007546124739082906123e3565b905061247e816128fe565b600b5460405147916001600160a01b03169082156108fc029083906000818181858888f193505050501580156124b8573d6000803e3d6000fd5b50505b506005805463ffffffff60b01b1916600160b01b61ffff9586160261ffff60c01b191617600160c01b938516939093029290921761ffff60e01b1916600160e01b9190931602919091179055600b805460ff60a01b19169055565b6001600160a01b038281166000818152601560208181526040808420805485845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461258f828483612a69565b50505050565b6001600160a01b0382166125f55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610caa565b6001600160a01b038216600090815260208190526040902054818110156126695760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610caa565b6126738282613402565b6001600160a01b038416600090815260208190526040812091909155600280548492906126a1908490613402565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016120ef565b600061182f82846133e3565b600061182f82846133ac565b600a546001600160a01b0316600090815260208190526040812054600061182f8261237b60025490565b6001600160a01b03831661278a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610caa565b6001600160a01b0382166127ec5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610caa565b6001600160a01b038316600090815260208190526040902054818110156128645760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610caa565b61286e8282613402565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906128a4908490613375565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128f091815260200190565b60405180910390a350505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612933576129336134c0565b6001600160a01b03928316602091820292909201810191909152600954604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561298757600080fd5b505afa15801561299b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129bf9190612f18565b816001815181106129d2576129d26134c0565b6001600160a01b0392831660209182029290920101526009546129f89130911684611fd7565b6009546001600160a01b031663791ac9478360008430612a1b4262015180613375565b6040518663ffffffff1660e01b8152600401612a3b959493929190613289565b600060405180830381600087803b158015612a5557600080fd5b505af1158015611b09573d6000803e3d6000fd5b816001600160a01b0316836001600160a01b031614158015612a8b5750600081115b156122e0576001600160a01b03831615612b2e576001600160a01b03831660009081526017602052604081205463ffffffff169081612acb576000612b0e565b6001600160a01b038516600090815260166020526040812090612aef600185613419565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000612b1c82856123e3565b9050612b2a86848484612bc4565b5050505b6001600160a01b038216156122e0576001600160a01b03821660009081526017602052604081205463ffffffff169081612b69576000612bac565b6001600160a01b038416600090815260166020526040812090612b8d600185613419565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000612bba82856123d7565b9050611b09858484845b6000612be84360405180606001604052806034815260200161350260349139612d66565b905060008463ffffffff16118015612c4257506001600160a01b038516600090815260166020526040812063ffffffff831691612c26600188613419565b63ffffffff908116825260208201929092526040016000205416145b15612c8b576001600160a01b03851660009081526016602052604081208391612c6c600188613419565b63ffffffff168152602081019190915260400160002060010155612d1b565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152601683528581208a851682529092529390209151825463ffffffff191691161781559051600191820155612cea90859061338d565b6001600160a01b0386166000908152601760205260409020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b6000816401000000008410612d8e5760405162461bcd60e51b8152600401610caa91906131dc565b509192915050565b828054828255906000526020600020908101928215612deb579160200282015b82811115612deb57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612db6565b50612df7929150612dfb565b5090565b5b80821115612df75760008155600101612dfc565b8035612e1b816134ec565b919050565b600082601f830112612e3157600080fd5b8135602067ffffffffffffffff80831115612e4e57612e4e6134d6565b8260051b604051601f19603f83011681018181108482111715612e7357612e736134d6565b60405284815283810192508684018288018501891015612e9257600080fd5b600092505b85831015612ebc57612ea881612e10565b845292840192600192909201918401612e97565b50979650505050505050565b80358015158114612e1b57600080fd5b803561ffff81168114612e1b57600080fd5b803560ff81168114612e1b57600080fd5b600060208284031215612f0d57600080fd5b813561182f816134ec565b600060208284031215612f2a57600080fd5b815161182f816134ec565b60008060408385031215612f4857600080fd5b8235612f53816134ec565b91506020830135612f63816134ec565b809150509250929050565b600080600060608486031215612f8357600080fd5b8335612f8e816134ec565b92506020840135612f9e816134ec565b929592945050506040919091013590565b60008060408385031215612fc257600080fd5b8235612fcd816134ec565b9150612fdb60208401612ec8565b90509250929050565b60008060408385031215612ff757600080fd5b8235613002816134ec565b946020939093013593505050565b60008060008060008060c0878903121561302957600080fd5b8635613034816134ec565b9550602087013594506040870135935061305060608801612eea565b92506080870135915060a087013590509295509295509295565b6000806040838503121561307d57600080fd5b8235613088816134ec565b9150602083013563ffffffff81168114612f6357600080fd5b600080604083850312156130b457600080fd5b823567ffffffffffffffff8111156130cb57600080fd5b6130d785828601612e20565b9250506020830135612f63816134ec565b6000602082840312156130fa57600080fd5b61182f82612ec8565b60006020828403121561311557600080fd5b61182f82612ed8565b60008060006060848603121561313357600080fd5b61313c84612ed8565b925061314a60208501612ed8565b915061315860408501612ed8565b90509250925092565b60006020828403121561317357600080fd5b5035919050565b60008060006060848603121561318f57600080fd5b61319884612eea565b9250602084013567ffffffffffffffff8111156131b457600080fd5b6131c086828701612e20565b92505060408401356131d1816134ec565b809150509250925092565b600060208083528351808285015260005b81811015613209578581018301518582016040015282016131ed565b8181111561321b576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526009908201526810b7b832b930ba37b960b91b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156132d95784516001600160a01b0316835293830193918301916001016132b4565b50506001600160a01b03969096166060850152505050608001529392505050565b600060a082018783526020878185015260a0604085015281875480845260c0860191508860005282600020935060005b818110156132d95784546001600160a01b03168352600194850194928401920161332a565b600061ffff80831681851680830382111561336c5761336c613494565b01949350505050565b6000821982111561338857613388613494565b500190565b600063ffffffff80831681851680830382111561336c5761336c613494565b6000826133bb576133bb6134aa565b500490565b600063ffffffff808416806133d7576133d76134aa565b92169190910492915050565b60008160001904831182151516156133fd576133fd613494565b500290565b60008282101561341457613414613494565b500390565b600063ffffffff8381169083168181101561343657613436613494565b039392505050565b600181811c9082168061345257607f821691505b6020821081141561347357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561348d5761348d613494565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461109257600080fdfe4d4152533a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a26469706673582212208893db540e80c190e8d35a35dd62d7de99c95a91d48de35dca5bd762235ff9b964736f6c63430008070033

Deployed Bytecode

0x60806040526004361061036e5760003560e01c8063782d6fe1116101c6578063c3cda520116100f7578063db90127e11610095578063df8408fe1161006f578063df8408fe14610a9b578063e7a324dc14610abb578063f1127ed814610aef578063f2fde38b14610b5357600080fd5b8063db90127e14610a1f578063dd62ed3e14610a3f578063dea0621014610a8557600080fd5b8063c884ef83116100d1578063c884ef831461099d578063c9567bf9146109ca578063d4c989d3146109df578063d880cd85146109ff57600080fd5b8063c3cda5201461093d578063c66106571461095d578063c816841b1461097d57600080fd5b80639f9a4e7f11610164578063a9059cbb1161013e578063a9059cbb146108d3578063a9e75723146108f3578063b4b5ea5714610908578063beb0a4161461092857600080fd5b80639f9a4e7f14610873578063a457c2d714610893578063a758046c146108b357600080fd5b80638da5cb5b116101a05780638da5cb5b1461080a57806395d89b4114610828578063997664d71461083d5780639dc29fac1461085357600080fd5b8063782d6fe11461079d5780637ecebe00146107bd578063859864aa146107ea57600080fd5b80634e8c9f90116102a057806362e546f91161023e5780636fcfff45116102185780636fcfff45146106ea57806370a0823114610732578063715018a614610768578063735de9f71461077d57600080fd5b806362e546f91461067c578063658c27a914610691578063670babe0146106ca57600080fd5b80635342acb41161027a5780635342acb4146105cc578063570ca73514610605578063587cde1e146106235780635c19a95c1461065c57600080fd5b80634e8c9f90146105775780635158ea1b1461059757806351bc3c85146105b757600080fd5b806329605e771161030d57806339509351116102e757806339509351146104dd57806346904840146104fd57806347ecb665146105355780634b418bc51461054a57600080fd5b806329605e771461047f578063313ce567146104a157806332cb6b0c146104bd57600080fd5b806313f43a571161034957806313f43a57146103f257806318160ddd1461041657806320606b701461042b57806323b872dd1461045f57600080fd5b8062dc12971461037a57806306fdde03146103b0578063095ea7b3146103d257600080fd5b3661037557005b600080fd5b34801561038657600080fd5b50600c5461039b90600160a01b900460ff1681565b60405190151581526020015b60405180910390f35b3480156103bc57600080fd5b506103c5610b73565b6040516103a791906131dc565b3480156103de57600080fd5b5061039b6103ed366004612fe4565b610c05565b3480156103fe57600080fd5b5061040860065481565b6040519081526020016103a7565b34801561042257600080fd5b50600254610408565b34801561043757600080fd5b506104087f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b34801561046b57600080fd5b5061039b61047a366004612f6e565b610c1c565b34801561048b57600080fd5b5061049f61049a366004612efb565b610cd2565b005b3480156104ad57600080fd5b50604051601281526020016103a7565b3480156104c957600080fd5b506104086b60ef6b1aba6f07233000000081565b3480156104e957600080fd5b5061039b6104f8366004612fe4565b610d31565b34801561050957600080fd5b50600b5461051d906001600160a01b031681565b6040516001600160a01b0390911681526020016103a7565b34801561054157600080fd5b506103c5610d68565b34801561055657600080fd5b50610408610565366004612efb565b60136020526000908152604090205481565b34801561058357600080fd5b5061049f610592366004613103565b610df6565b3480156105a357600080fd5b5061049f6105b2366004613103565b610e61565b3480156105c357600080fd5b5061049f611095565b3480156105d857600080fd5b5061039b6105e7366004612efb565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561061157600080fd5b50600c546001600160a01b031661051d565b34801561062f57600080fd5b5061051d61063e366004612efb565b6001600160a01b039081166000908152601560205260409020541690565b34801561066857600080fd5b5061049f610677366004612efb565b6110c9565b34801561068857600080fd5b5061049f6110d3565b34801561069d57600080fd5b5061039b6106ac366004612efb565b6001600160a01b03166000908152600e602052604090205460ff1690565b3480156106d657600080fd5b5061049f6106e536600461311e565b61113b565b3480156106f657600080fd5b5061071d610705366004612efb565b60176020526000908152604090205463ffffffff1681565b60405163ffffffff90911681526020016103a7565b34801561073e57600080fd5b5061040861074d366004612efb565b6001600160a01b031660009081526020819052604090205490565b34801561077457600080fd5b5061049f611215565b34801561078957600080fd5b5060095461051d906001600160a01b031681565b3480156107a957600080fd5b506104086107b8366004612fe4565b611289565b3480156107c957600080fd5b506104086107d8366004612efb565b60186020526000908152604090205481565b3480156107f657600080fd5b5061049f6108053660046130a1565b6114ee565b34801561081657600080fd5b506005546001600160a01b031661051d565b34801561083457600080fd5b506103c56115c3565b34801561084957600080fd5b5061040860075481565b34801561085f57600080fd5b5061049f61086e366004612fe4565b6115d2565b34801561087f57600080fd5b5061049f61088e3660046130e8565b611606565b34801561089f57600080fd5b5061039b6108ae366004612fe4565b61164e565b3480156108bf57600080fd5b5061049f6108ce36600461317a565b6116e9565b3480156108df57600080fd5b5061039b6108ee366004612fe4565b611776565b3480156108ff57600080fd5b50610408611783565b34801561091457600080fd5b50610408610923366004612efb565b6117c1565b34801561093457600080fd5b506103c5611836565b34801561094957600080fd5b5061049f610958366004613010565b611843565b34801561096957600080fd5b5061051d610978366004613161565b611b11565b34801561098957600080fd5b50600a5461051d906001600160a01b031681565b3480156109a957600080fd5b506104086109b8366004612efb565b60126020526000908152604090205481565b3480156109d657600080fd5b5061049f611b40565b3480156109eb57600080fd5b5061049f6109fa366004612faf565b611bb3565b348015610a0b57600080fd5b5061049f610a1a366004612efb565b611c08565b348015610a2b57600080fd5b50610408610a3a366004612efb565b611df9565b348015610a4b57600080fd5b50610408610a5a366004612f35565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a9157600080fd5b5061040860085481565b348015610aa757600080fd5b5061049f610ab6366004612faf565b611e97565b348015610ac757600080fd5b506104087fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b348015610afb57600080fd5b50610b37610b0a36600461306a565b60166020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff90931683526020830191909152016103a7565b348015610b5f57600080fd5b5061049f610b6e366004612efb565b611eec565b606060038054610b829061343e565b80601f0160208091040260200160405190810160405280929190818152602001828054610bae9061343e565b8015610bfb5780601f10610bd057610100808354040283529160200191610bfb565b820191906000526020600020905b815481529060010190602001808311610bde57829003601f168201915b5050505050905090565b6000610c12338484611fd7565b5060015b92915050565b6000610c298484846120fc565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610cb35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610cc78533610cc28685613402565b611fd7565b506001949350505050565b600c546001600160a01b03163314610cfc5760405162461bcd60e51b8152600401610caa90613231565b6001600160a01b038116610d0f57600080fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c12918590610cc2908690613375565b60118054610d759061343e565b80601f0160208091040260200160405190810160405280929190818152602001828054610da19061343e565b8015610dee5780601f10610dc357610100808354040283529160200191610dee565b820191906000526020600020905b815481529060010190602001808311610dd157829003601f168201915b505050505081565b6005546001600160a01b03163314610e205760405162461bcd60e51b8152600401610caa90613254565b60055461ffff600160a01b90910481169082161115610e3e57600080fd5b6005805461ffff909216600160f01b026001600160f01b03909216919091179055565b3060009081526020819052604090205460075411611092576000610e8433611df9565b905060008111610ecc5760405162461bcd60e51b81526020600482015260136024820152726e6f7420656e6f75676820746f20636c61696d60681b6044820152606401610caa565b600060148361ffff1681548110610ee557610ee56134c0565b906000526020600020906002020190508261ffff1660001415610f1257610f0c3383611776565b50611043565b8261ffff1660011415610fb357600954610f379030906001600160a01b031684611fd7565b6009546001600160a01b031663791ac9478360006001850133610f5c4261012c6123d7565b6040518663ffffffff1660e01b8152600401610f7c9594939291906132fa565b600060405180830381600087803b158015610f9657600080fd5b505af1158015610faa573d6000803e3d6000fd5b50505050611043565b600954610fcb9030906001600160a01b031684611fd7565b6009546001600160a01b0316635c11d7958360006001850133610ff04261012c6123d7565b6040518663ffffffff1660e01b81526004016110109594939291906132fa565b600060405180830381600087803b15801561102a57600080fd5b505af115801561103e573d6000803e3d6000fd5b505050505b3360009081526012602052604090205461105d90836123d7565b3360009081526012602090815260408083209390935560085460139091529190205560075461108c90836123e3565b60075550505b50565b600c546001600160a01b031633146110bf5760405162461bcd60e51b8152600401610caa90613231565b6110c76123ef565b565b6110923382612516565b600c546001600160a01b031633146110fd5760405162461bcd60e51b8152600401610caa90613231565b600b5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015611137573d6000803e3d6000fd5b5050565b6005546001600160a01b031633146111655760405162461bcd60e51b8152600401610caa90613254565b600554600160a01b900461ffff168161117e848661334f565b611188919061334f565b61ffff1611156111c45760405162461bcd60e51b81526020600482015260076024820152662176616c75657360c81b6044820152606401610caa565b6005805467ffff00000000ffff60b01b1916600160e01b61ffff9586160261ffff60b01b191617600160b01b938516939093029290921761ffff60c01b1916600160c01b9190931602919091179055565b6005546001600160a01b0316331461123f5760405162461bcd60e51b8152600401610caa90613254565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b60004382106112ea5760405162461bcd60e51b815260206004820152602760248201527f4d4152533a3a6765745072696f72566f7465733a206e6f742079657420646574604482015266195c9b5a5b995960ca1b6064820152608401610caa565b6001600160a01b03831660009081526017602052604090205463ffffffff1680611318576000915050610c16565b6001600160a01b0384166000908152601660205260408120849161133d600185613419565b63ffffffff908116825260208201929092526040016000205416116113a6576001600160a01b038416600090815260166020526040812090611380600184613419565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050610c16565b6001600160a01b038416600090815260166020908152604080832083805290915290205463ffffffff168310156113e1576000915050610c16565b6000806113ef600184613419565b90505b8163ffffffff168163ffffffff1611156114b757600060026114148484613419565b61141e91906133c0565b6114289083613419565b6001600160a01b038816600090815260166020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915291925087141561148b57602001519450610c169350505050565b805163ffffffff168711156114a2578193506114b0565b6114ad600183613419565b92505b50506113f2565b506001600160a01b038516600090815260166020908152604080832063ffffffff9094168352929052206001015491505092915050565b600c546001600160a01b031633146115185760405162461bcd60e51b8152600401610caa90613231565b604080518082019091526001600160a01b03828116825260208083018581526014805460018101825560009190915284517fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec600290920291820180546001600160a01b03191691909516178455905180516115bc937fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ed909301929190910190612d96565b5050505050565b606060048054610b829061343e565b6005546001600160a01b031633146115fc5760405162461bcd60e51b8152600401610caa90613254565b6111378282612595565b600c546001600160a01b031633146116305760405162461bcd60e51b8152600401610caa90613231565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156116d05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610caa565b6116df3385610cc28685613402565b5060019392505050565b600c546001600160a01b031633146117135760405162461bcd60e51b8152600401610caa90613231565b600060148460ff168154811061172b5761172b6134c0565b9060005260206000209060020201905082816001019080519060200190611753929190612d96565b5080546001600160a01b0319166001600160a01b03929092169190911790555050565b6000610c123384846120fc565b6005546000906117bc9061ffff600160a01b82048116916117b691600160f01b909104166117b060025490565b906126e4565b906126f0565b905090565b6001600160a01b03811660009081526017602052604081205463ffffffff16806117ec57600061182f565b6001600160a01b038316600090815260166020526040812090611810600184613419565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9392505050565b60108054610d759061343e565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661186e610b73565b8051906020012061187c4690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a90528251808503909101815261014084019092528151919093012061190160f01b610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa1580156119a8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611a1a5760405162461bcd60e51b815260206004820152602660248201527f4d4152533a3a64656c656761746542795369673a20696e76616c6964207369676044820152656e617475726560d01b6064820152608401610caa565b6001600160a01b0381166000908152601860205260408120805491611a3e83613479565b919050558914611a9b5760405162461bcd60e51b815260206004820152602260248201527f4d4152533a3a64656c656761746542795369673a20696e76616c6964206e6f6e604482015261636560f01b6064820152608401610caa565b87421115611afa5760405162461bcd60e51b815260206004820152602660248201527f4d4152533a3a64656c656761746542795369673a207369676e617475726520656044820152651e1c1a5c995960d21b6064820152608401610caa565b611b04818b612516565b505050505b505050505050565b60148181548110611b2157600080fd5b60009182526020909120600290910201546001600160a01b0316905081565b6005546001600160a01b03163314611b6a5760405162461bcd60e51b8152600401610caa90613254565b600f8054600160ff19909116179055600c8054600160a01b60ff60a01b199091168117909155600580546001600160f01b03811692900461ffff16600160f01b02919091179055565b600c546001600160a01b03163314611bdd5760405162461bcd60e51b8152600401610caa90613231565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b600c546001600160a01b03163314611c325760405162461bcd60e51b8152600401610caa90613231565b600980546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b158015611c8657600080fd5b505afa158015611c9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cbe9190612f18565b6001600160a01b031663e6a4390530600960009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611d1b57600080fd5b505afa158015611d2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d539190612f18565b6040516001600160e01b031960e085901b1681526001600160a01b0392831660048201529116602482015260440160206040518083038186803b158015611d9957600080fd5b505afa158015611dad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dd19190612f18565b600a80546001600160a01b0319166001600160a01b0392909216918217905561109257600080fd5b6001600160a01b0381166000908152602081905260408120546000611e1c6126fc565b905080611e2d575060009392505050565b6001600160a01b038416600090815260136020526040812054600854611e52916123e3565b90508015611e8c576000611e6a836117b684876126e4565b9050600754811115611e83575050600754949350505050565b95945050505050565b506000949350505050565b600c546001600160a01b03163314611ec15760405162461bcd60e51b8152600401610caa90613231565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314611f165760405162461bcd60e51b8152600401610caa90613254565b6001600160a01b038116611f7b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610caa565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166120395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610caa565b6001600160a01b03821661209a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610caa565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600f5460ff168061211a57506005546001600160a01b038481169116145b8061213257506005546001600160a01b038381169116145b8061214a57506009546001600160a01b038481169116145b6121825760405162461bcd60e51b8152602060048201526009602482015268217472616461626c6560b81b6044820152606401610caa565b600c54600160a01b900460ff16151560011480156121aa5750600b54600160a01b900460ff16155b80156121c057506009546001600160a01b031615155b80156121d65750600a546001600160a01b031615155b80156121f05750600a546001600160a01b03848116911614155b801561220a57506009546001600160a01b03848116911614155b801561222457506005546001600160a01b03848116911614155b801561223957506001600160a01b0383163014155b15612246576122466123ef565b6001600160a01b0383166000908152600e602052604090205460ff166122b45761226e611783565b8111156122b45760405162461bcd60e51b8152602060048201526014602482015273195e18d95959081b585e081d1e08185b5bdd5b9d60621b6044820152606401610caa565b6001600160a01b0383166000908152600d602052604090205460ff16156122e5576122e0838383612726565b505050565b60055460009061230f9061ffff600160a01b82048116916117b6918691600160b01b9004166126e4565b60055490915060009061233c9061ffff600160a01b82048116916117b6918791600160c01b9004166126e4565b6005549091506000906123699061ffff600160a01b82048116916117b6918891600160e01b9004166126e4565b90506123818161237b848188886123e3565b906123e3565b935061238e868686612726565b612399863085612726565b6123a4863084612726565b6123af863083612726565b6007546123bc90826123d7565b6007556008546123cc90826123d7565b600855505050505050565b600061182f8284613375565b600061182f8284613402565b600b805460ff60a01b1916600160a01b1790556005805467ffff0000ffffffff60b01b19811690915561ffff600160b01b8204811691600160c01b8104821691600160e01b909104166000612459306001600160a01b031660009081526020819052604090205490565b90506007548111156124bb576007546124739082906123e3565b905061247e816128fe565b600b5460405147916001600160a01b03169082156108fc029083906000818181858888f193505050501580156124b8573d6000803e3d6000fd5b50505b506005805463ffffffff60b01b1916600160b01b61ffff9586160261ffff60c01b191617600160c01b938516939093029290921761ffff60e01b1916600160e01b9190931602919091179055600b805460ff60a01b19169055565b6001600160a01b038281166000818152601560208181526040808420805485845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461258f828483612a69565b50505050565b6001600160a01b0382166125f55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610caa565b6001600160a01b038216600090815260208190526040902054818110156126695760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610caa565b6126738282613402565b6001600160a01b038416600090815260208190526040812091909155600280548492906126a1908490613402565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016120ef565b600061182f82846133e3565b600061182f82846133ac565b600a546001600160a01b0316600090815260208190526040812054600061182f8261237b60025490565b6001600160a01b03831661278a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610caa565b6001600160a01b0382166127ec5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610caa565b6001600160a01b038316600090815260208190526040902054818110156128645760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610caa565b61286e8282613402565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906128a4908490613375565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128f091815260200190565b60405180910390a350505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612933576129336134c0565b6001600160a01b03928316602091820292909201810191909152600954604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561298757600080fd5b505afa15801561299b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129bf9190612f18565b816001815181106129d2576129d26134c0565b6001600160a01b0392831660209182029290920101526009546129f89130911684611fd7565b6009546001600160a01b031663791ac9478360008430612a1b4262015180613375565b6040518663ffffffff1660e01b8152600401612a3b959493929190613289565b600060405180830381600087803b158015612a5557600080fd5b505af1158015611b09573d6000803e3d6000fd5b816001600160a01b0316836001600160a01b031614158015612a8b5750600081115b156122e0576001600160a01b03831615612b2e576001600160a01b03831660009081526017602052604081205463ffffffff169081612acb576000612b0e565b6001600160a01b038516600090815260166020526040812090612aef600185613419565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000612b1c82856123e3565b9050612b2a86848484612bc4565b5050505b6001600160a01b038216156122e0576001600160a01b03821660009081526017602052604081205463ffffffff169081612b69576000612bac565b6001600160a01b038416600090815260166020526040812090612b8d600185613419565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000612bba82856123d7565b9050611b09858484845b6000612be84360405180606001604052806034815260200161350260349139612d66565b905060008463ffffffff16118015612c4257506001600160a01b038516600090815260166020526040812063ffffffff831691612c26600188613419565b63ffffffff908116825260208201929092526040016000205416145b15612c8b576001600160a01b03851660009081526016602052604081208391612c6c600188613419565b63ffffffff168152602081019190915260400160002060010155612d1b565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152601683528581208a851682529092529390209151825463ffffffff191691161781559051600191820155612cea90859061338d565b6001600160a01b0386166000908152601760205260409020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b6000816401000000008410612d8e5760405162461bcd60e51b8152600401610caa91906131dc565b509192915050565b828054828255906000526020600020908101928215612deb579160200282015b82811115612deb57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612db6565b50612df7929150612dfb565b5090565b5b80821115612df75760008155600101612dfc565b8035612e1b816134ec565b919050565b600082601f830112612e3157600080fd5b8135602067ffffffffffffffff80831115612e4e57612e4e6134d6565b8260051b604051601f19603f83011681018181108482111715612e7357612e736134d6565b60405284815283810192508684018288018501891015612e9257600080fd5b600092505b85831015612ebc57612ea881612e10565b845292840192600192909201918401612e97565b50979650505050505050565b80358015158114612e1b57600080fd5b803561ffff81168114612e1b57600080fd5b803560ff81168114612e1b57600080fd5b600060208284031215612f0d57600080fd5b813561182f816134ec565b600060208284031215612f2a57600080fd5b815161182f816134ec565b60008060408385031215612f4857600080fd5b8235612f53816134ec565b91506020830135612f63816134ec565b809150509250929050565b600080600060608486031215612f8357600080fd5b8335612f8e816134ec565b92506020840135612f9e816134ec565b929592945050506040919091013590565b60008060408385031215612fc257600080fd5b8235612fcd816134ec565b9150612fdb60208401612ec8565b90509250929050565b60008060408385031215612ff757600080fd5b8235613002816134ec565b946020939093013593505050565b60008060008060008060c0878903121561302957600080fd5b8635613034816134ec565b9550602087013594506040870135935061305060608801612eea565b92506080870135915060a087013590509295509295509295565b6000806040838503121561307d57600080fd5b8235613088816134ec565b9150602083013563ffffffff81168114612f6357600080fd5b600080604083850312156130b457600080fd5b823567ffffffffffffffff8111156130cb57600080fd5b6130d785828601612e20565b9250506020830135612f63816134ec565b6000602082840312156130fa57600080fd5b61182f82612ec8565b60006020828403121561311557600080fd5b61182f82612ed8565b60008060006060848603121561313357600080fd5b61313c84612ed8565b925061314a60208501612ed8565b915061315860408501612ed8565b90509250925092565b60006020828403121561317357600080fd5b5035919050565b60008060006060848603121561318f57600080fd5b61319884612eea565b9250602084013567ffffffffffffffff8111156131b457600080fd5b6131c086828701612e20565b92505060408401356131d1816134ec565b809150509250925092565b600060208083528351808285015260005b81811015613209578581018301518582016040015282016131ed565b8181111561321b576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526009908201526810b7b832b930ba37b960b91b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156132d95784516001600160a01b0316835293830193918301916001016132b4565b50506001600160a01b03969096166060850152505050608001529392505050565b600060a082018783526020878185015260a0604085015281875480845260c0860191508860005282600020935060005b818110156132d95784546001600160a01b03168352600194850194928401920161332a565b600061ffff80831681851680830382111561336c5761336c613494565b01949350505050565b6000821982111561338857613388613494565b500190565b600063ffffffff80831681851680830382111561336c5761336c613494565b6000826133bb576133bb6134aa565b500490565b600063ffffffff808416806133d7576133d76134aa565b92169190910492915050565b60008160001904831182151516156133fd576133fd613494565b500290565b60008282101561341457613414613494565b500390565b600063ffffffff8381169083168181101561343657613436613494565b039392505050565b600181811c9082168061345257607f821691505b6020821081141561347357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561348d5761348d613494565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461109257600080fdfe4d4152533a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a26469706673582212208893db540e80c190e8d35a35dd62d7de99c95a91d48de35dca5bd762235ff9b964736f6c63430008070033

Deployed Bytecode Sourcemap

43421:19955:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44530:42;;;;;;;;;;-1:-1:-1;44530:42:0;;;;-1:-1:-1;;;44530:42:0;;;;;;;;;7607:14:1;;7600:22;7582:41;;7570:2;7555:18;44530:42:0;;;;;;;;16015:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;18182:169::-;;;;;;;;;;-1:-1:-1;18182:169:0;;;;;:::i;:::-;;:::i;43906:50::-;;;;;;;;;;;;;;;;;;;7780:25:1;;;7768:2;7753:18;43906:50:0;7634:177:1;17135:108:0;;;;;;;;;;-1:-1:-1;17223:12:0;;17135:108;;55693:122;;;;;;;;;;;;55735:80;55693:122;;18833:422;;;;;;;;;;-1:-1:-1;18833:422:0;;;;;:::i;:::-;;:::i;48865:154::-;;;;;;;;;;-1:-1:-1;48865:154:0;;;;;:::i;:::-;;:::i;:::-;;16977:93;;;;;;;;;;-1:-1:-1;16977:93:0;;17060:2;20679:36:1;;20667:2;20652:18;16977:93:0;20537:184:1;43555:55:0;;;;;;;;;;;;43592:18;43555:55;;19664:215;;;;;;;;;;-1:-1:-1;19664:215:0;;;;;:::i;:::-;;:::i;44248:72::-;;;;;;;;;;-1:-1:-1;44248:72:0;;;;-1:-1:-1;;;;;44248:72:0;;;;;;-1:-1:-1;;;;;7089:32:1;;;7071:51;;7059:2;7044:18;44248:72:0;6925:203:1;44798:56:0;;;;;;;;;;;;;:::i;45035:53::-;;;;;;;;;;-1:-1:-1;45035:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;51649:206;;;;;;;;;;-1:-1:-1;51649:206:0;;;;;:::i;:::-;;:::i;52563:1235::-;;;;;;;;;;-1:-1:-1;52563:1235:0;;;;;:::i;:::-;;:::i;49677:80::-;;;;;;;;;;;;;:::i;52037:122::-;;;;;;;;;;-1:-1:-1;52037:122:0;;;;;:::i;:::-;-1:-1:-1;;;;;52126:25:0;52102:4;52126:25;;;:18;:25;;;;;;;;;52037:122;46686:85;;;;;;;;;;-1:-1:-1;46754:9:0;;-1:-1:-1;;;;;46754:9:0;46686:85;;56676:149;;;;;;;;;;-1:-1:-1;56676:149:0;;;;;:::i;:::-;-1:-1:-1;;;;;56796:21:0;;;56764:7;56796:21;;;:10;:21;;;;;;;;56676:149;56969:104;;;;;;;;;;-1:-1:-1;56969:104:0;;;;;:::i;:::-;;:::i;49765:148::-;;;;;;;;;;;;;:::i;52296:126::-;;;;;;;;;;-1:-1:-1;52296:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;52387:27:0;52363:4;52387:27;;;:20;:27;;;;;;;;;52296:126;51283:358;;;;;;;;;;-1:-1:-1;51283:358:0;;;;;:::i;:::-;;:::i;55571:49::-;;;;;;;;;;-1:-1:-1;55571:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20246:10:1;20234:23;;;20216:42;;20204:2;20189:18;55571:49:0;20072:192:1;17306:127:0;;;;;;;;;;-1:-1:-1;17306:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;17407:18:0;17380:7;17407:18;;;;;;;;;;;;17306:127;2826:148;;;;;;;;;;;;;:::i;44142:39::-;;;;;;;;;;-1:-1:-1;44142:39:0;;;;-1:-1:-1;;;;;44142:39:0;;;59584:1253;;;;;;;;;;-1:-1:-1;59584:1253:0;;;;;:::i;:::-;;:::i;56107:39::-;;;;;;;;;;-1:-1:-1;56107:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;54680:211;;;;;;;;;;-1:-1:-1;54680:211:0;;;;;:::i;:::-;;:::i;2175:87::-;;;;;;;;;;-1:-1:-1;2248:6:0;;-1:-1:-1;;;;;2248:6:0;2175:87;;16234:104;;;;;;;;;;;;;:::i;43989:29::-;;;;;;;;;;;;;;;;46867:103;;;;;;;;;;-1:-1:-1;46867:103:0;;;;;:::i;:::-;;:::i;49545:124::-;;;;;;;;;;-1:-1:-1;49545:124:0;;;;;:::i;:::-;;:::i;20382:377::-;;;;;;;;;;-1:-1:-1;20382:377:0;;;;;:::i;:::-;;:::i;54899:232::-;;;;;;;;;;-1:-1:-1;54899:232:0;;;;;:::i;:::-;;:::i;17646:175::-;;;;;;;;;;-1:-1:-1;17646:175:0;;;;;:::i;:::-;;:::i;51133:142::-;;;;;;;;;;;;;:::i;58898:255::-;;;;;;;;;;-1:-1:-1;58898:255:0;;;;;:::i;:::-;;:::i;44743:48::-;;;;;;;;;;;;;:::i;57507:1190::-;;;;;;;;;;-1:-1:-1;57507:1190:0;;;;;:::i;:::-;;:::i;45140:27::-;;;;;;;;;;-1:-1:-1;45140:27:0;;;;;:::i;:::-;;:::i;44213:26::-;;;;;;;;;;-1:-1:-1;44213:26:0;;;;-1:-1:-1;;;;;44213:26:0;;;44960:42;;;;;;;;;;-1:-1:-1;44960:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;51863:166;;;;;;;;;;;;;:::i;52430:125::-;;;;;;;;;;-1:-1:-1;52430:125:0;;;;;:::i;:::-;;:::i;49134:285::-;;;;;;;;;;-1:-1:-1;49134:285:0;;;;;:::i;:::-;;:::i;53806:637::-;;;;;;;;;;-1:-1:-1;53806:637:0;;;;;:::i;:::-;;:::i;17884:151::-;;;;;;;;;;-1:-1:-1;17884:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;18000:18:0;;;17973:7;18000:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17884:151;44074:33;;;;;;;;;;;;;;;;52167:121;;;;;;;;;;-1:-1:-1;52167:121:0;;;;;:::i;:::-;;:::i;55909:117::-;;;;;;;;;;;;55955:71;55909:117;;55432:70;;;;;;;;;;-1:-1:-1;55432:70:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20471:10:1;20459:23;;;20441:42;;20514:2;20499:18;;20492:34;;;;20414:18;55432:70:0;20269:263:1;3129:244:0;;;;;;;;;;-1:-1:-1;3129:244:0;;;;;:::i;:::-;;:::i;16015:100::-;16069:13;16102:5;16095:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16015:100;:::o;18182:169::-;18265:4;18282:39;805:10;18305:7;18314:6;18282:8;:39::i;:::-;-1:-1:-1;18339:4:0;18182:169;;;;;:::o;18833:422::-;18939:4;18956:36;18966:6;18974:9;18985:6;18956:9;:36::i;:::-;-1:-1:-1;;;;;19032:19:0;;19005:24;19032:19;;;:11;:19;;;;;;;;805:10;19032:33;;;;;;;;19084:26;;;;19076:79;;;;-1:-1:-1;;;19076:79:0;;14378:2:1;19076:79:0;;;14360:21:1;14417:2;14397:18;;;14390:30;14456:34;14436:18;;;14429:62;-1:-1:-1;;;14507:18:1;;;14500:38;14555:19;;19076:79:0;;;;;;;;;19166:57;19175:6;805:10;19197:25;19216:6;19197:16;:25;:::i;:::-;19166:8;:57::i;:::-;-1:-1:-1;19243:4:0;;18833:422;-1:-1:-1;;;;18833:422:0:o;48865:154::-;45219:9;;-1:-1:-1;;;;;45219:9:0;45232:10;45219:23;45211:45;;;;-1:-1:-1;;;45211:45:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48951:25:0;::::1;48943:34;;;::::0;::::1;;48988:9;:23:::0;;-1:-1:-1;;;;;;48988:23:0::1;-1:-1:-1::0;;;;;48988:23:0;;;::::1;::::0;;;::::1;::::0;;48865:154::o;19664:215::-;805:10;19752:4;19801:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19801:34:0;;;;;;;;;;19752:4;;19769:80;;19792:7;;19801:47;;19838:10;;19801:47;:::i;44798:56::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51649:206::-;2248:6;;-1:-1:-1;;;;;2248:6:0;805:10;2395:23;2387:68;;;;-1:-1:-1;;;2387:68:0;;;;;;;:::i;:::-;51778:11:::1;::::0;::::1;-1:-1:-1::0;;;51778:11:0;;::::1;::::0;::::1;51752:37:::0;;::::1;;;51744:46;;;::::0;::::1;;51801:21;:46:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;51801:46:0::1;-1:-1:-1::0;;;;;51801:46:0;;::::1;::::0;;;::::1;::::0;;51649:206::o;52563:1235::-;52663:4;17380:7;17407:18;;;;;;;;;;;52627:14;;:42;52623:1168;;52686:20;52709:33;52731:10;52709:21;:33::i;:::-;52686:56;;52780:1;52765:12;:16;52757:48;;;;-1:-1:-1;;;52757:48:0;;13627:2:1;52757:48:0;;;13609:21:1;13666:2;13646:18;;;13639:30;-1:-1:-1;;;13685:18:1;;;13678:49;13744:18;;52757:48:0;13425:343:1;52757:48:0;52820:25;52848:5;52854:4;52848:11;;;;;;;;;;:::i;:::-;;;;;;;;;;;52820:39;;52878:4;:9;;52886:1;52878:9;52874:702;;;52942:34;52951:10;52963:12;52942:8;:34::i;:::-;;52874:702;;;53002:4;:9;;53010:1;53002:9;52998:578;;;53086:13;;53054:61;;53071:4;;-1:-1:-1;;;;;53086:13:0;53102:12;53054:8;:61::i;:::-;53134:13;;-1:-1:-1;;;;;53134:13:0;:64;53199:12;53134:13;;53216:15;;53233:10;53245:24;:15;53265:3;53245:19;:24::i;:::-;53134:136;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52998:578;;;53373:13;;53341:61;;53358:4;;-1:-1:-1;;;;;53373:13:0;53389:12;53341:8;:61::i;:::-;53421:13;;-1:-1:-1;;;;;53421:13:0;:67;53489:12;53421:13;;53506:15;;53523:10;53535:24;:15;53555:3;53535:19;:24::i;:::-;53421:139;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52998:578;53620:10;53612:19;;;;:7;:19;;;;;;:37;;53636:12;53612:23;:37::i;:::-;53598:10;53590:19;;;;:7;:19;;;;;;;;:59;;;;53697:18;;53664;:30;;;;;;:51;53747:14;;:32;;53766:12;53747:18;:32::i;:::-;53730:14;:49;-1:-1:-1;;52623:1168:0;52563:1235;:::o;49677:80::-;45219:9;;-1:-1:-1;;;;;45219:9:0;45232:10;45219:23;45211:45;;;;-1:-1:-1;;;45211:45:0;;;;;;;:::i;:::-;49732:17:::1;:15;:17::i;:::-;49677:80::o:0;56969:104::-;57033:32;57043:10;57055:9;57033;:32::i;49765:148::-;45219:9;;-1:-1:-1;;;;;45219:9:0;45232:10;45219:23;45211:45;;;;-1:-1:-1;;;45211:45:0;;;;;;;:::i;:::-;49878:12:::1;::::0;49870:35:::1;::::0;49838:21:::1;::::0;-1:-1:-1;;;;;49878:12:0::1;::::0;49870:35;::::1;;;::::0;49838:21;;49824:11:::1;49870:35:::0;49824:11;49870:35;49838:21;49878:12;49870:35;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49813:100;49765:148::o:0;51283:358::-;2248:6;;-1:-1:-1;;;;;2248:6:0;805:10;2395:23;2387:68;;;;-1:-1:-1;;;2387:68:0;;;;;;;:::i;:::-;51470:11:::1;::::0;-1:-1:-1;;;51470:11:0;::::1;;;51449:17:::0;51414:32:::1;51435:11:::0;51414:18;:32:::1;:::i;:::-;:52;;;;:::i;:::-;:67;;;;51406:87;;;::::0;-1:-1:-1;;;51406:87:0;;16363:2:1;51406:87:0::1;::::0;::::1;16345:21:1::0;16402:1;16382:18;;;16375:29;-1:-1:-1;;;16420:18:1;;;16413:37;16467:18;;51406:87:0::1;16161:330:1::0;51406:87:0::1;51504:26;:47:::0;;-1:-1:-1;;;;51562:24:0;-1:-1:-1;;;51504:47:0::1;::::0;;::::1;;-1:-1:-1::0;;;;51562:24:0;;-1:-1:-1;;;51562:24:0;;::::1;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;51597:36:0::1;-1:-1:-1::0;;;51597:36:0;;;::::1;;::::0;;;::::1;::::0;;51283:358::o;2826:148::-;2248:6;;-1:-1:-1;;;;;2248:6:0;805:10;2395:23;2387:68;;;;-1:-1:-1;;;2387:68:0;;;;;;;:::i;:::-;2917:6:::1;::::0;2896:40:::1;::::0;2933:1:::1;::::0;-1:-1:-1;;;;;2917:6:0::1;::::0;2896:40:::1;::::0;2933:1;;2896:40:::1;2947:6;:19:::0;;-1:-1:-1;;;;;;2947:19:0::1;::::0;;2826:148::o;59584:1253::-;59692:7;59739:12;59725:11;:26;59717:78;;;;-1:-1:-1;;;59717:78:0;;12812:2:1;59717:78:0;;;12794:21:1;12851:2;12831:18;;;12824:30;12890:34;12870:18;;;12863:62;-1:-1:-1;;;12941:18:1;;;12934:37;12988:19;;59717:78:0;12610:403:1;59717:78:0;-1:-1:-1;;;;;59830:23:0;;59808:19;59830:23;;;:14;:23;;;;;;;;59868:17;59864:58;;59909:1;59902:8;;;;;59864:58;-1:-1:-1;;;;;59982:20:0;;;;;;:11;:20;;;;;60034:11;;60003:16;60018:1;60003:12;:16;:::i;:::-;59982:38;;;;;;;;;;;;;;;-1:-1:-1;59982:38:0;:48;;:63;59978:147;;-1:-1:-1;;;;;60069:20:0;;;;;;:11;:20;;;;;;60090:16;60105:1;60090:12;:16;:::i;:::-;60069:38;;;;;;;;;;;;;;;:44;;;60062:51;;;;;59978:147;-1:-1:-1;;;;;60186:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;60182:88:0;;;60257:1;60250:8;;;;;60182:88;60282:12;;60324:16;60339:1;60324:12;:16;:::i;:::-;60309:31;;60351:428;60366:5;60358:13;;:5;:13;;;60351:428;;;60388:13;60430:1;60413:13;60421:5;60413;:13;:::i;:::-;60412:19;;;;:::i;:::-;60404:27;;:5;:27;:::i;:::-;-1:-1:-1;;;;;60496:20:0;;60473;60496;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;60473:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;60388:43;;-1:-1:-1;60543:27:0;;60539:229;;;60598:8;;;;-1:-1:-1;60591:15:0;;-1:-1:-1;;;;60591:15:0;60539:229;60632:12;;:26;;;-1:-1:-1;60628:140:0;;;60687:6;60679:14;;60628:140;;;60742:10;60751:1;60742:6;:10;:::i;:::-;60734:18;;60628:140;60373:406;;60351:428;;;-1:-1:-1;;;;;;60796:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;59584:1253:0;;;;:::o;54680:211::-;45219:9;;-1:-1:-1;;;;;45219:9:0;45232:10;45219:23;45211:45;;;;-1:-1:-1;;;45211:45:0;;;;;;;:::i;:::-;54788:94:::1;::::0;;;;::::1;::::0;;;-1:-1:-1;;;;;54788:94:0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;54777:5:::1;:106:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;54777:106:0;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;54777:106:0::1;::::0;;;::::1;;::::0;;;;;;::::1;::::0;;;;;;;;;::::1;::::0;::::1;:::i;:::-;;;;54680:211:::0;;:::o;16234:104::-;16290:13;16323:7;16316:14;;;;;:::i;46867:103::-;2248:6;;-1:-1:-1;;;;;2248:6:0;805:10;2395:23;2387:68;;;;-1:-1:-1;;;2387:68:0;;;;;;;:::i;:::-;46941:21:::1;46947:5;46954:7;46941:5;:21::i;49545:124::-:0;45219:9;;-1:-1:-1;;;;;45219:9:0;45232:10;45219:23;45211:45;;;;-1:-1:-1;;;45211:45:0;;;;;;;:::i;:::-;49628:22:::1;:33:::0;;;::::1;;-1:-1:-1::0;;;49628:33:0::1;-1:-1:-1::0;;;;49628:33:0;;::::1;::::0;;;::::1;::::0;;49545:124::o;20382:377::-;805:10;20475:4;20519:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20519:34:0;;;;;;;;;;20572:35;;;;20564:85;;;;-1:-1:-1;;;20564:85:0;;17440:2:1;20564:85:0;;;17422:21:1;17479:2;17459:18;;;17452:30;17518:34;17498:18;;;17491:62;-1:-1:-1;;;17569:18:1;;;17562:35;17614:19;;20564:85:0;17238:401:1;20564:85:0;20660:67;805:10;20683:7;20692:34;20711:15;20692:16;:34;:::i;20660:67::-;-1:-1:-1;20747:4:0;;20382:377;-1:-1:-1;;;20382:377:0:o;54899:232::-;45219:9;;-1:-1:-1;;;;;45219:9:0;45232:10;45219:23;45211:45;;;;-1:-1:-1;;;45211:45:0;;;;;;;:::i;:::-;55011:25:::1;55039:5;55045:4;55039:11;;;;;;;;;;:::i;:::-;;;;;;;;;;;55011:39;;55079:5;55061:4;:15;;:23;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;55095:28:0;;-1:-1:-1;;;;;;55095:28:0::1;-1:-1:-1::0;;;;;55095:28:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;54899:232:0:o;17646:175::-;17732:4;17749:42;805:10;17773:9;17784:6;17749:9;:42::i;51133:142::-;51255:11;;51183:7;;51210:57;;51255:11;-1:-1:-1;;;51255:11:0;;;;;51210:40;;-1:-1:-1;;;51228:21:0;;;;51210:13;17223:12;;;17135:108;51210:13;:17;;:40::i;:::-;:44;;:57::i;:::-;51203:64;;51133:142;:::o;58898:255::-;-1:-1:-1;;;;;59037:23:0;;58990:7;59037:23;;;:14;:23;;;;;;;;59078:16;:67;;59144:1;59078:67;;;-1:-1:-1;;;;;59097:20:0;;;;;;:11;:20;;;;;;59118:16;59133:1;59118:12;:16;:::i;:::-;59097:38;;;;;;;;;;;;;;;:44;;;59078:67;59071:74;58898:255;-1:-1:-1;;;58898:255:0:o;44743:48::-;;;;;;;:::i;57507:1190::-;57700:23;55735:80;57829:6;:4;:6::i;:::-;57813:24;;;;;;57856:12;63237:9;;63127:153;57856:12;57750:165;;;;;;;8469:25:1;;;;8510:18;;;8503:34;;;;8553:18;;;8546:34;;;;57895:4:0;8596:18:1;;;;8589:60;;;;57750:165:0;;;;;;;;;;8441:19:1;;;57750:165:0;;57726:200;;;;;;55955:71;57984:140;;;8047:25:1;-1:-1:-1;;;;;8108:32:1;;8088:18;;;8081:60;8157:18;;;8150:34;;;8200:18;;;;8193:34;;;57984:140:0;;;;;;;;;;8019:19:1;;;57984:140:0;;;57960:175;;;;;;;-1:-1:-1;;;58189:123:0;;;6786:27:1;6829:11;;;6822:27;;;6865:12;;;6858:28;;;57726:200:0;;-1:-1:-1;;;6902:12:1;;58189:123:0;;;-1:-1:-1;;58189:123:0;;;;;;;;;58165:158;;58189:123;58165:158;;;;58336:17;58356:26;;;;;;;;;8887:25:1;;;8960:4;8948:17;;8928:18;;;8921:45;;;;8982:18;;;8975:34;;;9025:18;;;9018:34;;;58165:158:0;;-1:-1:-1;58336:17:0;58356:26;;8859:19:1;;58356:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;58356:26:0;;-1:-1:-1;;58356:26:0;;;-1:-1:-1;;;;;;;58401:23:0;;58393:74;;;;-1:-1:-1;;;58393:74:0;;15956:2:1;58393:74:0;;;15938:21:1;15995:2;15975:18;;;15968:30;16034:34;16014:18;;;16007:62;-1:-1:-1;;;16085:18:1;;;16078:36;16131:19;;58393:74:0;15754:402:1;58393:74:0;-1:-1:-1;;;;;58495:17:0;;;;;;:6;:17;;;;;:19;;;;;;:::i;:::-;;;;;58486:5;:28;58478:75;;;;-1:-1:-1;;;58478:75:0;;13975:2:1;58478:75:0;;;13957:21:1;14014:2;13994:18;;;13987:30;14053:34;14033:18;;;14026:62;-1:-1:-1;;;14104:18:1;;;14097:32;14146:19;;58478:75:0;13773:398:1;58478:75:0;58591:6;58572:15;:25;;58564:76;;;;-1:-1:-1;;;58564:76:0;;10855:2:1;58564:76:0;;;10837:21:1;10894:2;10874:18;;;10867:30;10933:34;10913:18;;;10906:62;-1:-1:-1;;;10984:18:1;;;10977:36;11030:19;;58564:76:0;10653:402:1;58564:76:0;58658:31;58668:9;58679;58658;:31::i;:::-;58651:38;;;;57507:1190;;;;;;;:::o;45140:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45140:27:0;;-1:-1:-1;45140:27:0;:::o;51863:166::-;2248:6;;-1:-1:-1;;;;;2248:6:0;805:10;2395:23;2387:68;;;;-1:-1:-1;;;2387:68:0;;;;;;;:::i;:::-;51916:12:::1;:19:::0;;51931:4:::1;-1:-1:-1::0;;51916:19:0;;::::1;;::::0;;51946:22:::1;:29:::0;;-1:-1:-1;;;;;;;51946:29:0;;::::1;::::0;::::1;::::0;;;52010:11:::1;::::0;;-1:-1:-1;;;;;51986:35:0;::::1;52010:11:::0;;::::1;;;-1:-1:-1::0;;;51986:35:0::1;::::0;;;::::1;::::0;;51863:166::o;52430:125::-;45219:9;;-1:-1:-1;;;;;45219:9:0;45232:10;45219:23;45211:45;;;;-1:-1:-1;;;45211:45:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52514:27:0;;;::::1;;::::0;;;:20:::1;:27;::::0;;;;:33;;-1:-1:-1;;52514:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52430:125::o;49134:285::-;45219:9;;-1:-1:-1;;;;;45219:9:0;45232:10;45219:23;45211:45;;;;-1:-1:-1;;;45211:45:0;;;;;;;:::i;:::-;49211:13:::1;:43:::0;;-1:-1:-1;;;;;;49211:43:0::1;-1:-1:-1::0;;;;;49211:43:0;::::1;::::0;;::::1;::::0;;;49297:23:::1;::::0;;-1:-1:-1;;;49297:23:0;;;;:21:::1;::::0;:23:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;49211:43;49297:23;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49279:50:0::1;;49338:4;49345:13;;;;;;;;;-1:-1:-1::0;;;;;49345:13:0::1;-1:-1:-1::0;;;;;49345:18:0::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49279:87;::::0;-1:-1:-1;;;;;;49279:87:0::1;::::0;;;;;;-1:-1:-1;;;;;7363:15:1;;;49279:87:0::1;::::0;::::1;7345:34:1::0;7415:15;;7395:18;;;7388:43;7280:18;;49279:87:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49265:11;:101:::0;;-1:-1:-1;;;;;;49265:101:0::1;-1:-1:-1::0;;;;;49265:101:0;;;::::1;::::0;;::::1;::::0;;49377:34:::1;;;::::0;::::1;53806:637:::0;-1:-1:-1;;;;;17407:18:0;;53873:7;17407:18;;;;;;;;;;;53944;53965:17;:15;:17::i;:::-;53944:38;-1:-1:-1;53997:15:0;53993:56;;-1:-1:-1;54036:1:0;;53806:637;-1:-1:-1;;;53806:637:0:o;53993:56::-;-1:-1:-1;;;;;54110:25:0;;54061:23;54110:25;;;:18;:25;;;;;;54087:18;;:49;;:22;:49::i;:::-;54061:75;-1:-1:-1;54153:19:0;;54149:268;;54189:12;54204:50;54243:10;54204:34;:15;54224:13;54204:19;:34::i;:50::-;54189:65;;54282:14;;54275:4;:21;54271:135;;;-1:-1:-1;;54324:14:0;;;53806:637;-1:-1:-1;;;;53806:637:0:o;54271:135::-;54386:4;53806:637;-1:-1:-1;;;;;53806:637:0:o;54149:268::-;-1:-1:-1;54434:1:0;;53806:637;-1:-1:-1;;;;53806:637:0:o;52167:121::-;45219:9;;-1:-1:-1;;;;;45219:9:0;45232:10;45219:23;45211:45;;;;-1:-1:-1;;;45211:45:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52249:25:0;;;::::1;;::::0;;;:18:::1;:25;::::0;;;;:31;;-1:-1:-1;;52249:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52167:121::o;3129:244::-;2248:6;;-1:-1:-1;;;;;2248:6:0;805:10;2395:23;2387:68;;;;-1:-1:-1;;;2387:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3218:22:0;::::1;3210:73;;;::::0;-1:-1:-1;;;3210:73:0;;12002:2:1;3210:73:0::1;::::0;::::1;11984:21:1::0;12041:2;12021:18;;;12014:30;12080:34;12060:18;;;12053:62;-1:-1:-1;;;12131:18:1;;;12124:36;12177:19;;3210:73:0::1;11800:402:1::0;3210:73:0::1;3320:6;::::0;3299:38:::1;::::0;-1:-1:-1;;;;;3299:38:0;;::::1;::::0;3320:6:::1;::::0;3299:38:::1;::::0;3320:6:::1;::::0;3299:38:::1;3348:6;:17:::0;;-1:-1:-1;;;;;;3348:17:0::1;-1:-1:-1::0;;;;;3348:17:0;;;::::1;::::0;;;::::1;::::0;;3129:244::o;23738:346::-;-1:-1:-1;;;;;23840:19:0;;23832:68;;;;-1:-1:-1;;;23832:68:0;;16698:2:1;23832:68:0;;;16680:21:1;16737:2;16717:18;;;16710:30;16776:34;16756:18;;;16749:62;-1:-1:-1;;;16827:18:1;;;16820:34;16871:19;;23832:68:0;16496:400:1;23832:68:0;-1:-1:-1;;;;;23919:21:0;;23911:68;;;;-1:-1:-1;;;23911:68:0;;12409:2:1;23911:68:0;;;12391:21:1;12448:2;12428:18;;;12421:30;12487:34;12467:18;;;12460:62;-1:-1:-1;;;12538:18:1;;;12531:32;12580:19;;23911:68:0;12207:398:1;23911:68:0;-1:-1:-1;;;;;23992:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24044:32;;7780:25:1;;;24044:32:0;;7753:18:1;24044:32:0;;;;;;;;23738:346;;;:::o;46978:1727::-;47088:12;;;;;:34;;-1:-1:-1;2248:6:0;;-1:-1:-1;;;;;47104:18:0;;;2248:6;;47104:18;47088:34;:59;;;-1:-1:-1;2248:6:0;;-1:-1:-1;;;;;47126:21:0;;;2248:6;;47126:21;47088:59;:96;;;-1:-1:-1;47170:13:0;;-1:-1:-1;;;;;47151:33:0;;;47170:13;;47151:33;47088:96;47080:118;;;;-1:-1:-1;;;47080:118:0;;17103:2:1;47080:118:0;;;17085:21:1;17142:1;17122:18;;;17115:29;-1:-1:-1;;;17160:18:1;;;17153:39;17209:18;;47080:118:0;16901:332:1;47080:118:0;47259:22;;-1:-1:-1;;;47259:22:0;;;;:30;;47285:4;47259:30;:74;;;;-1:-1:-1;47306:18:0;;-1:-1:-1;;;47306:18:0;;;;:27;47259:74;:127;;;;-1:-1:-1;47358:13:0;;-1:-1:-1;;;;;47358:13:0;47350:36;;47259:127;:169;;;;-1:-1:-1;47403:11:0;;-1:-1:-1;;;;;47403:11:0;:25;;47259:169;:208;;;;-1:-1:-1;47456:11:0;;-1:-1:-1;;;;;47445:22:0;;;47456:11;;47445:22;;47259:208;:258;;;;-1:-1:-1;47503:13:0;;-1:-1:-1;;;;;47484:33:0;;;47503:13;;47484:33;;47259:258;:293;;;;-1:-1:-1;2248:6:0;;-1:-1:-1;;;;;47534:18:0;;;2248:6;;47534:18;;47259:293;:334;;;;-1:-1:-1;;;;;;47569:24:0;;47588:4;47569:24;;47259:334;47241:408;;;47620:17;:15;:17::i;:::-;-1:-1:-1;;;;;47666:29:0;;;;;;:20;:29;;;;;;;;47661:126;;47731:19;:17;:19::i;:::-;47720:7;:30;;47712:63;;;;-1:-1:-1;;;47712:63:0;;10506:2:1;47712:63:0;;;10488:21:1;10545:2;10525:18;;;10518:30;-1:-1:-1;;;10564:18:1;;;10557:50;10624:18;;47712:63:0;10304:344:1;47712:63:0;-1:-1:-1;;;;;47803:27:0;;;;;;:18;:27;;;;;;;;47799:899;;;47847:45;47863:7;47872:10;47884:7;47847:15;:45::i;:::-;46978:1727;;;:::o;47799:899::-;47970:11;;47925:14;;47942:40;;47970:11;-1:-1:-1;;;47970:11:0;;;;;47942:23;;:7;;-1:-1:-1;;;47954:10:0;;;47942:11;:23::i;:40::-;48054:11;;47925:57;;-1:-1:-1;47997:20:0;;48020:46;;48054:11;-1:-1:-1;;;48054:11:0;;;;;48020:29;;:7;;-1:-1:-1;;;48032:16:0;;;48020:11;:29::i;:46::-;48158:11;;47997:69;;-1:-1:-1;48081:30:0;;48114:56;;48158:11;-1:-1:-1;;;48158:11:0;;;;;48114:39;;:7;;-1:-1:-1;;;48126:26:0;;;48114:11;:39::i;:56::-;48081:89;-1:-1:-1;48195:65:0;48081:89;48195:37;48219:12;48195:37;:7;48207:6;48195:11;:19::i;:::-;:23;;:37::i;:65::-;48185:75;;48277:45;48293:7;48302:10;48314:7;48277:15;:45::i;:::-;48337:47;48353:7;48370:4;48377:6;48337:15;:47::i;:::-;48399:53;48415:7;48432:4;48439:12;48399:15;:53::i;:::-;48467:63;48483:7;48500:4;48507:22;48467:15;:63::i;:::-;48562:14;;:42;;48581:22;48562:18;:42::i;:::-;48545:14;:59;48640:18;;:46;;48663:22;48640;:46::i;:::-;48619:18;:67;-1:-1:-1;;;46978:1727:0;;;:::o;6180:98::-;6238:7;6265:5;6269:1;6265;:5;:::i;6561:98::-;6619:7;6646:5;6650:1;6646;:5;:::i;49952:471::-;45316:18;:25;;-1:-1:-1;;;;45316:25:0;-1:-1:-1;;;45316:25:0;;;45463:10:::1;::::0;;-1:-1:-1;;;;45668:30:0;;;;;45463:10:::1;-1:-1:-1::0;;;45463:10:0;::::1;::::0;::::1;::::0;-1:-1:-1;;;45511:16:0;::::1;::::0;::::1;::::0;-1:-1:-1;;;45575:26:0;;::::1;;45316:25:::0;50057:24:::2;50075:4;-1:-1:-1::0;;;;;17407:18:0;17380:7;17407:18;;;;;;;;;;;;17306:127;50057:24:::2;50026:55;;50119:14;;50096:20;:37;50092:324;;;50198:14;::::0;50173:40:::2;::::0;:20;;:24:::2;:40::i;:::-;50150:63;;50264:38;50281:20;50264:16;:38::i;:::-;50377:12;::::0;50369:35:::2;::::0;50333:21:::2;::::0;-1:-1:-1;;;;;50377:12:0::2;::::0;50369:35;::::2;;;::::0;50333:21;;50319:11:::2;50369:35:::0;50319:11;50369:35;50333:21;50377:12;50369:35;::::2;;;;;;;;;;;;;::::0;::::2;;;;;;50135:281;50092:324;-1:-1:-1::0;45721:10:0::1;:24:::0;;-1:-1:-1;;;;45756:36:0;-1:-1:-1;;;45721:24:0::1;::::0;;::::1;;-1:-1:-1::0;;;;45756:36:0;;-1:-1:-1;;;45756:36:0;;::::1;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;45803:56:0::1;-1:-1:-1::0;;;45803:56:0;;;::::1;;::::0;;;::::1;::::0;;45364:18;:26;;-1:-1:-1;;;;45364:26:0;;;49952:471::o;60845:438::-;-1:-1:-1;;;;;60962:21:0;;;60936:23;60962:21;;;:10;:21;;;;;;;;;;17407:18;;;;;;;61097:21;;;;:33;;;-1:-1:-1;;;;;;61097:33:0;;;;;;;61148:54;;60962:21;;;;;17407:18;;61097:33;;60962:21;;;61148:54;;60936:23;61148:54;61215:60;61230:15;61247:9;61258:16;61215:14;:60::i;:::-;60925:358;;60845:438;;:::o;22806:494::-;-1:-1:-1;;;;;22890:21:0;;22882:67;;;;-1:-1:-1;;;22882:67:0;;15148:2:1;22882:67:0;;;15130:21:1;15187:2;15167:18;;;15160:30;15226:34;15206:18;;;15199:62;-1:-1:-1;;;15277:18:1;;;15270:31;15318:19;;22882:67:0;14946:397:1;22882:67:0;-1:-1:-1;;;;;23049:18:0;;23024:22;23049:18;;;;;;;;;;;23086:24;;;;23078:71;;;;-1:-1:-1;;;23078:71:0;;11262:2:1;23078:71:0;;;11244:21:1;11301:2;11281:18;;;11274:30;11340:34;11320:18;;;11313:62;-1:-1:-1;;;11391:18:1;;;11384:32;11433:19;;23078:71:0;11060:398:1;23078:71:0;23181:23;23198:6;23181:14;:23;:::i;:::-;-1:-1:-1;;;;;23160:18:0;;:9;:18;;;;;;;;;;:44;;;;23215:12;:22;;23231:6;;23160:9;23215:22;;23231:6;;23215:22;:::i;:::-;;;;-1:-1:-1;;23255:37:0;;7780:25:1;;;23281:1:0;;-1:-1:-1;;;;;23255:37:0;;;;;7768:2:1;7753:18;23255:37:0;7634:177:1;6918:98:0;6976:7;7003:5;7007:1;7003;:5;:::i;7317:98::-;7375:7;7402:5;7406:1;7402;:5;:::i;54451:221::-;54557:11;;-1:-1:-1;;;;;54557:11:0;54500:7;17407:18;;;;;;;;;;;54580;54601:35;54619:16;54601:13;17223:12;;;17135:108;21249:604;-1:-1:-1;;;;;21355:20:0;;21347:70;;;;-1:-1:-1;;;21347:70:0;;15550:2:1;21347:70:0;;;15532:21:1;15589:2;15569:18;;;15562:30;15628:34;15608:18;;;15601:62;-1:-1:-1;;;15679:18:1;;;15672:35;15724:19;;21347:70:0;15348:401:1;21347:70:0;-1:-1:-1;;;;;21436:23:0;;21428:71;;;;-1:-1:-1;;;21428:71:0;;10102:2:1;21428:71:0;;;10084:21:1;10141:2;10121:18;;;10114:30;10180:34;10160:18;;;10153:62;-1:-1:-1;;;10231:18:1;;;10224:33;10274:19;;21428:71:0;9900:399:1;21428:71:0;-1:-1:-1;;;;;21596:17:0;;21572:21;21596:17;;;;;;;;;;;21632:23;;;;21624:74;;;;-1:-1:-1;;;21624:74:0;;13220:2:1;21624:74:0;;;13202:21:1;13259:2;13239:18;;;13232:30;13298:34;13278:18;;;13271:62;-1:-1:-1;;;13349:18:1;;;13342:36;13395:19;;21624:74:0;13018:402:1;21624:74:0;21729:22;21745:6;21729:13;:22;:::i;:::-;-1:-1:-1;;;;;21709:17:0;;;:9;:17;;;;;;;;;;;:42;;;;21762:20;;;;;;;;:30;;21786:6;;21709:9;21762:30;;21786:6;;21762:30;:::i;:::-;;;;;;;;21827:9;-1:-1:-1;;;;;21810:35:0;21819:6;-1:-1:-1;;;;;21810:35:0;;21838:6;21810:35;;;;7780:25:1;;7768:2;7753:18;;7634:177;21810:35:0;;;;;;;;21336:517;21249:604;;;:::o;50465:596::-;50619:16;;;50633:1;50619:16;;;;;;;;50595:21;;50619:16;;;;;;;;;;-1:-1:-1;50619:16:0;50595:40;;50664:4;50646;50651:1;50646:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;50646:23:0;;;:7;;;;;;;;;;:23;;;;50690:13;;:20;;;-1:-1:-1;;;50690:20:0;;;;:13;;;;;:18;;:20;;;;;50646:7;;50690:20;;;;;:13;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50680:4;50685:1;50680:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;50680:30:0;;;:7;;;;;;;;;:30;50755:13;;50723:60;;50740:4;;50755:13;50771:11;50723:8;:60::i;:::-;50822:13;;-1:-1:-1;;;;;50822:13:0;:64;50901:11;50822:13;50971:4;50998;51018:24;:15;51036:6;51018:24;:::i;:::-;50822:231;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61291:947;61397:6;-1:-1:-1;;;;;61387:16:0;:6;-1:-1:-1;;;;;61387:16:0;;;:30;;;;;61416:1;61407:6;:10;61387:30;61383:848;;;-1:-1:-1;;;;;61438:20:0;;;61434:385;;-1:-1:-1;;;;;61546:22:0;;61527:16;61546:22;;;:14;:22;;;;;;;;;61607:13;:60;;61666:1;61607:60;;;-1:-1:-1;;;;;61623:19:0;;;;;;:11;:19;;;;;;61643:13;61655:1;61643:9;:13;:::i;:::-;61623:34;;;;;;;;;;;;;;;:40;;;61607:60;61587:80;-1:-1:-1;61686:17:0;61706:21;61587:80;61720:6;61706:13;:21::i;:::-;61686:41;;61746:57;61763:6;61771:9;61782;61793;61746:16;:57::i;:::-;61460:359;;;61434:385;-1:-1:-1;;;;;61839:20:0;;;61835:385;;-1:-1:-1;;;;;61947:22:0;;61928:16;61947:22;;;:14;:22;;;;;;;;;62008:13;:60;;62067:1;62008:60;;;-1:-1:-1;;;;;62024:19:0;;;;;;:11;:19;;;;;;62044:13;62056:1;62044:9;:13;:::i;:::-;62024:34;;;;;;;;;;;;;;;:40;;;62008:60;61988:80;-1:-1:-1;62087:17:0;62107:21;61988:80;62121:6;62107:13;:21::i;:::-;62087:41;;62147:57;62164:6;62172:9;62183;62194;62246:704;62425:18;62446:76;62453:12;62446:76;;;;;;;;;;;;;;;;;:6;:76::i;:::-;62425:97;;62554:1;62539:12;:16;;;:85;;;;-1:-1:-1;;;;;;62559:22:0;;;;;;:11;:22;;;;;:65;;;;62582:16;62597:1;62582:12;:16;:::i;:::-;62559:40;;;;;;;;;;;;;;;-1:-1:-1;62559:40:0;:50;;:65;62539:85;62535:339;;;-1:-1:-1;;;;;62641:22:0;;;;;;:11;:22;;;;;62690:8;;62664:16;62679:1;62664:12;:16;:::i;:::-;62641:40;;;;;;;;;;;;;-1:-1:-1;62641:40:0;:46;;:57;62535:339;;;62770:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62731:22:0;;-1:-1:-1;62731:22:0;;;:11;:22;;;;;:36;;;;;;;;;;;:72;;;;-1:-1:-1;;62731:72:0;;;;;;;;-1:-1:-1;62731:72:0;;;;62846:16;;62731:36;;62846:16;:::i;:::-;-1:-1:-1;;;;;62818:25:0;;;;;;:14;:25;;;;;:44;;-1:-1:-1;;62818:44:0;;;;;;;;;;;;62535:339;62891:51;;;19993:25:1;;;20049:2;20034:18;;20027:34;;;-1:-1:-1;;;;;62891:51:0;;;;;19966:18:1;62891:51:0;;;;;;;62414:536;62246:704;;;;:::o;62958:161::-;63033:6;63071:12;63064:5;63060:9;;63052:32;;;;-1:-1:-1;;;63052:32:0;;;;;;;;:::i;:::-;-1:-1:-1;63109:1:0;;62958:161;-1:-1:-1;;62958:161:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:134:1;82:20;;111:31;82:20;111:31;:::i;:::-;14:134;;;:::o;153:919::-;207:5;260:3;253:4;245:6;241:17;237:27;227:55;;278:1;275;268:12;227:55;314:6;301:20;340:4;363:18;400:2;396;393:10;390:36;;;406:18;;:::i;:::-;452:2;449:1;445:10;484:2;478:9;547:2;543:7;538:2;534;530:11;526:25;518:6;514:38;602:6;590:10;587:22;582:2;570:10;567:18;564:46;561:72;;;613:18;;:::i;:::-;649:2;642:22;699:18;;;733:15;;;;-1:-1:-1;768:15:1;;;802;;;798:24;;795:33;-1:-1:-1;792:53:1;;;841:1;838;831:12;792:53;863:1;854:10;;873:169;887:2;884:1;881:9;873:169;;;944:23;963:3;944:23;:::i;:::-;932:36;;988:12;;;;905:1;898:9;;;;;1020:12;;873:169;;;-1:-1:-1;1060:6:1;153:919;-1:-1:-1;;;;;;;153:919:1:o;1077:160::-;1142:20;;1198:13;;1191:21;1181:32;;1171:60;;1227:1;1224;1217:12;1242:159;1309:20;;1369:6;1358:18;;1348:29;;1338:57;;1391:1;1388;1381:12;1406:156;1472:20;;1532:4;1521:16;;1511:27;;1501:55;;1552:1;1549;1542:12;1567:247;1626:6;1679:2;1667:9;1658:7;1654:23;1650:32;1647:52;;;1695:1;1692;1685:12;1647:52;1734:9;1721:23;1753:31;1778:5;1753:31;:::i;1819:251::-;1889:6;1942:2;1930:9;1921:7;1917:23;1913:32;1910:52;;;1958:1;1955;1948:12;1910:52;1990:9;1984:16;2009:31;2034:5;2009:31;:::i;2075:388::-;2143:6;2151;2204:2;2192:9;2183:7;2179:23;2175:32;2172:52;;;2220:1;2217;2210:12;2172:52;2259:9;2246:23;2278:31;2303:5;2278:31;:::i;:::-;2328:5;-1:-1:-1;2385:2:1;2370:18;;2357:32;2398:33;2357:32;2398:33;:::i;:::-;2450:7;2440:17;;;2075:388;;;;;:::o;2468:456::-;2545:6;2553;2561;2614:2;2602:9;2593:7;2589:23;2585:32;2582:52;;;2630:1;2627;2620:12;2582:52;2669:9;2656:23;2688:31;2713:5;2688:31;:::i;:::-;2738:5;-1:-1:-1;2795:2:1;2780:18;;2767:32;2808:33;2767:32;2808:33;:::i;:::-;2468:456;;2860:7;;-1:-1:-1;;;2914:2:1;2899:18;;;;2886:32;;2468:456::o;2929:315::-;2994:6;3002;3055:2;3043:9;3034:7;3030:23;3026:32;3023:52;;;3071:1;3068;3061:12;3023:52;3110:9;3097:23;3129:31;3154:5;3129:31;:::i;:::-;3179:5;-1:-1:-1;3203:35:1;3234:2;3219:18;;3203:35;:::i;:::-;3193:45;;2929:315;;;;;:::o;3249:::-;3317:6;3325;3378:2;3366:9;3357:7;3353:23;3349:32;3346:52;;;3394:1;3391;3384:12;3346:52;3433:9;3420:23;3452:31;3477:5;3452:31;:::i;:::-;3502:5;3554:2;3539:18;;;;3526:32;;-1:-1:-1;;;3249:315:1:o;3569:592::-;3671:6;3679;3687;3695;3703;3711;3764:3;3752:9;3743:7;3739:23;3735:33;3732:53;;;3781:1;3778;3771:12;3732:53;3820:9;3807:23;3839:31;3864:5;3839:31;:::i;:::-;3889:5;-1:-1:-1;3941:2:1;3926:18;;3913:32;;-1:-1:-1;3992:2:1;3977:18;;3964:32;;-1:-1:-1;4015:36:1;4047:2;4032:18;;4015:36;:::i;:::-;4005:46;;4098:3;4087:9;4083:19;4070:33;4060:43;;4150:3;4139:9;4135:19;4122:33;4112:43;;3569:592;;;;;;;;:::o;4166:419::-;4233:6;4241;4294:2;4282:9;4273:7;4269:23;4265:32;4262:52;;;4310:1;4307;4300:12;4262:52;4349:9;4336:23;4368:31;4393:5;4368:31;:::i;:::-;4418:5;-1:-1:-1;4475:2:1;4460:18;;4447:32;4523:10;4510:24;;4498:37;;4488:65;;4549:1;4546;4539:12;4590:483;4683:6;4691;4744:2;4732:9;4723:7;4719:23;4715:32;4712:52;;;4760:1;4757;4750:12;4712:52;4800:9;4787:23;4833:18;4825:6;4822:30;4819:50;;;4865:1;4862;4855:12;4819:50;4888:61;4941:7;4932:6;4921:9;4917:22;4888:61;:::i;:::-;4878:71;;;4999:2;4988:9;4984:18;4971:32;5012:31;5037:5;5012:31;:::i;5078:180::-;5134:6;5187:2;5175:9;5166:7;5162:23;5158:32;5155:52;;;5203:1;5200;5193:12;5155:52;5226:26;5242:9;5226:26;:::i;5263:184::-;5321:6;5374:2;5362:9;5353:7;5349:23;5345:32;5342:52;;;5390:1;5387;5380:12;5342:52;5413:28;5431:9;5413:28;:::i;5452:328::-;5526:6;5534;5542;5595:2;5583:9;5574:7;5570:23;5566:32;5563:52;;;5611:1;5608;5601:12;5563:52;5634:28;5652:9;5634:28;:::i;:::-;5624:38;;5681:37;5714:2;5703:9;5699:18;5681:37;:::i;:::-;5671:47;;5737:37;5770:2;5759:9;5755:18;5737:37;:::i;:::-;5727:47;;5452:328;;;;;:::o;5785:180::-;5844:6;5897:2;5885:9;5876:7;5872:23;5868:32;5865:52;;;5913:1;5910;5903:12;5865:52;-1:-1:-1;5936:23:1;;5785:180;-1:-1:-1;5785:180:1:o;5970:553::-;6070:6;6078;6086;6139:2;6127:9;6118:7;6114:23;6110:32;6107:52;;;6155:1;6152;6145:12;6107:52;6178:27;6195:9;6178:27;:::i;:::-;6168:37;;6256:2;6245:9;6241:18;6228:32;6283:18;6275:6;6272:30;6269:50;;;6315:1;6312;6305:12;6269:50;6338:61;6391:7;6382:6;6371:9;6367:22;6338:61;:::i;:::-;6328:71;;;6449:2;6438:9;6434:18;6421:32;6462:31;6487:5;6462:31;:::i;:::-;6512:5;6502:15;;;5970:553;;;;;:::o;9298:597::-;9410:4;9439:2;9468;9457:9;9450:21;9500:6;9494:13;9543:6;9538:2;9527:9;9523:18;9516:34;9568:1;9578:140;9592:6;9589:1;9586:13;9578:140;;;9687:14;;;9683:23;;9677:30;9653:17;;;9672:2;9649:26;9642:66;9607:10;;9578:140;;;9736:6;9733:1;9730:13;9727:91;;;9806:1;9801:2;9792:6;9781:9;9777:22;9773:31;9766:42;9727:91;-1:-1:-1;9879:2:1;9858:15;-1:-1:-1;;9854:29:1;9839:45;;;;9886:2;9835:54;;9298:597;-1:-1:-1;;;9298:597:1:o;11463:332::-;11665:2;11647:21;;;11704:1;11684:18;;;11677:29;-1:-1:-1;;;11737:2:1;11722:18;;11715:39;11786:2;11771:18;;11463:332::o;14585:356::-;14787:2;14769:21;;;14806:18;;;14799:30;14865:34;14860:2;14845:18;;14838:62;14932:2;14917:18;;14585:356::o;17826:980::-;18088:4;18136:3;18125:9;18121:19;18167:6;18156:9;18149:25;18193:2;18231:6;18226:2;18215:9;18211:18;18204:34;18274:3;18269:2;18258:9;18254:18;18247:31;18298:6;18333;18327:13;18364:6;18356;18349:22;18402:3;18391:9;18387:19;18380:26;;18441:2;18433:6;18429:15;18415:29;;18462:1;18472:195;18486:6;18483:1;18480:13;18472:195;;;18551:13;;-1:-1:-1;;;;;18547:39:1;18535:52;;18642:15;;;;18607:12;;;;18583:1;18501:9;18472:195;;;-1:-1:-1;;;;;;;18723:32:1;;;;18718:2;18703:18;;18696:60;-1:-1:-1;;;18787:3:1;18772:19;18765:35;18684:3;17826:980;-1:-1:-1;;;17826:980:1:o;18811:1003::-;19070:4;19118:3;19107:9;19103:19;19149:6;19138:9;19131:25;19175:2;19213:6;19208:2;19197:9;19193:18;19186:34;19256:3;19251:2;19240:9;19236:18;19229:31;19280:6;19315;19309:13;19346:6;19338;19331:22;19384:3;19373:9;19369:19;19362:26;;19407:6;19404:1;19397:17;19450:2;19447:1;19437:16;19423:30;;19471:1;19481:194;19495:6;19492:1;19489:13;19481:194;;;19560:13;;-1:-1:-1;;;;;19556:39:1;19544:52;;19592:1;19651:14;;;;19616:12;;;;19510:9;19481:194;;20726:224;20765:3;20793:6;20826:2;20823:1;20819:10;20856:2;20853:1;20849:10;20887:3;20883:2;20879:12;20874:3;20871:21;20868:47;;;20895:18;;:::i;:::-;20931:13;;20726:224;-1:-1:-1;;;;20726:224:1:o;20955:128::-;20995:3;21026:1;21022:6;21019:1;21016:13;21013:39;;;21032:18;;:::i;:::-;-1:-1:-1;21068:9:1;;20955:128::o;21088:228::-;21127:3;21155:10;21192:2;21189:1;21185:10;21222:2;21219:1;21215:10;21253:3;21249:2;21245:12;21240:3;21237:21;21234:47;;;21261:18;;:::i;21321:120::-;21361:1;21387;21377:35;;21392:18;;:::i;:::-;-1:-1:-1;21426:9:1;;21321:120::o;21446:191::-;21485:1;21511:10;21548:2;21545:1;21541:10;21570:3;21560:37;;21577:18;;:::i;:::-;21615:10;;21611:20;;;;;21446:191;-1:-1:-1;;21446:191:1:o;21642:168::-;21682:7;21748:1;21744;21740:6;21736:14;21733:1;21730:21;21725:1;21718:9;21711:17;21707:45;21704:71;;;21755:18;;:::i;:::-;-1:-1:-1;21795:9:1;;21642:168::o;21815:125::-;21855:4;21883:1;21880;21877:8;21874:34;;;21888:18;;:::i;:::-;-1:-1:-1;21925:9:1;;21815:125::o;21945:221::-;21984:4;22013:10;22073;;;;22043;;22095:12;;;22092:38;;;22110:18;;:::i;:::-;22147:13;;21945:221;-1:-1:-1;;;21945:221:1:o;22171:380::-;22250:1;22246:12;;;;22293;;;22314:61;;22368:4;22360:6;22356:17;22346:27;;22314:61;22421:2;22413:6;22410:14;22390:18;22387:38;22384:161;;;22467:10;22462:3;22458:20;22455:1;22448:31;22502:4;22499:1;22492:15;22530:4;22527:1;22520:15;22384:161;;22171:380;;;:::o;22556:135::-;22595:3;-1:-1:-1;;22616:17:1;;22613:43;;;22636:18;;:::i;:::-;-1:-1:-1;22683:1:1;22672:13;;22556:135::o;22696:127::-;22757:10;22752:3;22748:20;22745:1;22738:31;22788:4;22785:1;22778:15;22812:4;22809:1;22802:15;22828:127;22889:10;22884:3;22880:20;22877:1;22870:31;22920:4;22917:1;22910:15;22944:4;22941:1;22934:15;22960:127;23021:10;23016:3;23012:20;23009:1;23002:31;23052:4;23049:1;23042:15;23076:4;23073:1;23066:15;23092:127;23153:10;23148:3;23144:20;23141:1;23134:31;23184:4;23181:1;23174:15;23208:4;23205:1;23198:15;23224:131;-1:-1:-1;;;;;23299:31:1;;23289:42;;23279:70;;23345:1;23342;23335:12

Swarm Source

ipfs://8893db540e80c190e8d35a35dd62d7de99c95a91d48de35dca5bd762235ff9b9
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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