ETH Price: $3,484.25 (+5.67%)

Token

SAGA ($SAGA)
 

Overview

Max Total Supply

1,000,000,000 $SAGA

Holders

22

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,051,804.10068976659111218 $SAGA

Value
$0.00
0x6e0afe8b5b3fa2e86aee24065b34d1cd7873aca6
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:
SAGACoin

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-16
*/

/**
 
░██████╗░█████╗░░██████╗░░█████╗░
██╔════╝██╔══██╗██╔════╝░██╔══██╗
╚█████╗░███████║██║░░██╗░███████║
░╚═══██╗██╔══██║██║░░╚██╗██╔══██║
██████╔╝██║░░██║╚██████╔╝██║░░██║
╚═════╝░╚═╝░░╚═╝░╚═════╝░╚═╝░░╚═╝

 **/

/*
 * 0 Buy Tax
 * 6% Sell Tax (2% AutoLP / 4% Buybacks)
 * There is no dev wallet, no team tokens
 * 100% liquidity Locked
 * Ownership renounced

          ////   FAIR STEALTH LAUNCH  ////

 * it is during our darkest moments that we must focus to see the light… 
 * Are you wise enough to find what’s coming next? can you solve the clue to unveil the wisdom?

          ░▀█▀░█░█░▀█▀░▀█▀░▀█▀░█▀▀░█▀▄
          ░░█░░█▄█░░█░░░█░░░█░░█▀▀░█▀▄
          ░░▀░░▀░▀░▀▀▀░░▀░░░▀░░▀▀▀░▀░▀

      https://twitter.com/sagaexperiment

        ░▀█▀░█▀▀░█░░░█▀▀░█▀▀░█▀▄░█▀█░█▄█
        ░░█░░█▀▀░█░░░█▀▀░█░█░█▀▄░█▀█░█░█
        ░░▀░░▀▀▀░▀▀▀░▀▀▀░▀▀▀░▀░▀░▀░▀░▀░▀

      https://t.me/SagaExperiment
 */

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

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

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

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

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

// 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 generally not needed starting with Solidity 0.8, since 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. 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;
        }
    }
}

contract SAGACoin is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public sellTotalFees;
    uint256 public constant sellLiquidityFee = 2;
    uint256 public constant sellMarketingFee = 4;

    uint256 public tokensForLiquidity;
    uint256 public tokensForMarketing;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor () ERC20("SAGA", "$SAGA") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 totalSupply = 1_000_000_000 * 1e18; // 1 billion total supply

        maxTransactionAmount = (totalSupply * 2) / 100; // 2% from total supply maxTransactionAmountTxn
        maxWallet = (totalSupply * 2) / 100; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 2) / 10000; // 0.02% swap wallet

        sellTotalFees = sellLiquidityFee + sellMarketingFee;

        marketingWallet = address(0x42C178945019C1443b710488c178C3911DCCBd85); // set as dev wallet
    

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(marketingWallet, true);
        

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(marketingWallet, true);
        

        _mint(msg.sender, totalSupply);
       
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function startTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to]) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForDev = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;

        (success, ) = address(marketingWallet).call{value: ethForDev}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }
    }
}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","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":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600481526020017f53414741000000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f245341474100000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000b1e565b5080600490805190602001906200011b92919062000b1e565b5050506200013e62000132620005de60201b60201c565b620005e660201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a816001620006ac60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e857600080fd5b505afa158015620001fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000223919062000be5565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028657600080fd5b505afa1580156200029b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c1919062000be5565b6040518363ffffffff1660e01b8152600401620002e092919062000c98565b602060405180830381600087803b158015620002fb57600080fd5b505af115801562000310573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000336919062000be5565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003ab600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006ac60201b60201c565b620003e0600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200079660201b60201c565b60006b033b2e3c9fd0803ce80000009050606460028262000402919062000de9565b6200040e919062000db1565b600881905550606460028262000425919062000de9565b62000431919062000db1565b600a8190555061271060028262000449919062000de9565b62000455919062000db1565b600981905550600460026200046b919062000d54565b600e819055507342c178945019c1443b710488c178c3911dccbd85600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004e8620004da6200083760201b60201c565b60016200086160201b60201c565b620004fb3060016200086160201b60201c565b6200051061dead60016200086160201b60201c565b62000545600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200086160201b60201c565b62000567620005596200083760201b60201c565b6001620006ac60201b60201c565b6200057a306001620006ac60201b60201c565b6200058f61dead6001620006ac60201b60201c565b620005c4600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006ac60201b60201c565b620005d633826200099b60201b60201c565b505062000fc8565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006bc620005de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006e26200083760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200073b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007329062000ce2565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000871620005de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008976200083760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008e79062000ce2565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200098f919062000cc5565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a059062000d04565b60405180910390fd5b62000a226000838362000b1460201b60201c565b806002600082825462000a36919062000d54565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a8d919062000d54565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000af4919062000d26565b60405180910390a362000b106000838362000b1960201b60201c565b5050565b505050565b505050565b82805462000b2c9062000e94565b90600052602060002090601f01602090048101928262000b50576000855562000b9c565b82601f1062000b6b57805160ff191683800117855562000b9c565b8280016001018555821562000b9c579182015b8281111562000b9b57825182559160200191906001019062000b7e565b5b50905062000bab919062000baf565b5090565b5b8082111562000bca57600081600090555060010162000bb0565b5090565b60008151905062000bdf8162000fae565b92915050565b60006020828403121562000bfe5762000bfd62000f57565b5b600062000c0e8482850162000bce565b91505092915050565b62000c228162000e4a565b82525050565b62000c338162000e5e565b82525050565b600062000c4860208362000d43565b915062000c558262000f5c565b602082019050919050565b600062000c6f601f8362000d43565b915062000c7c8262000f85565b602082019050919050565b62000c928162000e8a565b82525050565b600060408201905062000caf600083018562000c17565b62000cbe602083018462000c17565b9392505050565b600060208201905062000cdc600083018462000c28565b92915050565b6000602082019050818103600083015262000cfd8162000c39565b9050919050565b6000602082019050818103600083015262000d1f8162000c60565b9050919050565b600060208201905062000d3d600083018462000c87565b92915050565b600082825260208201905092915050565b600062000d618262000e8a565b915062000d6e8362000e8a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000da65762000da562000eca565b5b828201905092915050565b600062000dbe8262000e8a565b915062000dcb8362000e8a565b92508262000dde5762000ddd62000ef9565b5b828204905092915050565b600062000df68262000e8a565b915062000e038362000e8a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e3f5762000e3e62000eca565b5b828202905092915050565b600062000e578262000e6a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000ead57607f821691505b6020821081141562000ec45762000ec362000f28565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000fb98162000e4a565b811462000fc557600080fd5b50565b60805160601c613f1e6200101160003960008181610a5701528181611c5d01528181612b0d01528181612bfd01528181612c2401528181612cc00152612ce70152613f1e6000f3fe60806040526004361061023f5760003560e01c80637571336a1161012e578063bbc0c742116100ab578063e2f456051161006f578063e2f45605146108b0578063e884f260146108db578063f2fde38b14610906578063f63743421461092f578063f8b45b051461095a57610246565b8063bbc0c742146107c9578063c0246668146107f4578063c876d0b91461081d578063c8c8ebe414610848578063dd62ed3e1461087357610246565b806395d89b41116100f257806395d89b41146106be5780639a7a23d6146106e9578063a457c2d714610712578063a9059cbb1461074f578063b62496f51461078c57610246565b80637571336a146105eb57806375f0a874146106145780638da5cb5b1461063f578063921369131461066a578063924de9b71461069557610246565b8063313ce567116101bc5780636a486a8e116101805780636a486a8e146105165780636ddd17131461054157806370a082311461056c578063715018a6146105a9578063751039fc146105c057610246565b8063313ce5671461041b578063395093511461044657806349bd5a5e146104835780634a62bb65146104ae5780634fbee193146104d957610246565b80631a8145bb116102035780631a8145bb146103465780631f3fed8f1461037157806323b872dd1461039c57806327c8f835146103d9578063293230b81461040457610246565b806306fdde031461024b578063095ea7b31461027657806310d5de53146102b35780631694505e146102f057806318160ddd1461031b57610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610985565b60405161026d919061340a565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190612f3b565b610a17565b6040516102aa91906133d4565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190612e0e565b610a35565b6040516102e791906133d4565b60405180910390f35b3480156102fc57600080fd5b50610305610a55565b60405161031291906133ef565b60405180910390f35b34801561032757600080fd5b50610330610a79565b60405161033d919061360c565b60405180910390f35b34801561035257600080fd5b5061035b610a83565b604051610368919061360c565b60405180910390f35b34801561037d57600080fd5b50610386610a89565b604051610393919061360c565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be9190612ea8565b610a8f565b6040516103d091906133d4565b60405180910390f35b3480156103e557600080fd5b506103ee610b87565b6040516103fb9190613358565b60405180910390f35b34801561041057600080fd5b50610419610b8d565b005b34801561042757600080fd5b50610430610c41565b60405161043d91906136b8565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190612f3b565b610c4a565b60405161047a91906133d4565b60405180910390f35b34801561048f57600080fd5b50610498610cf6565b6040516104a59190613358565b60405180910390f35b3480156104ba57600080fd5b506104c3610d1c565b6040516104d091906133d4565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190612e0e565b610d2f565b60405161050d91906133d4565b60405180910390f35b34801561052257600080fd5b5061052b610d85565b604051610538919061360c565b60405180910390f35b34801561054d57600080fd5b50610556610d8b565b60405161056391906133d4565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190612e0e565b610d9e565b6040516105a0919061360c565b60405180910390f35b3480156105b557600080fd5b506105be610de6565b005b3480156105cc57600080fd5b506105d5610e6e565b6040516105e291906133d4565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612efb565b610f0e565b005b34801561062057600080fd5b50610629610fe5565b6040516106369190613358565b60405180910390f35b34801561064b57600080fd5b5061065461100b565b6040516106619190613358565b60405180910390f35b34801561067657600080fd5b5061067f611035565b60405161068c919061360c565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190612f7b565b61103a565b005b3480156106ca57600080fd5b506106d36110d3565b6040516106e0919061340a565b60405180910390f35b3480156106f557600080fd5b50610710600480360381019061070b9190612efb565b611165565b005b34801561071e57600080fd5b5061073960048036038101906107349190612f3b565b611280565b60405161074691906133d4565b60405180910390f35b34801561075b57600080fd5b5061077660048036038101906107719190612f3b565b61136b565b60405161078391906133d4565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190612e0e565b611389565b6040516107c091906133d4565b60405180910390f35b3480156107d557600080fd5b506107de6113a9565b6040516107eb91906133d4565b60405180910390f35b34801561080057600080fd5b5061081b60048036038101906108169190612efb565b6113bc565b005b34801561082957600080fd5b506108326114e1565b60405161083f91906133d4565b60405180910390f35b34801561085457600080fd5b5061085d6114f4565b60405161086a919061360c565b60405180910390f35b34801561087f57600080fd5b5061089a60048036038101906108959190612e68565b6114fa565b6040516108a7919061360c565b60405180910390f35b3480156108bc57600080fd5b506108c5611581565b6040516108d2919061360c565b60405180910390f35b3480156108e757600080fd5b506108f0611587565b6040516108fd91906133d4565b60405180910390f35b34801561091257600080fd5b5061092d60048036038101906109289190612e0e565b611627565b005b34801561093b57600080fd5b5061094461171f565b604051610951919061360c565b60405180910390f35b34801561096657600080fd5b5061096f611724565b60405161097c919061360c565b60405180910390f35b60606003805461099490613918565b80601f01602080910402602001604051908101604052809291908181526020018280546109c090613918565b8015610a0d5780601f106109e257610100808354040283529160200191610a0d565b820191906000526020600020905b8154815290600101906020018083116109f057829003601f168201915b5050505050905090565b6000610a2b610a2461172a565b8484611732565b6001905092915050565b60126020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600f5481565b60105481565b6000610a9c8484846118fd565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ae761172a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e9061354c565b60405180910390fd5b610b7b85610b7361172a565b858403611732565b60019150509392505050565b61dead81565b610b9561172a565b73ffffffffffffffffffffffffffffffffffffffff16610bb361100b565b73ffffffffffffffffffffffffffffffffffffffff1614610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c009061356c565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b60006012905090565b6000610cec610c5761172a565b848460016000610c6561172a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ce79190613733565b611732565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60009054906101000a900460ff1681565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600e5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dee61172a565b73ffffffffffffffffffffffffffffffffffffffff16610e0c61100b565b73ffffffffffffffffffffffffffffffffffffffff1614610e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e599061356c565b60405180910390fd5b610e6c600061242d565b565b6000610e7861172a565b73ffffffffffffffffffffffffffffffffffffffff16610e9661100b565b73ffffffffffffffffffffffffffffffffffffffff1614610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee39061356c565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b610f1661172a565b73ffffffffffffffffffffffffffffffffffffffff16610f3461100b565b73ffffffffffffffffffffffffffffffffffffffff1614610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f819061356c565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600481565b61104261172a565b73ffffffffffffffffffffffffffffffffffffffff1661106061100b565b73ffffffffffffffffffffffffffffffffffffffff16146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad9061356c565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546110e290613918565b80601f016020809104026020016040519081016040528092919081815260200182805461110e90613918565b801561115b5780601f106111305761010080835404028352916020019161115b565b820191906000526020600020905b81548152906001019060200180831161113e57829003601f168201915b5050505050905090565b61116d61172a565b73ffffffffffffffffffffffffffffffffffffffff1661118b61100b565b73ffffffffffffffffffffffffffffffffffffffff16146111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d89061356c565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611272576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611269906134ac565b60405180910390fd5b61127c82826124f3565b5050565b6000806001600061128f61172a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561134c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611343906135ec565b60405180910390fd5b61136061135761172a565b85858403611732565b600191505092915050565b600061137f61137861172a565b84846118fd565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6113c461172a565b73ffffffffffffffffffffffffffffffffffffffff166113e261100b565b73ffffffffffffffffffffffffffffffffffffffff1614611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f9061356c565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516114d591906133d4565b60405180910390a25050565b600d60009054906101000a900460ff1681565b60085481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061159161172a565b73ffffffffffffffffffffffffffffffffffffffff166115af61100b565b73ffffffffffffffffffffffffffffffffffffffff1614611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc9061356c565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61162f61172a565b73ffffffffffffffffffffffffffffffffffffffff1661164d61100b565b73ffffffffffffffffffffffffffffffffffffffff16146116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a9061356c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a9061346c565b60405180910390fd5b61171c8161242d565b50565b600281565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611799906135ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611812576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118099061348c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118f0919061360c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561196d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119649061358c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d49061342c565b60405180910390fd5b60008114156119f7576119f283836000612594565b612428565b600b60009054906101000a900460ff16156120bc57611a1461100b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a825750611a5261100b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611abb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611af5575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b0e5750600660149054906101000a900460ff16155b156120bb57600b60019054906101000a900460ff16611c0857601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611bc85750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe9061344c565b60405180910390fd5b5b600d60009054906101000a900460ff1615611dd257611c2561100b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611cac57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d065750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611dd15743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d839061352c565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611e755750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f1c57600854811115611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb69061350c565b60405180910390fd5b600a54611ecb83610d9e565b82611ed69190613733565b1115611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e906135cc565b60405180910390fd5b6120ba565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611fbf5750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561200e57600854811115612009576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612000906134ec565b60405180910390fd5b6120b9565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166120b857600a5461206b83610d9e565b826120769190613733565b11156120b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ae906135cc565b60405180910390fd5b5b5b5b5b5b60006120c730610d9e565b9050600060095482101590508080156120ec5750600b60029054906101000a900460ff165b80156121055750600660149054906101000a900460ff16155b801561215b5750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121b15750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122075750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561224b576001600660146101000a81548160ff02191690831515021790555061222f612815565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123015750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561230b57600090505b6000811561241857601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156123f45761238d606461237f600e5488612a2290919063ffffffff16565b612a3890919063ffffffff16565b9050600e5460028261239f91906137ba565b6123a99190613789565b600f60008282546123ba9190613733565b92505081905550600e546004826123d191906137ba565b6123db9190613789565b601060008282546123ec9190613733565b925050819055505b600081111561240957612408873083612594565b5b80856124159190613814565b94505b612423878787612594565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fb9061358c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266b9061342c565b60405180910390fd5b61267f838383612a4e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fc906134cc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127989190613733565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127fc919061360c565b60405180910390a361280f848484612a53565b50505050565b600061282030610d9e565b90506000601054600f546128349190613733565b90506000808314806128465750600082145b1561285357505050612a20565b601460095461286291906137ba565b83111561287b57601460095461287891906137ba565b92505b6000600283600f548661288e91906137ba565b6128989190613789565b6128a29190613789565b905060006128b98286612a5890919063ffffffff16565b905060004790506128c982612a6e565b60006128de8247612a5890919063ffffffff16565b90506000612909876128fb60105485612a2290919063ffffffff16565b612a3890919063ffffffff16565b9050600081836129199190613814565b90506000600f819055506000601081905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161297190613343565b60006040518083038185875af1925050503d80600081146129ae576040519150601f19603f3d011682016040523d82523d6000602084013e6129b3565b606091505b5050809750506000861180156129c95750600081115b15612a16576129d88682612cba565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582600f54604051612a0d93929190613681565b60405180910390a15b5050505050505050505b565b60008183612a3091906137ba565b905092915050565b60008183612a469190613789565b905092915050565b505050565b505050565b60008183612a669190613814565b905092915050565b6000600267ffffffffffffffff811115612a8b57612a8a613a06565b5b604051908082528060200260200182016040528015612ab95781602001602082028036833780820191505090505b5090503081600081518110612ad157612ad06139d7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612b7157600080fd5b505afa158015612b85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ba99190612e3b565b81600181518110612bbd57612bbc6139d7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612c22307f000000000000000000000000000000000000000000000000000000000000000084611732565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612c84959493929190613627565b600060405180830381600087803b158015612c9e57600080fd5b505af1158015612cb2573d6000803e3d6000fd5b505050505050565b612ce5307f000000000000000000000000000000000000000000000000000000000000000084611732565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401612d4c96959493929190613373565b6060604051808303818588803b158015612d6557600080fd5b505af1158015612d79573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612d9e9190612fa8565b5050505050565b600081359050612db481613ea3565b92915050565b600081519050612dc981613ea3565b92915050565b600081359050612dde81613eba565b92915050565b600081359050612df381613ed1565b92915050565b600081519050612e0881613ed1565b92915050565b600060208284031215612e2457612e23613a35565b5b6000612e3284828501612da5565b91505092915050565b600060208284031215612e5157612e50613a35565b5b6000612e5f84828501612dba565b91505092915050565b60008060408385031215612e7f57612e7e613a35565b5b6000612e8d85828601612da5565b9250506020612e9e85828601612da5565b9150509250929050565b600080600060608486031215612ec157612ec0613a35565b5b6000612ecf86828701612da5565b9350506020612ee086828701612da5565b9250506040612ef186828701612de4565b9150509250925092565b60008060408385031215612f1257612f11613a35565b5b6000612f2085828601612da5565b9250506020612f3185828601612dcf565b9150509250929050565b60008060408385031215612f5257612f51613a35565b5b6000612f6085828601612da5565b9250506020612f7185828601612de4565b9150509250929050565b600060208284031215612f9157612f90613a35565b5b6000612f9f84828501612dcf565b91505092915050565b600080600060608486031215612fc157612fc0613a35565b5b6000612fcf86828701612df9565b9350506020612fe086828701612df9565b9250506040612ff186828701612df9565b9150509250925092565b60006130078383613013565b60208301905092915050565b61301c81613848565b82525050565b61302b81613848565b82525050565b600061303c826136e3565b6130468185613706565b9350613051836136d3565b8060005b838110156130825781516130698882612ffb565b9750613074836136f9565b925050600181019050613055565b5085935050505092915050565b6130988161385a565b82525050565b6130a78161389d565b82525050565b6130b6816138af565b82525050565b60006130c7826136ee565b6130d18185613722565b93506130e18185602086016138e5565b6130ea81613a3a565b840191505092915050565b6000613102602383613722565b915061310d82613a4b565b604082019050919050565b6000613125601683613722565b915061313082613a9a565b602082019050919050565b6000613148602683613722565b915061315382613ac3565b604082019050919050565b600061316b602283613722565b915061317682613b12565b604082019050919050565b600061318e603983613722565b915061319982613b61565b604082019050919050565b60006131b1602683613722565b91506131bc82613bb0565b604082019050919050565b60006131d4603683613722565b91506131df82613bff565b604082019050919050565b60006131f7603583613722565b915061320282613c4e565b604082019050919050565b600061321a604983613722565b915061322582613c9d565b606082019050919050565b600061323d602883613722565b915061324882613d12565b604082019050919050565b6000613260602083613722565b915061326b82613d61565b602082019050919050565b6000613283602583613722565b915061328e82613d8a565b604082019050919050565b60006132a6600083613717565b91506132b182613dd9565b600082019050919050565b60006132c9602483613722565b91506132d482613ddc565b604082019050919050565b60006132ec601383613722565b91506132f782613e2b565b602082019050919050565b600061330f602583613722565b915061331a82613e54565b604082019050919050565b61332e81613886565b82525050565b61333d81613890565b82525050565b600061334e82613299565b9150819050919050565b600060208201905061336d6000830184613022565b92915050565b600060c0820190506133886000830189613022565b6133956020830188613325565b6133a260408301876130ad565b6133af60608301866130ad565b6133bc6080830185613022565b6133c960a0830184613325565b979650505050505050565b60006020820190506133e9600083018461308f565b92915050565b6000602082019050613404600083018461309e565b92915050565b6000602082019050818103600083015261342481846130bc565b905092915050565b60006020820190508181036000830152613445816130f5565b9050919050565b6000602082019050818103600083015261346581613118565b9050919050565b600060208201905081810360008301526134858161313b565b9050919050565b600060208201905081810360008301526134a58161315e565b9050919050565b600060208201905081810360008301526134c581613181565b9050919050565b600060208201905081810360008301526134e5816131a4565b9050919050565b60006020820190508181036000830152613505816131c7565b9050919050565b60006020820190508181036000830152613525816131ea565b9050919050565b600060208201905081810360008301526135458161320d565b9050919050565b6000602082019050818103600083015261356581613230565b9050919050565b6000602082019050818103600083015261358581613253565b9050919050565b600060208201905081810360008301526135a581613276565b9050919050565b600060208201905081810360008301526135c5816132bc565b9050919050565b600060208201905081810360008301526135e5816132df565b9050919050565b6000602082019050818103600083015261360581613302565b9050919050565b60006020820190506136216000830184613325565b92915050565b600060a08201905061363c6000830188613325565b61364960208301876130ad565b818103604083015261365b8186613031565b905061366a6060830185613022565b6136776080830184613325565b9695505050505050565b60006060820190506136966000830186613325565b6136a36020830185613325565b6136b06040830184613325565b949350505050565b60006020820190506136cd6000830184613334565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600061373e82613886565b915061374983613886565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561377e5761377d61394a565b5b828201905092915050565b600061379482613886565b915061379f83613886565b9250826137af576137ae613979565b5b828204905092915050565b60006137c582613886565b91506137d083613886565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138095761380861394a565b5b828202905092915050565b600061381f82613886565b915061382a83613886565b92508282101561383d5761383c61394a565b5b828203905092915050565b600061385382613866565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006138a8826138c1565b9050919050565b60006138ba82613886565b9050919050565b60006138cc826138d3565b9050919050565b60006138de82613866565b9050919050565b60005b838110156139035780820151818401526020810190506138e8565b83811115613912576000848401525b50505050565b6000600282049050600182168061393057607f821691505b60208210811415613944576139436139a8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b613eac81613848565b8114613eb757600080fd5b50565b613ec38161385a565b8114613ece57600080fd5b50565b613eda81613886565b8114613ee557600080fd5b5056fea2646970667358221220922d9645fc73389088e56786bd22e81ada93cc17b2055073f92a1b00da9b8fe864736f6c63430008070033

Deployed Bytecode

0x60806040526004361061023f5760003560e01c80637571336a1161012e578063bbc0c742116100ab578063e2f456051161006f578063e2f45605146108b0578063e884f260146108db578063f2fde38b14610906578063f63743421461092f578063f8b45b051461095a57610246565b8063bbc0c742146107c9578063c0246668146107f4578063c876d0b91461081d578063c8c8ebe414610848578063dd62ed3e1461087357610246565b806395d89b41116100f257806395d89b41146106be5780639a7a23d6146106e9578063a457c2d714610712578063a9059cbb1461074f578063b62496f51461078c57610246565b80637571336a146105eb57806375f0a874146106145780638da5cb5b1461063f578063921369131461066a578063924de9b71461069557610246565b8063313ce567116101bc5780636a486a8e116101805780636a486a8e146105165780636ddd17131461054157806370a082311461056c578063715018a6146105a9578063751039fc146105c057610246565b8063313ce5671461041b578063395093511461044657806349bd5a5e146104835780634a62bb65146104ae5780634fbee193146104d957610246565b80631a8145bb116102035780631a8145bb146103465780631f3fed8f1461037157806323b872dd1461039c57806327c8f835146103d9578063293230b81461040457610246565b806306fdde031461024b578063095ea7b31461027657806310d5de53146102b35780631694505e146102f057806318160ddd1461031b57610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610985565b60405161026d919061340a565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190612f3b565b610a17565b6040516102aa91906133d4565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190612e0e565b610a35565b6040516102e791906133d4565b60405180910390f35b3480156102fc57600080fd5b50610305610a55565b60405161031291906133ef565b60405180910390f35b34801561032757600080fd5b50610330610a79565b60405161033d919061360c565b60405180910390f35b34801561035257600080fd5b5061035b610a83565b604051610368919061360c565b60405180910390f35b34801561037d57600080fd5b50610386610a89565b604051610393919061360c565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be9190612ea8565b610a8f565b6040516103d091906133d4565b60405180910390f35b3480156103e557600080fd5b506103ee610b87565b6040516103fb9190613358565b60405180910390f35b34801561041057600080fd5b50610419610b8d565b005b34801561042757600080fd5b50610430610c41565b60405161043d91906136b8565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190612f3b565b610c4a565b60405161047a91906133d4565b60405180910390f35b34801561048f57600080fd5b50610498610cf6565b6040516104a59190613358565b60405180910390f35b3480156104ba57600080fd5b506104c3610d1c565b6040516104d091906133d4565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190612e0e565b610d2f565b60405161050d91906133d4565b60405180910390f35b34801561052257600080fd5b5061052b610d85565b604051610538919061360c565b60405180910390f35b34801561054d57600080fd5b50610556610d8b565b60405161056391906133d4565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190612e0e565b610d9e565b6040516105a0919061360c565b60405180910390f35b3480156105b557600080fd5b506105be610de6565b005b3480156105cc57600080fd5b506105d5610e6e565b6040516105e291906133d4565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612efb565b610f0e565b005b34801561062057600080fd5b50610629610fe5565b6040516106369190613358565b60405180910390f35b34801561064b57600080fd5b5061065461100b565b6040516106619190613358565b60405180910390f35b34801561067657600080fd5b5061067f611035565b60405161068c919061360c565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190612f7b565b61103a565b005b3480156106ca57600080fd5b506106d36110d3565b6040516106e0919061340a565b60405180910390f35b3480156106f557600080fd5b50610710600480360381019061070b9190612efb565b611165565b005b34801561071e57600080fd5b5061073960048036038101906107349190612f3b565b611280565b60405161074691906133d4565b60405180910390f35b34801561075b57600080fd5b5061077660048036038101906107719190612f3b565b61136b565b60405161078391906133d4565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190612e0e565b611389565b6040516107c091906133d4565b60405180910390f35b3480156107d557600080fd5b506107de6113a9565b6040516107eb91906133d4565b60405180910390f35b34801561080057600080fd5b5061081b60048036038101906108169190612efb565b6113bc565b005b34801561082957600080fd5b506108326114e1565b60405161083f91906133d4565b60405180910390f35b34801561085457600080fd5b5061085d6114f4565b60405161086a919061360c565b60405180910390f35b34801561087f57600080fd5b5061089a60048036038101906108959190612e68565b6114fa565b6040516108a7919061360c565b60405180910390f35b3480156108bc57600080fd5b506108c5611581565b6040516108d2919061360c565b60405180910390f35b3480156108e757600080fd5b506108f0611587565b6040516108fd91906133d4565b60405180910390f35b34801561091257600080fd5b5061092d60048036038101906109289190612e0e565b611627565b005b34801561093b57600080fd5b5061094461171f565b604051610951919061360c565b60405180910390f35b34801561096657600080fd5b5061096f611724565b60405161097c919061360c565b60405180910390f35b60606003805461099490613918565b80601f01602080910402602001604051908101604052809291908181526020018280546109c090613918565b8015610a0d5780601f106109e257610100808354040283529160200191610a0d565b820191906000526020600020905b8154815290600101906020018083116109f057829003601f168201915b5050505050905090565b6000610a2b610a2461172a565b8484611732565b6001905092915050565b60126020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600f5481565b60105481565b6000610a9c8484846118fd565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ae761172a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e9061354c565b60405180910390fd5b610b7b85610b7361172a565b858403611732565b60019150509392505050565b61dead81565b610b9561172a565b73ffffffffffffffffffffffffffffffffffffffff16610bb361100b565b73ffffffffffffffffffffffffffffffffffffffff1614610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c009061356c565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b60006012905090565b6000610cec610c5761172a565b848460016000610c6561172a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ce79190613733565b611732565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60009054906101000a900460ff1681565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600e5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dee61172a565b73ffffffffffffffffffffffffffffffffffffffff16610e0c61100b565b73ffffffffffffffffffffffffffffffffffffffff1614610e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e599061356c565b60405180910390fd5b610e6c600061242d565b565b6000610e7861172a565b73ffffffffffffffffffffffffffffffffffffffff16610e9661100b565b73ffffffffffffffffffffffffffffffffffffffff1614610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee39061356c565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b610f1661172a565b73ffffffffffffffffffffffffffffffffffffffff16610f3461100b565b73ffffffffffffffffffffffffffffffffffffffff1614610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f819061356c565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600481565b61104261172a565b73ffffffffffffffffffffffffffffffffffffffff1661106061100b565b73ffffffffffffffffffffffffffffffffffffffff16146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad9061356c565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546110e290613918565b80601f016020809104026020016040519081016040528092919081815260200182805461110e90613918565b801561115b5780601f106111305761010080835404028352916020019161115b565b820191906000526020600020905b81548152906001019060200180831161113e57829003601f168201915b5050505050905090565b61116d61172a565b73ffffffffffffffffffffffffffffffffffffffff1661118b61100b565b73ffffffffffffffffffffffffffffffffffffffff16146111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d89061356c565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611272576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611269906134ac565b60405180910390fd5b61127c82826124f3565b5050565b6000806001600061128f61172a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561134c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611343906135ec565b60405180910390fd5b61136061135761172a565b85858403611732565b600191505092915050565b600061137f61137861172a565b84846118fd565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6113c461172a565b73ffffffffffffffffffffffffffffffffffffffff166113e261100b565b73ffffffffffffffffffffffffffffffffffffffff1614611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f9061356c565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516114d591906133d4565b60405180910390a25050565b600d60009054906101000a900460ff1681565b60085481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061159161172a565b73ffffffffffffffffffffffffffffffffffffffff166115af61100b565b73ffffffffffffffffffffffffffffffffffffffff1614611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc9061356c565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61162f61172a565b73ffffffffffffffffffffffffffffffffffffffff1661164d61100b565b73ffffffffffffffffffffffffffffffffffffffff16146116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a9061356c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a9061346c565b60405180910390fd5b61171c8161242d565b50565b600281565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611799906135ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611812576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118099061348c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118f0919061360c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561196d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119649061358c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d49061342c565b60405180910390fd5b60008114156119f7576119f283836000612594565b612428565b600b60009054906101000a900460ff16156120bc57611a1461100b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a825750611a5261100b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611abb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611af5575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b0e5750600660149054906101000a900460ff16155b156120bb57600b60019054906101000a900460ff16611c0857601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611bc85750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe9061344c565b60405180910390fd5b5b600d60009054906101000a900460ff1615611dd257611c2561100b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611cac57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d065750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611dd15743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d839061352c565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611e755750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f1c57600854811115611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb69061350c565b60405180910390fd5b600a54611ecb83610d9e565b82611ed69190613733565b1115611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e906135cc565b60405180910390fd5b6120ba565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611fbf5750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561200e57600854811115612009576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612000906134ec565b60405180910390fd5b6120b9565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166120b857600a5461206b83610d9e565b826120769190613733565b11156120b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ae906135cc565b60405180910390fd5b5b5b5b5b5b60006120c730610d9e565b9050600060095482101590508080156120ec5750600b60029054906101000a900460ff165b80156121055750600660149054906101000a900460ff16155b801561215b5750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121b15750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122075750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561224b576001600660146101000a81548160ff02191690831515021790555061222f612815565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123015750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561230b57600090505b6000811561241857601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156123f45761238d606461237f600e5488612a2290919063ffffffff16565b612a3890919063ffffffff16565b9050600e5460028261239f91906137ba565b6123a99190613789565b600f60008282546123ba9190613733565b92505081905550600e546004826123d191906137ba565b6123db9190613789565b601060008282546123ec9190613733565b925050819055505b600081111561240957612408873083612594565b5b80856124159190613814565b94505b612423878787612594565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fb9061358c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266b9061342c565b60405180910390fd5b61267f838383612a4e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fc906134cc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127989190613733565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127fc919061360c565b60405180910390a361280f848484612a53565b50505050565b600061282030610d9e565b90506000601054600f546128349190613733565b90506000808314806128465750600082145b1561285357505050612a20565b601460095461286291906137ba565b83111561287b57601460095461287891906137ba565b92505b6000600283600f548661288e91906137ba565b6128989190613789565b6128a29190613789565b905060006128b98286612a5890919063ffffffff16565b905060004790506128c982612a6e565b60006128de8247612a5890919063ffffffff16565b90506000612909876128fb60105485612a2290919063ffffffff16565b612a3890919063ffffffff16565b9050600081836129199190613814565b90506000600f819055506000601081905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161297190613343565b60006040518083038185875af1925050503d80600081146129ae576040519150601f19603f3d011682016040523d82523d6000602084013e6129b3565b606091505b5050809750506000861180156129c95750600081115b15612a16576129d88682612cba565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582600f54604051612a0d93929190613681565b60405180910390a15b5050505050505050505b565b60008183612a3091906137ba565b905092915050565b60008183612a469190613789565b905092915050565b505050565b505050565b60008183612a669190613814565b905092915050565b6000600267ffffffffffffffff811115612a8b57612a8a613a06565b5b604051908082528060200260200182016040528015612ab95781602001602082028036833780820191505090505b5090503081600081518110612ad157612ad06139d7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612b7157600080fd5b505afa158015612b85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ba99190612e3b565b81600181518110612bbd57612bbc6139d7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612c22307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611732565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612c84959493929190613627565b600060405180830381600087803b158015612c9e57600080fd5b505af1158015612cb2573d6000803e3d6000fd5b505050505050565b612ce5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611732565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401612d4c96959493929190613373565b6060604051808303818588803b158015612d6557600080fd5b505af1158015612d79573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612d9e9190612fa8565b5050505050565b600081359050612db481613ea3565b92915050565b600081519050612dc981613ea3565b92915050565b600081359050612dde81613eba565b92915050565b600081359050612df381613ed1565b92915050565b600081519050612e0881613ed1565b92915050565b600060208284031215612e2457612e23613a35565b5b6000612e3284828501612da5565b91505092915050565b600060208284031215612e5157612e50613a35565b5b6000612e5f84828501612dba565b91505092915050565b60008060408385031215612e7f57612e7e613a35565b5b6000612e8d85828601612da5565b9250506020612e9e85828601612da5565b9150509250929050565b600080600060608486031215612ec157612ec0613a35565b5b6000612ecf86828701612da5565b9350506020612ee086828701612da5565b9250506040612ef186828701612de4565b9150509250925092565b60008060408385031215612f1257612f11613a35565b5b6000612f2085828601612da5565b9250506020612f3185828601612dcf565b9150509250929050565b60008060408385031215612f5257612f51613a35565b5b6000612f6085828601612da5565b9250506020612f7185828601612de4565b9150509250929050565b600060208284031215612f9157612f90613a35565b5b6000612f9f84828501612dcf565b91505092915050565b600080600060608486031215612fc157612fc0613a35565b5b6000612fcf86828701612df9565b9350506020612fe086828701612df9565b9250506040612ff186828701612df9565b9150509250925092565b60006130078383613013565b60208301905092915050565b61301c81613848565b82525050565b61302b81613848565b82525050565b600061303c826136e3565b6130468185613706565b9350613051836136d3565b8060005b838110156130825781516130698882612ffb565b9750613074836136f9565b925050600181019050613055565b5085935050505092915050565b6130988161385a565b82525050565b6130a78161389d565b82525050565b6130b6816138af565b82525050565b60006130c7826136ee565b6130d18185613722565b93506130e18185602086016138e5565b6130ea81613a3a565b840191505092915050565b6000613102602383613722565b915061310d82613a4b565b604082019050919050565b6000613125601683613722565b915061313082613a9a565b602082019050919050565b6000613148602683613722565b915061315382613ac3565b604082019050919050565b600061316b602283613722565b915061317682613b12565b604082019050919050565b600061318e603983613722565b915061319982613b61565b604082019050919050565b60006131b1602683613722565b91506131bc82613bb0565b604082019050919050565b60006131d4603683613722565b91506131df82613bff565b604082019050919050565b60006131f7603583613722565b915061320282613c4e565b604082019050919050565b600061321a604983613722565b915061322582613c9d565b606082019050919050565b600061323d602883613722565b915061324882613d12565b604082019050919050565b6000613260602083613722565b915061326b82613d61565b602082019050919050565b6000613283602583613722565b915061328e82613d8a565b604082019050919050565b60006132a6600083613717565b91506132b182613dd9565b600082019050919050565b60006132c9602483613722565b91506132d482613ddc565b604082019050919050565b60006132ec601383613722565b91506132f782613e2b565b602082019050919050565b600061330f602583613722565b915061331a82613e54565b604082019050919050565b61332e81613886565b82525050565b61333d81613890565b82525050565b600061334e82613299565b9150819050919050565b600060208201905061336d6000830184613022565b92915050565b600060c0820190506133886000830189613022565b6133956020830188613325565b6133a260408301876130ad565b6133af60608301866130ad565b6133bc6080830185613022565b6133c960a0830184613325565b979650505050505050565b60006020820190506133e9600083018461308f565b92915050565b6000602082019050613404600083018461309e565b92915050565b6000602082019050818103600083015261342481846130bc565b905092915050565b60006020820190508181036000830152613445816130f5565b9050919050565b6000602082019050818103600083015261346581613118565b9050919050565b600060208201905081810360008301526134858161313b565b9050919050565b600060208201905081810360008301526134a58161315e565b9050919050565b600060208201905081810360008301526134c581613181565b9050919050565b600060208201905081810360008301526134e5816131a4565b9050919050565b60006020820190508181036000830152613505816131c7565b9050919050565b60006020820190508181036000830152613525816131ea565b9050919050565b600060208201905081810360008301526135458161320d565b9050919050565b6000602082019050818103600083015261356581613230565b9050919050565b6000602082019050818103600083015261358581613253565b9050919050565b600060208201905081810360008301526135a581613276565b9050919050565b600060208201905081810360008301526135c5816132bc565b9050919050565b600060208201905081810360008301526135e5816132df565b9050919050565b6000602082019050818103600083015261360581613302565b9050919050565b60006020820190506136216000830184613325565b92915050565b600060a08201905061363c6000830188613325565b61364960208301876130ad565b818103604083015261365b8186613031565b905061366a6060830185613022565b6136776080830184613325565b9695505050505050565b60006060820190506136966000830186613325565b6136a36020830185613325565b6136b06040830184613325565b949350505050565b60006020820190506136cd6000830184613334565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600061373e82613886565b915061374983613886565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561377e5761377d61394a565b5b828201905092915050565b600061379482613886565b915061379f83613886565b9250826137af576137ae613979565b5b828204905092915050565b60006137c582613886565b91506137d083613886565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138095761380861394a565b5b828202905092915050565b600061381f82613886565b915061382a83613886565b92508282101561383d5761383c61394a565b5b828203905092915050565b600061385382613866565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006138a8826138c1565b9050919050565b60006138ba82613886565b9050919050565b60006138cc826138d3565b9050919050565b60006138de82613866565b9050919050565b60005b838110156139035780820151818401526020810190506138e8565b83811115613912576000848401525b50505050565b6000600282049050600182168061393057607f821691505b60208210811415613944576139436139a8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b613eac81613848565b8114613eb757600080fd5b50565b613ec38161385a565b8114613ece57600080fd5b50565b613eda81613886565b8114613ee557600080fd5b5056fea2646970667358221220922d9645fc73389088e56786bd22e81ada93cc17b2055073f92a1b00da9b8fe864736f6c63430008070033

Deployed Bytecode Sourcemap

28611:12063:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11207:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13515:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29741:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28689:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12327:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29519:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29559;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14207:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28782:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32176:111;;;;;;;;;;;;;:::i;:::-;;12169:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15145:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28747:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29034:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33733:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29380:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29114:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12498:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5003:103;;;;;;;;;;;;;:::i;:::-;;32339:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32664:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28874:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4352:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29466:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32927:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11426:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33225:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15945:482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12888:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29962:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29074:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33035:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29332:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28919:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13167:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28961:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32521:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5261:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29415:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29001:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11207:100;11261:13;11294:5;11287:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11207:100;:::o;13515:210::-;13634:4;13656:39;13665:12;:10;:12::i;:::-;13679:7;13688:6;13656:8;:39::i;:::-;13713:4;13706:11;;13515:210;;;;:::o;29741:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;28689:51::-;;;:::o;12327:108::-;12388:7;12415:12;;12408:19;;12327:108;:::o;29519:33::-;;;;:::o;29559:::-;;;;:::o;14207:529::-;14347:4;14364:36;14374:6;14382:9;14393:6;14364:9;:36::i;:::-;14413:24;14440:11;:19;14452:6;14440:19;;;;;;;;;;;;;;;:33;14460:12;:10;:12::i;:::-;14440:33;;;;;;;;;;;;;;;;14413:60;;14526:6;14506:16;:26;;14484:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;14636:57;14645:6;14653:12;:10;:12::i;:::-;14686:6;14667:16;:25;14636:8;:57::i;:::-;14724:4;14717:11;;;14207:529;;;;;:::o;28782:53::-;28828:6;28782:53;:::o;32176:111::-;4583:12;:10;:12::i;:::-;4572:23;;:7;:5;:7::i;:::-;:23;;;4564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32246:4:::1;32230:13;;:20;;;;;;;;;;;;;;;;;;32275:4;32261:11;;:18;;;;;;;;;;;;;;;;;;32176:111::o:0;12169:93::-;12227:5;12252:2;12245:9;;12169:93;:::o;15145:297::-;15260:4;15282:130;15305:12;:10;:12::i;:::-;15332:7;15391:10;15354:11;:25;15366:12;:10;:12::i;:::-;15354:25;;;;;;;;;;;;;;;:34;15380:7;15354:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;15282:8;:130::i;:::-;15430:4;15423:11;;15145:297;;;;:::o;28747:28::-;;;;;;;;;;;;;:::o;29034:33::-;;;;;;;;;;;;;:::o;33733:126::-;33799:4;33823:19;:28;33843:7;33823:28;;;;;;;;;;;;;;;;;;;;;;;;;33816:35;;33733:126;;;:::o;29380:28::-;;;;:::o;29114:31::-;;;;;;;;;;;;;:::o;12498:177::-;12617:7;12649:9;:18;12659:7;12649:18;;;;;;;;;;;;;;;;12642:25;;12498:177;;;:::o;5003:103::-;4583:12;:10;:12::i;:::-;4572:23;;:7;:5;:7::i;:::-;:23;;;4564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5068:30:::1;5095:1;5068:18;:30::i;:::-;5003:103::o:0;32339:121::-;32391:4;4583:12;:10;:12::i;:::-;4572:23;;:7;:5;:7::i;:::-;:23;;;4564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32425:5:::1;32408:14;;:22;;;;;;;;;;;;;;;;;;32448:4;32441:11;;32339:121:::0;:::o;32664:167::-;4583:12;:10;:12::i;:::-;4572:23;;:7;:5;:7::i;:::-;:23;;;4564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32819:4:::1;32777:31;:39;32809:6;32777:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32664:167:::0;;:::o;28874:30::-;;;;;;;;;;;;;:::o;4352:87::-;4398:7;4425:6;;;;;;;;;;;4418:13;;4352:87;:::o;29466:44::-;29509:1;29466:44;:::o;32927:100::-;4583:12;:10;:12::i;:::-;4572:23;;:7;:5;:7::i;:::-;:23;;;4564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33012:7:::1;32998:11;;:21;;;;;;;;;;;;;;;;;;32927:100:::0;:::o;11426:104::-;11482:13;11515:7;11508:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11426:104;:::o;33225:304::-;4583:12;:10;:12::i;:::-;4572:23;;:7;:5;:7::i;:::-;:23;;;4564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33369:13:::1;;;;;;;;;;;33361:21;;:4;:21;;;;33339:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;33480:41;33509:4;33515:5;33480:28;:41::i;:::-;33225:304:::0;;:::o;15945:482::-;16065:4;16087:24;16114:11;:25;16126:12;:10;:12::i;:::-;16114:25;;;;;;;;;;;;;;;:34;16140:7;16114:34;;;;;;;;;;;;;;;;16087:61;;16201:15;16181:16;:35;;16159:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;16317:67;16326:12;:10;:12::i;:::-;16340:7;16368:15;16349:16;:34;16317:8;:67::i;:::-;16415:4;16408:11;;;15945:482;;;;:::o;12888:216::-;13010:4;13032:42;13042:12;:10;:12::i;:::-;13056:9;13067:6;13032:9;:42::i;:::-;13092:4;13085:11;;12888:216;;;;:::o;29962:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;29074:33::-;;;;;;;;;;;;;:::o;33035:182::-;4583:12;:10;:12::i;:::-;4572:23;;:7;:5;:7::i;:::-;:23;;;4564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33151:8:::1;33120:19;:28;33140:7;33120:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;33191:7;33175:34;;;33200:8;33175:34;;;;;;:::i;:::-;;;;;;;;33035:182:::0;;:::o;29332:39::-;;;;;;;;;;;;;:::o;28919:35::-;;;;:::o;13167:201::-;13301:7;13333:11;:18;13345:5;13333:18;;;;;;;;;;;;;;;:27;13352:7;13333:27;;;;;;;;;;;;;;;;13326:34;;13167:201;;;;:::o;28961:33::-;;;;:::o;32521:135::-;32581:4;4583:12;:10;:12::i;:::-;4572:23;;:7;:5;:7::i;:::-;:23;;;4564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32621:5:::1;32598:20;;:28;;;;;;;;;;;;;;;;;;32644:4;32637:11;;32521:135:::0;:::o;5261:238::-;4583:12;:10;:12::i;:::-;4572:23;;:7;:5;:7::i;:::-;:23;;;4564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5384:1:::1;5364:22;;:8;:22;;;;5342:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;5463:28;5482:8;5463:18;:28::i;:::-;5261:238:::0;:::o;29415:44::-;29458:1;29415:44;:::o;29001:24::-;;;;:::o;3194:98::-;3247:7;3274:10;3267:17;;3194:98;:::o;19735:380::-;19888:1;19871:19;;:5;:19;;;;19863:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19969:1;19950:21;;:7;:21;;;;19942:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20053:6;20023:11;:18;20035:5;20023:18;;;;;;;;;;;;;;;:27;20042:7;20023:27;;;;;;;;;;;;;;;:36;;;;20091:7;20075:32;;20084:5;20075:32;;;20100:6;20075:32;;;;;;:::i;:::-;;;;;;;;19735:380;;;:::o;33867:4224::-;34015:1;33999:18;;:4;:18;;;;33991:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34092:1;34078:16;;:2;:16;;;;34070:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;34161:1;34151:6;:11;34147:93;;;34179:28;34195:4;34201:2;34205:1;34179:15;:28::i;:::-;34222:7;;34147:93;34256:14;;;;;;;;;;;34252:2487;;;34317:7;:5;:7::i;:::-;34309:15;;:4;:15;;;;:49;;;;;34351:7;:5;:7::i;:::-;34345:13;;:2;:13;;;;34309:49;:86;;;;;34393:1;34379:16;;:2;:16;;;;34309:86;:128;;;;;34430:6;34416:21;;:2;:21;;;;34309:128;:158;;;;;34459:8;;;;;;;;;;;34458:9;34309:158;34287:2441;;;34507:13;;;;;;;;;;;34502:223;;34579:19;:25;34599:4;34579:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;34608:19;:23;34628:2;34608:23;;;;;;;;;;;;;;;;;;;;;;;;;34579:52;34545:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;34502:223;34881:20;;;;;;;;;;;34877:641;;;34962:7;:5;:7::i;:::-;34956:13;;:2;:13;;;;:72;;;;;35012:15;34998:30;;:2;:30;;;;34956:72;:129;;;;;35071:13;;;;;;;;;;;35057:28;;:2;:28;;;;34956:129;34926:573;;;35249:12;35174:28;:39;35203:9;35174:39;;;;;;;;;;;;;;;;:87;35136:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;35463:12;35421:28;:39;35450:9;35421:39;;;;;;;;;;;;;;;:54;;;;34926:573;34877:641;35592:25;:31;35618:4;35592:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;35649:31;:35;35681:2;35649:35;;;;;;;;;;;;;;;;;;;;;;;;;35648:36;35592:92;35566:1147;;;35771:20;;35761:6;:30;;35727:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;35979:9;;35962:13;35972:2;35962:9;:13::i;:::-;35953:6;:22;;;;:::i;:::-;:35;;35919:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;35566:1147;;;36157:25;:29;36183:2;36157:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;36212:31;:37;36244:4;36212:37;;;;;;;;;;;;;;;;;;;;;;;;;36211:38;36157:92;36131:582;;;36336:20;;36326:6;:30;;36292:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;36131:582;;;36493:31;:35;36525:2;36493:35;;;;;;;;;;;;;;;;;;;;;;;;;36488:225;;36613:9;;36596:13;36606:2;36596:9;:13::i;:::-;36587:6;:22;;;;:::i;:::-;:35;;36553:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;36488:225;36131:582;35566:1147;34287:2441;34252:2487;36751:28;36782:24;36800:4;36782:9;:24::i;:::-;36751:55;;36819:12;36858:18;;36834:20;:42;;36819:57;;36907:7;:35;;;;;36931:11;;;;;;;;;;;36907:35;:61;;;;;36960:8;;;;;;;;;;;36959:9;36907:61;:110;;;;;36986:25;:31;37012:4;36986:31;;;;;;;;;;;;;;;;;;;;;;;;;36985:32;36907:110;:153;;;;;37035:19;:25;37055:4;37035:25;;;;;;;;;;;;;;;;;;;;;;;;;37034:26;36907:153;:194;;;;;37078:19;:23;37098:2;37078:23;;;;;;;;;;;;;;;;;;;;;;;;;37077:24;36907:194;36889:326;;;37139:4;37128:8;;:15;;;;;;;;;;;;;;;;;;37160:10;:8;:10::i;:::-;37198:5;37187:8;;:16;;;;;;;;;;;;;;;;;;36889:326;37227:12;37243:8;;;;;;;;;;;37242:9;37227:24;;37353:19;:25;37373:4;37353:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37382:19;:23;37402:2;37382:23;;;;;;;;;;;;;;;;;;;;;;;;;37353:52;37349:100;;;37432:5;37422:15;;37349:100;37461:12;37566:7;37562:476;;;37618:25;:29;37644:2;37618:29;;;;;;;;;;;;;;;;;;;;;;;;;37614:275;;;37675:34;37705:3;37675:25;37686:13;;37675:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;37668:41;;37778:13;;29458:1;37751:4;:23;;;;:::i;:::-;37750:41;;;;:::i;:::-;37728:18;;:63;;;;;;;:::i;:::-;;;;;;;;37860:13;;29509:1;37833:4;:23;;;;:::i;:::-;37832:41;;;;:::i;:::-;37810:18;;:63;;;;;;;:::i;:::-;;;;;;;;37614:275;37916:1;37909:4;:8;37905:91;;;37938:42;37954:4;37968;37975;37938:15;:42::i;:::-;37905:91;38022:4;38012:14;;;;;:::i;:::-;;;37562:476;38050:33;38066:4;38072:2;38076:6;38050:15;:33::i;:::-;33980:4111;;;;33867:4224;;;;:::o;5659:191::-;5733:16;5752:6;;;;;;;;;;;5733:25;;5778:8;5769:6;;:17;;;;;;;;;;;;;;;;;;5833:8;5802:40;;5823:8;5802:40;;;;;;;;;;;;5722:128;5659:191;:::o;33537:188::-;33654:5;33620:25;:31;33646:4;33620:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;33711:5;33677:40;;33705:4;33677:40;;;;;;;;;;;;33537:188;;:::o;16917:770::-;17075:1;17057:20;;:6;:20;;;;17049:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;17159:1;17138:23;;:9;:23;;;;17130:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17214:47;17235:6;17243:9;17254:6;17214:20;:47::i;:::-;17274:21;17298:9;:17;17308:6;17298:17;;;;;;;;;;;;;;;;17274:41;;17365:6;17348:13;:23;;17326:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;17509:6;17493:13;:22;17473:9;:17;17483:6;17473:17;;;;;;;;;;;;;;;:42;;;;17561:6;17537:9;:20;17547:9;17537:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;17602:9;17585:35;;17594:6;17585:35;;;17613:6;17585:35;;;;;;:::i;:::-;;;;;;;;17633:46;17653:6;17661:9;17672:6;17633:19;:46::i;:::-;17038:649;16917:770;;;:::o;39221:1450::-;39260:23;39286:24;39304:4;39286:9;:24::i;:::-;39260:50;;39321:25;39370:18;;39349;;:39;;;;:::i;:::-;39321:67;;39399:12;39447:1;39428:15;:20;:46;;;;39473:1;39452:17;:22;39428:46;39424:85;;;39491:7;;;;;39424:85;39564:2;39543:18;;:23;;;;:::i;:::-;39525:15;:41;39521:115;;;39622:2;39601:18;;:23;;;;:::i;:::-;39583:41;;39521:115;39697:23;39810:1;39777:17;39742:18;;39724:15;:36;;;;:::i;:::-;39723:71;;;;:::i;:::-;:88;;;;:::i;:::-;39697:114;;39822:26;39851:36;39871:15;39851;:19;;:36;;;;:::i;:::-;39822:65;;39900:25;39928:21;39900:49;;39962:36;39979:18;39962:16;:36::i;:::-;40011:18;40032:44;40058:17;40032:21;:25;;:44;;;;:::i;:::-;40011:65;;40089:17;40109:57;40148:17;40109:34;40124:18;;40109:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;40089:77;;40179:23;40218:9;40205:10;:22;;;;:::i;:::-;40179:48;;40261:1;40240:18;:22;;;;40294:1;40273:18;:22;;;;40330:15;;;;;;;;;;;40322:29;;40359:9;40322:51;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40308:65;;;;;40408:1;40390:15;:19;:42;;;;;40431:1;40413:15;:19;40390:42;40386:278;;;40449:46;40462:15;40479;40449:12;:46::i;:::-;40515:137;40548:18;40585:15;40619:18;;40515:137;;;;;;;;:::i;:::-;;;;;;;;40386:278;39249:1422;;;;;;;;;39221:1450;:::o;25184:98::-;25242:7;25273:1;25269;:5;;;;:::i;:::-;25262:12;;25184:98;;;;:::o;25583:::-;25641:7;25672:1;25668;:5;;;;:::i;:::-;25661:12;;25583:98;;;;:::o;20715:125::-;;;;:::o;21444:124::-;;;;:::o;24827:98::-;24885:7;24916:1;24912;:5;;;;:::i;:::-;24905:12;;24827:98;;;;:::o;38099:589::-;38225:21;38263:1;38249:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38225:40;;38294:4;38276;38281:1;38276:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;38320:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38310:4;38315:1;38310:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;38355:62;38372:4;38387:15;38405:11;38355:8;:62::i;:::-;38456:15;:66;;;38537:11;38563:1;38607:4;38634;38654:15;38456:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38154:534;38099:589;:::o;38696:517::-;38844:62;38861:4;38876:15;38894:11;38844:8;:62::i;:::-;38949:15;:31;;;38988:9;39021:4;39041:11;39067:1;39110;28828:6;39179:15;38949:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;38696:517;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:143::-;209:5;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;152:143;;;;:::o;301:133::-;344:5;382:6;369:20;360:29;;398:30;422:5;398:30;:::i;:::-;301:133;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;440:139;;;;:::o;585:143::-;642:5;673:6;667:13;658:22;;689:33;716:5;689:33;:::i;:::-;585:143;;;;:::o;734:329::-;793:6;842:2;830:9;821:7;817:23;813:32;810:119;;;848:79;;:::i;:::-;810:119;968:1;993:53;1038:7;1029:6;1018:9;1014:22;993:53;:::i;:::-;983:63;;939:117;734:329;;;;:::o;1069:351::-;1139:6;1188:2;1176:9;1167:7;1163:23;1159:32;1156:119;;;1194:79;;:::i;:::-;1156:119;1314:1;1339:64;1395:7;1386:6;1375:9;1371:22;1339:64;:::i;:::-;1329:74;;1285:128;1069:351;;;;:::o;1426:474::-;1494:6;1502;1551:2;1539:9;1530:7;1526:23;1522:32;1519:119;;;1557:79;;:::i;:::-;1519:119;1677:1;1702:53;1747:7;1738:6;1727:9;1723:22;1702:53;:::i;:::-;1692:63;;1648:117;1804:2;1830:53;1875:7;1866:6;1855:9;1851:22;1830:53;:::i;:::-;1820:63;;1775:118;1426:474;;;;;:::o;1906:619::-;1983:6;1991;1999;2048:2;2036:9;2027:7;2023:23;2019:32;2016:119;;;2054:79;;:::i;:::-;2016:119;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2301:2;2327:53;2372:7;2363:6;2352:9;2348:22;2327:53;:::i;:::-;2317:63;;2272:118;2429:2;2455:53;2500:7;2491:6;2480:9;2476:22;2455:53;:::i;:::-;2445:63;;2400:118;1906:619;;;;;:::o;2531:468::-;2596:6;2604;2653:2;2641:9;2632:7;2628:23;2624:32;2621:119;;;2659:79;;:::i;:::-;2621:119;2779:1;2804:53;2849:7;2840:6;2829:9;2825:22;2804:53;:::i;:::-;2794:63;;2750:117;2906:2;2932:50;2974:7;2965:6;2954:9;2950:22;2932:50;:::i;:::-;2922:60;;2877:115;2531:468;;;;;:::o;3005:474::-;3073:6;3081;3130:2;3118:9;3109:7;3105:23;3101:32;3098:119;;;3136:79;;:::i;:::-;3098:119;3256:1;3281:53;3326:7;3317:6;3306:9;3302:22;3281:53;:::i;:::-;3271:63;;3227:117;3383:2;3409:53;3454:7;3445:6;3434:9;3430:22;3409:53;:::i;:::-;3399:63;;3354:118;3005:474;;;;;:::o;3485:323::-;3541:6;3590:2;3578:9;3569:7;3565:23;3561:32;3558:119;;;3596:79;;:::i;:::-;3558:119;3716:1;3741:50;3783:7;3774:6;3763:9;3759:22;3741:50;:::i;:::-;3731:60;;3687:114;3485:323;;;;:::o;3814:663::-;3902:6;3910;3918;3967:2;3955:9;3946:7;3942:23;3938:32;3935:119;;;3973:79;;:::i;:::-;3935:119;4093:1;4118:64;4174:7;4165:6;4154:9;4150:22;4118:64;:::i;:::-;4108:74;;4064:128;4231:2;4257:64;4313:7;4304:6;4293:9;4289:22;4257:64;:::i;:::-;4247:74;;4202:129;4370:2;4396:64;4452:7;4443:6;4432:9;4428:22;4396:64;:::i;:::-;4386:74;;4341:129;3814:663;;;;;:::o;4483:179::-;4552:10;4573:46;4615:3;4607:6;4573:46;:::i;:::-;4651:4;4646:3;4642:14;4628:28;;4483:179;;;;:::o;4668:108::-;4745:24;4763:5;4745:24;:::i;:::-;4740:3;4733:37;4668:108;;:::o;4782:118::-;4869:24;4887:5;4869:24;:::i;:::-;4864:3;4857:37;4782:118;;:::o;4936:732::-;5055:3;5084:54;5132:5;5084:54;:::i;:::-;5154:86;5233:6;5228:3;5154:86;:::i;:::-;5147:93;;5264:56;5314:5;5264:56;:::i;:::-;5343:7;5374:1;5359:284;5384:6;5381:1;5378:13;5359:284;;;5460:6;5454:13;5487:63;5546:3;5531:13;5487:63;:::i;:::-;5480:70;;5573:60;5626:6;5573:60;:::i;:::-;5563:70;;5419:224;5406:1;5403;5399:9;5394:14;;5359:284;;;5363:14;5659:3;5652:10;;5060:608;;;4936:732;;;;:::o;5674:109::-;5755:21;5770:5;5755:21;:::i;:::-;5750:3;5743:34;5674:109;;:::o;5789:181::-;5901:62;5957:5;5901:62;:::i;:::-;5896:3;5889:75;5789:181;;:::o;5976:147::-;6071:45;6110:5;6071:45;:::i;:::-;6066:3;6059:58;5976:147;;:::o;6129:364::-;6217:3;6245:39;6278:5;6245:39;:::i;:::-;6300:71;6364:6;6359:3;6300:71;:::i;:::-;6293:78;;6380:52;6425:6;6420:3;6413:4;6406:5;6402:16;6380:52;:::i;:::-;6457:29;6479:6;6457:29;:::i;:::-;6452:3;6448:39;6441:46;;6221:272;6129:364;;;;:::o;6499:366::-;6641:3;6662:67;6726:2;6721:3;6662:67;:::i;:::-;6655:74;;6738:93;6827:3;6738:93;:::i;:::-;6856:2;6851:3;6847:12;6840:19;;6499:366;;;:::o;6871:::-;7013:3;7034:67;7098:2;7093:3;7034:67;:::i;:::-;7027:74;;7110:93;7199:3;7110:93;:::i;:::-;7228:2;7223:3;7219:12;7212:19;;6871:366;;;:::o;7243:::-;7385:3;7406:67;7470:2;7465:3;7406:67;:::i;:::-;7399:74;;7482:93;7571:3;7482:93;:::i;:::-;7600:2;7595:3;7591:12;7584:19;;7243:366;;;:::o;7615:::-;7757:3;7778:67;7842:2;7837:3;7778:67;:::i;:::-;7771:74;;7854:93;7943:3;7854:93;:::i;:::-;7972:2;7967:3;7963:12;7956:19;;7615:366;;;:::o;7987:::-;8129:3;8150:67;8214:2;8209:3;8150:67;:::i;:::-;8143:74;;8226:93;8315:3;8226:93;:::i;:::-;8344:2;8339:3;8335:12;8328:19;;7987:366;;;:::o;8359:::-;8501:3;8522:67;8586:2;8581:3;8522:67;:::i;:::-;8515:74;;8598:93;8687:3;8598:93;:::i;:::-;8716:2;8711:3;8707:12;8700:19;;8359:366;;;:::o;8731:::-;8873:3;8894:67;8958:2;8953:3;8894:67;:::i;:::-;8887:74;;8970:93;9059:3;8970:93;:::i;:::-;9088:2;9083:3;9079:12;9072:19;;8731:366;;;:::o;9103:::-;9245:3;9266:67;9330:2;9325:3;9266:67;:::i;:::-;9259:74;;9342:93;9431:3;9342:93;:::i;:::-;9460:2;9455:3;9451:12;9444:19;;9103:366;;;:::o;9475:::-;9617:3;9638:67;9702:2;9697:3;9638:67;:::i;:::-;9631:74;;9714:93;9803:3;9714:93;:::i;:::-;9832:2;9827:3;9823:12;9816:19;;9475:366;;;:::o;9847:::-;9989:3;10010:67;10074:2;10069:3;10010:67;:::i;:::-;10003:74;;10086:93;10175:3;10086:93;:::i;:::-;10204:2;10199:3;10195:12;10188:19;;9847:366;;;:::o;10219:::-;10361:3;10382:67;10446:2;10441:3;10382:67;:::i;:::-;10375:74;;10458:93;10547:3;10458:93;:::i;:::-;10576:2;10571:3;10567:12;10560:19;;10219:366;;;:::o;10591:::-;10733:3;10754:67;10818:2;10813:3;10754:67;:::i;:::-;10747:74;;10830:93;10919:3;10830:93;:::i;:::-;10948:2;10943:3;10939:12;10932:19;;10591:366;;;:::o;10963:398::-;11122:3;11143:83;11224:1;11219:3;11143:83;:::i;:::-;11136:90;;11235:93;11324:3;11235:93;:::i;:::-;11353:1;11348:3;11344:11;11337:18;;10963:398;;;:::o;11367:366::-;11509:3;11530:67;11594:2;11589:3;11530:67;:::i;:::-;11523:74;;11606:93;11695:3;11606:93;:::i;:::-;11724:2;11719:3;11715:12;11708:19;;11367:366;;;:::o;11739:::-;11881:3;11902:67;11966:2;11961:3;11902:67;:::i;:::-;11895:74;;11978:93;12067:3;11978:93;:::i;:::-;12096:2;12091:3;12087:12;12080:19;;11739:366;;;:::o;12111:::-;12253:3;12274:67;12338:2;12333:3;12274:67;:::i;:::-;12267:74;;12350:93;12439:3;12350:93;:::i;:::-;12468:2;12463:3;12459:12;12452:19;;12111:366;;;:::o;12483:118::-;12570:24;12588:5;12570:24;:::i;:::-;12565:3;12558:37;12483:118;;:::o;12607:112::-;12690:22;12706:5;12690:22;:::i;:::-;12685:3;12678:35;12607:112;;:::o;12725:379::-;12909:3;12931:147;13074:3;12931:147;:::i;:::-;12924:154;;13095:3;13088:10;;12725:379;;;:::o;13110:222::-;13203:4;13241:2;13230:9;13226:18;13218:26;;13254:71;13322:1;13311:9;13307:17;13298:6;13254:71;:::i;:::-;13110:222;;;;:::o;13338:807::-;13587:4;13625:3;13614:9;13610:19;13602:27;;13639:71;13707:1;13696:9;13692:17;13683:6;13639:71;:::i;:::-;13720:72;13788:2;13777:9;13773:18;13764:6;13720:72;:::i;:::-;13802:80;13878:2;13867:9;13863:18;13854:6;13802:80;:::i;:::-;13892;13968:2;13957:9;13953:18;13944:6;13892:80;:::i;:::-;13982:73;14050:3;14039:9;14035:19;14026:6;13982:73;:::i;:::-;14065;14133:3;14122:9;14118:19;14109:6;14065:73;:::i;:::-;13338:807;;;;;;;;;:::o;14151:210::-;14238:4;14276:2;14265:9;14261:18;14253:26;;14289:65;14351:1;14340:9;14336:17;14327:6;14289:65;:::i;:::-;14151:210;;;;:::o;14367:272::-;14485:4;14523:2;14512:9;14508:18;14500:26;;14536:96;14629:1;14618:9;14614:17;14605:6;14536:96;:::i;:::-;14367:272;;;;:::o;14645:313::-;14758:4;14796:2;14785:9;14781:18;14773:26;;14845:9;14839:4;14835:20;14831:1;14820:9;14816:17;14809:47;14873:78;14946:4;14937:6;14873:78;:::i;:::-;14865:86;;14645:313;;;;:::o;14964:419::-;15130:4;15168:2;15157:9;15153:18;15145:26;;15217:9;15211:4;15207:20;15203:1;15192:9;15188:17;15181:47;15245:131;15371:4;15245:131;:::i;:::-;15237:139;;14964:419;;;:::o;15389:::-;15555:4;15593:2;15582:9;15578:18;15570:26;;15642:9;15636:4;15632:20;15628:1;15617:9;15613:17;15606:47;15670:131;15796:4;15670:131;:::i;:::-;15662:139;;15389:419;;;:::o;15814:::-;15980:4;16018:2;16007:9;16003:18;15995:26;;16067:9;16061:4;16057:20;16053:1;16042:9;16038:17;16031:47;16095:131;16221:4;16095:131;:::i;:::-;16087:139;;15814:419;;;:::o;16239:::-;16405:4;16443:2;16432:9;16428:18;16420:26;;16492:9;16486:4;16482:20;16478:1;16467:9;16463:17;16456:47;16520:131;16646:4;16520:131;:::i;:::-;16512:139;;16239:419;;;:::o;16664:::-;16830:4;16868:2;16857:9;16853:18;16845:26;;16917:9;16911:4;16907:20;16903:1;16892:9;16888:17;16881:47;16945:131;17071:4;16945:131;:::i;:::-;16937:139;;16664:419;;;:::o;17089:::-;17255:4;17293:2;17282:9;17278:18;17270:26;;17342:9;17336:4;17332:20;17328:1;17317:9;17313:17;17306:47;17370:131;17496:4;17370:131;:::i;:::-;17362:139;;17089:419;;;:::o;17514:::-;17680:4;17718:2;17707:9;17703:18;17695:26;;17767:9;17761:4;17757:20;17753:1;17742:9;17738:17;17731:47;17795:131;17921:4;17795:131;:::i;:::-;17787:139;;17514:419;;;:::o;17939:::-;18105:4;18143:2;18132:9;18128:18;18120:26;;18192:9;18186:4;18182:20;18178:1;18167:9;18163:17;18156:47;18220:131;18346:4;18220:131;:::i;:::-;18212:139;;17939:419;;;:::o;18364:::-;18530:4;18568:2;18557:9;18553:18;18545:26;;18617:9;18611:4;18607:20;18603:1;18592:9;18588:17;18581:47;18645:131;18771:4;18645:131;:::i;:::-;18637:139;;18364:419;;;:::o;18789:::-;18955:4;18993:2;18982:9;18978:18;18970:26;;19042:9;19036:4;19032:20;19028:1;19017:9;19013:17;19006:47;19070:131;19196:4;19070:131;:::i;:::-;19062:139;;18789:419;;;:::o;19214:::-;19380:4;19418:2;19407:9;19403:18;19395:26;;19467:9;19461:4;19457:20;19453:1;19442:9;19438:17;19431:47;19495:131;19621:4;19495:131;:::i;:::-;19487:139;;19214:419;;;:::o;19639:::-;19805:4;19843:2;19832:9;19828:18;19820:26;;19892:9;19886:4;19882:20;19878:1;19867:9;19863:17;19856:47;19920:131;20046:4;19920:131;:::i;:::-;19912:139;;19639:419;;;:::o;20064:::-;20230:4;20268:2;20257:9;20253:18;20245:26;;20317:9;20311:4;20307:20;20303:1;20292:9;20288:17;20281:47;20345:131;20471:4;20345:131;:::i;:::-;20337:139;;20064:419;;;:::o;20489:::-;20655:4;20693:2;20682:9;20678:18;20670:26;;20742:9;20736:4;20732:20;20728:1;20717:9;20713:17;20706:47;20770:131;20896:4;20770:131;:::i;:::-;20762:139;;20489:419;;;:::o;20914:::-;21080:4;21118:2;21107:9;21103:18;21095:26;;21167:9;21161:4;21157:20;21153:1;21142:9;21138:17;21131:47;21195:131;21321:4;21195:131;:::i;:::-;21187:139;;20914:419;;;:::o;21339:222::-;21432:4;21470:2;21459:9;21455:18;21447:26;;21483:71;21551:1;21540:9;21536:17;21527:6;21483:71;:::i;:::-;21339:222;;;;:::o;21567:831::-;21830:4;21868:3;21857:9;21853:19;21845:27;;21882:71;21950:1;21939:9;21935:17;21926:6;21882:71;:::i;:::-;21963:80;22039:2;22028:9;22024:18;22015:6;21963:80;:::i;:::-;22090:9;22084:4;22080:20;22075:2;22064:9;22060:18;22053:48;22118:108;22221:4;22212:6;22118:108;:::i;:::-;22110:116;;22236:72;22304:2;22293:9;22289:18;22280:6;22236:72;:::i;:::-;22318:73;22386:3;22375:9;22371:19;22362:6;22318:73;:::i;:::-;21567:831;;;;;;;;:::o;22404:442::-;22553:4;22591:2;22580:9;22576:18;22568:26;;22604:71;22672:1;22661:9;22657:17;22648:6;22604:71;:::i;:::-;22685:72;22753:2;22742:9;22738:18;22729:6;22685:72;:::i;:::-;22767;22835:2;22824:9;22820:18;22811:6;22767:72;:::i;:::-;22404:442;;;;;;:::o;22852:214::-;22941:4;22979:2;22968:9;22964:18;22956:26;;22992:67;23056:1;23045:9;23041:17;23032:6;22992:67;:::i;:::-;22852:214;;;;:::o;23153:132::-;23220:4;23243:3;23235:11;;23273:4;23268:3;23264:14;23256:22;;23153:132;;;:::o;23291:114::-;23358:6;23392:5;23386:12;23376:22;;23291:114;;;:::o;23411:99::-;23463:6;23497:5;23491:12;23481:22;;23411:99;;;:::o;23516:113::-;23586:4;23618;23613:3;23609:14;23601:22;;23516:113;;;:::o;23635:184::-;23734:11;23768:6;23763:3;23756:19;23808:4;23803:3;23799:14;23784:29;;23635:184;;;;:::o;23825:147::-;23926:11;23963:3;23948:18;;23825:147;;;;:::o;23978:169::-;24062:11;24096:6;24091:3;24084:19;24136:4;24131:3;24127:14;24112:29;;23978:169;;;;:::o;24153:305::-;24193:3;24212:20;24230:1;24212:20;:::i;:::-;24207:25;;24246:20;24264:1;24246:20;:::i;:::-;24241:25;;24400:1;24332:66;24328:74;24325:1;24322:81;24319:107;;;24406:18;;:::i;:::-;24319:107;24450:1;24447;24443:9;24436:16;;24153:305;;;;:::o;24464:185::-;24504:1;24521:20;24539:1;24521:20;:::i;:::-;24516:25;;24555:20;24573:1;24555:20;:::i;:::-;24550:25;;24594:1;24584:35;;24599:18;;:::i;:::-;24584:35;24641:1;24638;24634:9;24629:14;;24464:185;;;;:::o;24655:348::-;24695:7;24718:20;24736:1;24718:20;:::i;:::-;24713:25;;24752:20;24770:1;24752:20;:::i;:::-;24747:25;;24940:1;24872:66;24868:74;24865:1;24862:81;24857:1;24850:9;24843:17;24839:105;24836:131;;;24947:18;;:::i;:::-;24836:131;24995:1;24992;24988:9;24977:20;;24655:348;;;;:::o;25009:191::-;25049:4;25069:20;25087:1;25069:20;:::i;:::-;25064:25;;25103:20;25121:1;25103:20;:::i;:::-;25098:25;;25142:1;25139;25136:8;25133:34;;;25147:18;;:::i;:::-;25133:34;25192:1;25189;25185:9;25177:17;;25009:191;;;;:::o;25206:96::-;25243:7;25272:24;25290:5;25272:24;:::i;:::-;25261:35;;25206:96;;;:::o;25308:90::-;25342:7;25385:5;25378:13;25371:21;25360:32;;25308:90;;;:::o;25404:126::-;25441:7;25481:42;25474:5;25470:54;25459:65;;25404:126;;;:::o;25536:77::-;25573:7;25602:5;25591:16;;25536:77;;;:::o;25619:86::-;25654:7;25694:4;25687:5;25683:16;25672:27;;25619:86;;;:::o;25711:151::-;25786:9;25819:37;25850:5;25819:37;:::i;:::-;25806:50;;25711:151;;;:::o;25868:121::-;25926:9;25959:24;25977:5;25959:24;:::i;:::-;25946:37;;25868:121;;;:::o;25995:126::-;26045:9;26078:37;26109:5;26078:37;:::i;:::-;26065:50;;25995:126;;;:::o;26127:113::-;26177:9;26210:24;26228:5;26210:24;:::i;:::-;26197:37;;26127:113;;;:::o;26246:307::-;26314:1;26324:113;26338:6;26335:1;26332:13;26324:113;;;26423:1;26418:3;26414:11;26408:18;26404:1;26399:3;26395:11;26388:39;26360:2;26357:1;26353:10;26348:15;;26324:113;;;26455:6;26452:1;26449:13;26446:101;;;26535:1;26526:6;26521:3;26517:16;26510:27;26446:101;26295:258;26246:307;;;:::o;26559:320::-;26603:6;26640:1;26634:4;26630:12;26620:22;;26687:1;26681:4;26677:12;26708:18;26698:81;;26764:4;26756:6;26752:17;26742:27;;26698:81;26826:2;26818:6;26815:14;26795:18;26792:38;26789:84;;;26845:18;;:::i;:::-;26789:84;26610:269;26559:320;;;:::o;26885:180::-;26933:77;26930:1;26923:88;27030:4;27027:1;27020:15;27054:4;27051:1;27044:15;27071:180;27119:77;27116:1;27109:88;27216:4;27213:1;27206:15;27240:4;27237:1;27230:15;27257:180;27305:77;27302:1;27295:88;27402:4;27399:1;27392:15;27426:4;27423:1;27416:15;27443:180;27491:77;27488:1;27481:88;27588:4;27585:1;27578:15;27612:4;27609:1;27602:15;27629:180;27677:77;27674:1;27667:88;27774:4;27771:1;27764:15;27798:4;27795:1;27788:15;27938:117;28047:1;28044;28037:12;28061:102;28102:6;28153:2;28149:7;28144:2;28137:5;28133:14;28129:28;28119:38;;28061:102;;;:::o;28169:222::-;28309:34;28305:1;28297:6;28293:14;28286:58;28378:5;28373:2;28365:6;28361:15;28354:30;28169:222;:::o;28397:172::-;28537:24;28533:1;28525:6;28521:14;28514:48;28397:172;:::o;28575:225::-;28715:34;28711:1;28703:6;28699:14;28692:58;28784:8;28779:2;28771:6;28767:15;28760:33;28575:225;:::o;28806:221::-;28946:34;28942:1;28934:6;28930:14;28923:58;29015:4;29010:2;29002:6;28998:15;28991:29;28806:221;:::o;29033:244::-;29173:34;29169:1;29161:6;29157:14;29150:58;29242:27;29237:2;29229:6;29225:15;29218:52;29033:244;:::o;29283:225::-;29423:34;29419:1;29411:6;29407:14;29400:58;29492:8;29487:2;29479:6;29475:15;29468:33;29283:225;:::o;29514:241::-;29654:34;29650:1;29642:6;29638:14;29631:58;29723:24;29718:2;29710:6;29706:15;29699:49;29514:241;:::o;29761:240::-;29901:34;29897:1;29889:6;29885:14;29878:58;29970:23;29965:2;29957:6;29953:15;29946:48;29761:240;:::o;30007:297::-;30147:34;30143:1;30135:6;30131:14;30124:58;30216:34;30211:2;30203:6;30199:15;30192:59;30285:11;30280:2;30272:6;30268:15;30261:36;30007:297;:::o;30310:227::-;30450:34;30446:1;30438:6;30434:14;30427:58;30519:10;30514:2;30506:6;30502:15;30495:35;30310:227;:::o;30543:182::-;30683:34;30679:1;30671:6;30667:14;30660:58;30543:182;:::o;30731:224::-;30871:34;30867:1;30859:6;30855:14;30848:58;30940:7;30935:2;30927:6;30923:15;30916:32;30731:224;:::o;30961:114::-;;:::o;31081:223::-;31221:34;31217:1;31209:6;31205:14;31198:58;31290:6;31285:2;31277:6;31273:15;31266:31;31081:223;:::o;31310:169::-;31450:21;31446:1;31438:6;31434:14;31427:45;31310:169;:::o;31485:224::-;31625:34;31621:1;31613:6;31609:14;31602:58;31694:7;31689:2;31681:6;31677:15;31670:32;31485:224;:::o;31715:122::-;31788:24;31806:5;31788:24;:::i;:::-;31781:5;31778:35;31768:63;;31827:1;31824;31817:12;31768:63;31715:122;:::o;31843:116::-;31913:21;31928:5;31913:21;:::i;:::-;31906:5;31903:32;31893:60;;31949:1;31946;31939:12;31893:60;31843:116;:::o;31965:122::-;32038:24;32056:5;32038:24;:::i;:::-;32031:5;32028:35;32018:63;;32077:1;32074;32067:12;32018:63;31965:122;:::o

Swarm Source

ipfs://922d9645fc73389088e56786bd22e81ada93cc17b2055073f92a1b00da9b8fe8
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.