ETH Price: $2,307.75 (-0.41%)

Token

Fluffy (fluffy)
 

Overview

Max Total Supply

420,690,000,000 fluffy

Holders

499 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
365,921,886.11276587975134045 fluffy

Value
$0.00
0xbfaE0F2802a2A2314503dc19E5042F2Bde1bC41B
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Fluffy is a white-furred cat token inspired by Matt Furie’s celebrated book “Mindviscosity”. This playful character embodies curiosity and adventure, bringing to life the vibrant, imaginative world created by Furie.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FLUFFY

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-07-28
*/

/**
              ________ ___       ___  ___  ________ ________ ___    ___              
             |\  _____\\  \     |\  \|\  \|\  _____\\  _____\\  \  /  /|             
 ____________\ \  \__/\ \  \    \ \  \\\  \ \  \__/\ \  \__/\ \  \/  / /___________  
|\____________\ \   __\\ \  \    \ \  \\\  \ \   __\\ \   __\\ \    / /\____________\
\|____________|\ \  \_| \ \  \____\ \  \\\  \ \  \_| \ \  \_| \/  /  /\|____________|
                \ \__\   \ \_______\ \_______\ \__\   \ \__\__/  / /                 
                 \|__|    \|_______|\|_______|\|__|    \|__|\___/ /                  
                                                           \|___|/                   
                                                                                     
                                                                                     
*/
// SPDX-License-Identifier: MIT
pragma solidity =0.8.20;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is 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;
        }
    }
}

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 0; // 0 = 0%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 0 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 0 minutes;
    uint256 public lastManualLpBurnTime;

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

    // 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 buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

    // 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 marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Fluffy", "fluffy") {
        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 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 420_690_000_000 * 1e18;

        maxTransactionAmount = 4_206_900_000 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 4_206_900_000 * 1e18; // 1% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x0Fb2AfcEac3a20B078DAB2C9f738832Eae5c0c62); // set as marketing wallet
        devWallet = address(0x0Fb2AfcEac3a20B078DAB2C9f738832Eae5c0c62); // set as dev wallet

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

        excludeFromMaxTransaction(devWallet, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(devWallet, totalSupply);
        transferOwnership(devWallet);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

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

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    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 updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 100, "Must keep fees at 100% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 100, "Must keep fees at 100% or less");
    }

    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 updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

    event BoughtEarly(address indexed sniper);

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

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        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] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

            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 +
            tokensForDev;
        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 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

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

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

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"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":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600b556001600c60006101000a81548160ff0219169083151502179055506000600d556000600f556001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a757600080fd5b506040518060400160405280600681526020017f466c7566667900000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f666c756666790000000000000000000000000000000000000000000000000000815250816003908162000125919062000f00565b50806004908162000137919062000f00565b5050506200015a6200014e6200063260201b60201c565b6200063a60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001868160016200070060201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000206573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022c919062001051565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000294573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ba919062001051565b6040518363ffffffff1660e01b8152600401620002d992919062001094565b6020604051808303816000875af1158015620002f9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200031f919062001051565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036760a05160016200070060201b60201c565b6200037c60a0516001620007ea60201b60201c565b60008060008060008060006c054f529ca52576bc689200000090506b0d97ddb9f8b1d3cdd88000006008819055506b0d97ddb9f8b1d3cdd8800000600a81905550612710600a82620003cf9190620010f0565b620003db91906200116a565b6009819055508660158190555085601681905550846017819055506017546016546015546200040b9190620011a2565b620004179190620011a2565b6014819055508360198190555082601a8190555081601b81905550601b54601a54601954620004479190620011a2565b620004539190620011a2565b601881905550730fb2afceac3a20b078dab2c9f738832eae5c0c62600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730fb2afceac3a20b078dab2c9f738832eae5c0c62600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000538600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200088b60201b60201c565b6200054b3060016200088b60201b60201c565b6200056061dead60016200088b60201b60201c565b62000595600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200070060201b60201c565b620005a83060016200070060201b60201c565b620005bd61dead60016200070060201b60201c565b620005f1600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682620009c560201b60201c565b62000624600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662000b3d60201b60201c565b5050505050505050620013d2565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007106200063260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200073662000c5260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200078f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000786906200123e565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6200089b6200063260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008c162000c5260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200091a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000911906200123e565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009b991906200127d565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a2e90620012ea565b60405180910390fd5b62000a4b6000838362000c7c60201b60201c565b806002600082825462000a5f9190620011a2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ab69190620011a2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b1d91906200131d565b60405180910390a362000b396000838362000c8160201b60201c565b5050565b62000b4d6200063260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000b7362000c5260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000bcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bc3906200123e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000c3e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c3590620013b0565b60405180910390fd5b62000c4f816200063a60201b60201c565b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d0857607f821691505b60208210810362000d1e5762000d1d62000cc0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d49565b62000d94868362000d49565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000de162000ddb62000dd58462000dac565b62000db6565b62000dac565b9050919050565b6000819050919050565b62000dfd8362000dc0565b62000e1562000e0c8262000de8565b84845462000d56565b825550505050565b600090565b62000e2c62000e1d565b62000e3981848462000df2565b505050565b5b8181101562000e615762000e5560008262000e22565b60018101905062000e3f565b5050565b601f82111562000eb05762000e7a8162000d24565b62000e858462000d39565b8101602085101562000e95578190505b62000ead62000ea48562000d39565b83018262000e3e565b50505b505050565b600082821c905092915050565b600062000ed56000198460080262000eb5565b1980831691505092915050565b600062000ef0838362000ec2565b9150826002028217905092915050565b62000f0b8262000c86565b67ffffffffffffffff81111562000f275762000f2662000c91565b5b62000f33825462000cef565b62000f4082828562000e65565b600060209050601f83116001811462000f78576000841562000f63578287015190505b62000f6f858262000ee2565b86555062000fdf565b601f19841662000f888662000d24565b60005b8281101562000fb25784890151825560018201915060208501945060208101905062000f8b565b8683101562000fd2578489015162000fce601f89168262000ec2565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010198262000fec565b9050919050565b6200102b816200100c565b81146200103757600080fd5b50565b6000815190506200104b8162001020565b92915050565b6000602082840312156200106a576200106962000fe7565b5b60006200107a848285016200103a565b91505092915050565b6200108e816200100c565b82525050565b6000604082019050620010ab600083018562001083565b620010ba602083018462001083565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010fd8262000dac565b91506200110a8362000dac565b92508282026200111a8162000dac565b91508282048414831517620011345762001133620010c1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620011778262000dac565b9150620011848362000dac565b9250826200119757620011966200113b565b5b828204905092915050565b6000620011af8262000dac565b9150620011bc8362000dac565b9250828201905080821115620011d757620011d6620010c1565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001226602083620011dd565b91506200123382620011ee565b602082019050919050565b60006020820190508181036000830152620012598162001217565b9050919050565b60008115159050919050565b620012778162001260565b82525050565b60006020820190506200129460008301846200126c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620012d2601f83620011dd565b9150620012df826200129a565b602082019050919050565b600060208201905081810360008301526200130581620012c3565b9050919050565b620013178162000dac565b82525050565b60006020820190506200133460008301846200130c565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062001398602683620011dd565b9150620013a5826200133a565b604082019050919050565b60006020820190508181036000830152620013cb8162001389565b9050919050565b60805160a051615b7f6200145a600039600081816113ed01528181611bfd01528181612745015281816127fc0152818161282901528181612e6801528181613f6a015281816140230152614050015260008181610f9001528181612e10015281816141c6015281816142a7015281816142ce0152818161436a01526143910152615b7f6000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906144d0565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061458b565b610f51565b60405161041c91906145e6565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614601565b610f6f565b60405161045991906145e6565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061468d565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906146b7565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614601565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906146b7565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906146b7565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906146b7565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906146b7565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906146d2565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d891906146ff565b61121f565b6040516105ea91906145e6565b60405180910390f35b3480156105ff57600080fd5b50610608611317565b6040516106159190614761565b60405180910390f35b34801561062a57600080fd5b5061063361131d565b60405161064091906146b7565b60405180910390f35b34801561065557600080fd5b5061065e611323565b60405161066b91906145e6565b60405180910390f35b34801561068057600080fd5b50610689611336565b6040516106969190614798565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061458b565b61133f565b6040516106d391906145e6565b60405180910390f35b3480156106e857600080fd5b506106f16113eb565b6040516106fe9190614761565b60405180910390f35b34801561071357600080fd5b5061071c61140f565b60405161072991906145e6565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614601565b611422565b60405161076691906145e6565b60405180910390f35b34801561077b57600080fd5b50610784611478565b60405161079191906146b7565b60405180910390f35b3480156107a657600080fd5b506107af61147e565b6040516107bc91906145e6565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190614601565b611491565b6040516107f991906146b7565b60405180910390f35b34801561080e57600080fd5b506108176114d9565b005b34801561082557600080fd5b50610840600480360381019061083b91906147df565b611561565b005b34801561084e57600080fd5b506108576116a1565b60405161086491906145e6565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614832565b611741565b005b3480156108a257600080fd5b506108ab611818565b6040516108b89190614761565b60405180910390f35b3480156108cd57600080fd5b506108d661183e565b6040516108e391906146b7565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614872565b611844565b005b34801561092157600080fd5b5061092a611943565b005b34801561093857600080fd5b506109416119fe565b60405161094e9190614761565b60405180910390f35b34801561096357600080fd5b5061096c611a28565b6040516109799190614761565b60405180910390f35b34801561098e57600080fd5b50610997611a4e565b6040516109a491906146b7565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906148c5565b611a54565b005b3480156109e257600080fd5b506109eb611aed565b6040516109f891906144d0565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614832565b611b7f565b005b348015610a3657600080fd5b50610a3f611c97565b604051610a4c91906146b7565b60405180910390f35b348015610a6157600080fd5b50610a6a611c9d565b604051610a7791906146b7565b60405180910390f35b348015610a8c57600080fd5b50610a95611ca3565b604051610aa291906146b7565b60405180910390f35b348015610ab757600080fd5b50610ac0611ca9565b604051610acd91906146b7565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061458b565b611caf565b604051610b0a91906145e6565b60405180910390f35b348015610b1f57600080fd5b50610b28611d9a565b604051610b3591906146b7565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061458b565b611da0565b604051610b7291906145e6565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614601565b611dbe565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614601565b611efa565b604051610bd891906145e6565b60405180910390f35b348015610bed57600080fd5b50610bf6611f1a565b604051610c0391906145e6565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614832565b611f2d565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614872565b612052565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906146d2565b612151565b005b348015610c9357600080fd5b50610c9c612260565b604051610ca991906145e6565b60405180910390f35b348015610cbe57600080fd5b50610cc7612273565b604051610cd491906146b7565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906146d2565b612279565b604051610d1191906145e6565b60405180910390f35b348015610d2657600080fd5b50610d2f6123ce565b604051610d3c91906146b7565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d6791906148f2565b6123d4565b604051610d7991906146b7565b60405180910390f35b348015610d8e57600080fd5b50610d9761245b565b604051610da491906146b7565b60405180910390f35b348015610db957600080fd5b50610dc2612461565b604051610dcf91906145e6565b60405180910390f35b348015610de457600080fd5b50610ded612501565b604051610dfa91906146b7565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614601565b612507565b005b348015610e3857600080fd5b50610e416125fe565b604051610e4e91906146b7565b60405180910390f35b348015610e6357600080fd5b50610e6c612604565b604051610e7991906146b7565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906146d2565b61260a565b604051610eb691906145e6565b60405180910390f35b606060038054610ece90614961565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614961565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128e2565b84846128ea565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc46128e2565b73ffffffffffffffffffffffffffffffffffffffff16610fe26119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906149de565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186128e2565b73ffffffffffffffffffffffffffffffffffffffff166111366119fe565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611183906149de565b60405180910390fd5b670de0b6b3a76400006103e860016111a2610fb2565b6111ac9190614a2d565b6111b69190614a9e565b6111c09190614a9e565b811015611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990614b41565b60405180910390fd5b670de0b6b3a7640000816112169190614a2d565b60088190555050565b600061122c848484612ab3565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112776128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90614bd3565b60405180910390fd5b61130b856113036128e2565b8584036128ea565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113e161134c6128e2565b84846001600061135a6128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113dc9190614bf3565b6128ea565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e16128e2565b73ffffffffffffffffffffffffffffffffffffffff166114ff6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c906149de565b60405180910390fd5b61155f6000613848565b565b6115696128e2565b73ffffffffffffffffffffffffffffffffffffffff166115876119fe565b73ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d4906149de565b60405180910390fd5b610258831015611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990614c99565b60405180910390fd5b6103e88211158015611635575060008210155b611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90614d2b565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116ab6128e2565b73ffffffffffffffffffffffffffffffffffffffff166116c96119fe565b73ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906149de565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117496128e2565b73ffffffffffffffffffffffffffffffffffffffff166117676119fe565b73ffffffffffffffffffffffffffffffffffffffff16146117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b4906149de565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61184c6128e2565b73ffffffffffffffffffffffffffffffffffffffff1661186a6119fe565b73ffffffffffffffffffffffffffffffffffffffff16146118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b7906149de565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118e89190614bf3565b6118f29190614bf3565b6014819055506064601454111561193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590614d97565b60405180910390fd5b505050565b61194b6128e2565b73ffffffffffffffffffffffffffffffffffffffff166119696119fe565b73ffffffffffffffffffffffffffffffffffffffff16146119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b6906149de565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a5c6128e2565b73ffffffffffffffffffffffffffffffffffffffff16611a7a6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac7906149de565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611afc90614961565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2890614961565b8015611b755780601f10611b4a57610100808354040283529160200191611b75565b820191906000526020600020905b815481529060010190602001808311611b5857829003601f168201915b5050505050905090565b611b876128e2565b73ffffffffffffffffffffffffffffffffffffffff16611ba56119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf2906149de565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090614e29565b60405180910390fd5b611c93828261390e565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cbe6128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290614ebb565b60405180910390fd5b611d8f611d866128e2565b858584036128ea565b600191505092915050565b600e5481565b6000611db4611dad6128e2565b8484612ab3565b6001905092915050565b611dc66128e2565b73ffffffffffffffffffffffffffffffffffffffff16611de46119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e31906149de565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f356128e2565b73ffffffffffffffffffffffffffffffffffffffff16611f536119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa0906149de565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161204691906145e6565b60405180910390a25050565b61205a6128e2565b73ffffffffffffffffffffffffffffffffffffffff166120786119fe565b73ffffffffffffffffffffffffffffffffffffffff16146120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c5906149de565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120f69190614bf3565b6121009190614bf3565b6018819055506064601854111561214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614d97565b60405180910390fd5b505050565b6121596128e2565b73ffffffffffffffffffffffffffffffffffffffff166121776119fe565b73ffffffffffffffffffffffffffffffffffffffff16146121cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c4906149de565b60405180910390fd5b670de0b6b3a76400006103e860056121e3610fb2565b6121ed9190614a2d565b6121f79190614a9e565b6122019190614a9e565b811015612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90614f4d565b60405180910390fd5b670de0b6b3a7640000816122579190614a2d565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122836128e2565b73ffffffffffffffffffffffffffffffffffffffff166122a16119fe565b73ffffffffffffffffffffffffffffffffffffffff16146122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee906149de565b60405180910390fd5b620186a06001612305610fb2565b61230f9190614a2d565b6123199190614a9e565b82101561235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290614fdf565b60405180910390fd5b6103e86005612368610fb2565b6123729190614a2d565b61237c9190614a9e565b8211156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b590615071565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061246b6128e2565b73ffffffffffffffffffffffffffffffffffffffff166124896119fe565b73ffffffffffffffffffffffffffffffffffffffff16146124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d6906149de565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61250f6128e2565b73ffffffffffffffffffffffffffffffffffffffff1661252d6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614612583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257a906149de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e990615103565b60405180910390fd5b6125fb81613848565b50565b601a5481565b600a5481565b60006126146128e2565b73ffffffffffffffffffffffffffffffffffffffff166126326119fe565b73ffffffffffffffffffffffffffffffffffffffff1614612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f906149de565b60405180910390fd5b600f546010546126989190614bf3565b42116126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d09061516f565b60405180910390fd5b6103e882111561271e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271590615201565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016127809190614761565b602060405180830381865afa15801561279d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c19190615236565b905060006127ec6127106127de86856139af90919063ffffffff16565b6139c590919063ffffffff16565b90506000811115612825576128247f000000000000000000000000000000000000000000000000000000000000000061dead836139db565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561289257600080fd5b505af11580156128a6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612950906152d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bf90615367565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aa691906146b7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b19906153f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b889061548b565b60405180910390fd5b60008103612baa57612ba5838360006139db565b613843565b601160009054906101000a900460ff161561326d57612bc76119fe565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c355750612c056119fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c6e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ca8575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc15750600560149054906101000a900460ff16155b1561326c57601160019054906101000a900460ff16612dbb57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d7b5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db1906154f7565b60405180910390fd5b5b601360009054906101000a900460ff1615612f8357612dd86119fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e5f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612eb757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f825743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f34906155af565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130265750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130cd57600854811115613070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306790615641565b60405180910390fd5b600a5461307c83611491565b826130879190614bf3565b11156130c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130bf906156ad565b60405180910390fd5b61326b565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131705750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131bf576008548111156131ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b19061573f565b60405180910390fd5b61326a565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661326957600a5461321c83611491565b826132279190614bf3565b1115613268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325f906156ad565b60405180910390fd5b5b5b5b5b5b600061327830611491565b90506000600954821015905080801561329d5750601160029054906101000a900460ff165b80156132b65750600560149054906101000a900460ff16155b801561330c5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133625750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133b85750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133fc576001600560146101000a81548160ff0219169083151502179055506133e0613c5a565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134625750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561347a5750600c60009054906101000a900460ff165b80156134955750600d54600e546134919190614bf3565b4210155b80156134eb5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134fa576134f8613f41565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135b05750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135ba57600090505b6000811561383357602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561361d57506000601854115b156136ea5761364a606461363c601854886139af90919063ffffffff16565b6139c590919063ffffffff16565b9050601854601a548261365d9190614a2d565b6136679190614a9e565b601d60008282546136789190614bf3565b92505081905550601854601b54826136909190614a2d565b61369a9190614a9e565b601e60008282546136ab9190614bf3565b92505081905550601854601954826136c39190614a2d565b6136cd9190614a9e565b601c60008282546136de9190614bf3565b9250508190555061380f565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561374557506000601454115b1561380e576137726064613764601454886139af90919063ffffffff16565b6139c590919063ffffffff16565b9050601454601654826137859190614a2d565b61378f9190614a9e565b601d60008282546137a09190614bf3565b92505081905550601454601754826137b89190614a2d565b6137c29190614a9e565b601e60008282546137d39190614bf3565b92505081905550601454601554826137eb9190614a2d565b6137f59190614a9e565b601c60008282546138069190614bf3565b925050819055505b5b6000811115613824576138238730836139db565b5b8085613830919061575f565b94505b61383e8787876139db565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139bd9190614a2d565b905092915050565b600081836139d39190614a9e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a41906153f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab09061548b565b60405180910390fd5b613ac4838383614107565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4190615805565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613bdd9190614bf3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c4191906146b7565b60405180910390a3613c5484848461410c565b50505050565b6000613c6530611491565b90506000601e54601c54601d54613c7c9190614bf3565b613c869190614bf3565b9050600080831480613c985750600082145b15613ca557505050613f3f565b6014600954613cb49190614a2d565b831115613ccd576014600954613cca9190614a2d565b92505b6000600283601d5486613ce09190614a2d565b613cea9190614a9e565b613cf49190614a9e565b90506000613d0b828661411190919063ffffffff16565b90506000479050613d1b82614127565b6000613d30824761411190919063ffffffff16565b90506000613d5b87613d4d601c54856139af90919063ffffffff16565b6139c590919063ffffffff16565b90506000613d8688613d78601e54866139af90919063ffffffff16565b6139c590919063ffffffff16565b90506000818385613d97919061575f565b613da1919061575f565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e0190615856565b60006040518083038185875af1925050503d8060008114613e3e576040519150601f19603f3d011682016040523d82523d6000602084013e613e43565b606091505b505080985050600087118015613e595750600081115b15613ea657613e688782614364565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613e9d9392919061586b565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613eec90615856565b60006040518083038185875af1925050503d8060008114613f29576040519150601f19603f3d011682016040523d82523d6000602084013e613f2e565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613fa59190614761565b602060405180830381865afa158015613fc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fe69190615236565b90506000614013612710614005600b54856139af90919063ffffffff16565b6139c590919063ffffffff16565b9050600081111561404c5761404b7f000000000000000000000000000000000000000000000000000000000000000061dead836139db565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156140b957600080fd5b505af11580156140cd573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361411f919061575f565b905092915050565b6000600267ffffffffffffffff811115614144576141436158a2565b5b6040519080825280602002602001820160405280156141725781602001602082028036833780820191505090505b509050308160008151811061418a576141896158d1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561422f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142539190615915565b81600181518110614267576142666158d1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506142cc307f0000000000000000000000000000000000000000000000000000000000000000846128ea565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161432e959493929190615a3b565b600060405180830381600087803b15801561434857600080fd5b505af115801561435c573d6000803e3d6000fd5b505050505050565b61438f307f0000000000000000000000000000000000000000000000000000000000000000846128ea565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016143f696959493929190615a95565b60606040518083038185885af1158015614414573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144399190615af6565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561447a57808201518184015260208101905061445f565b60008484015250505050565b6000601f19601f8301169050919050565b60006144a282614440565b6144ac818561444b565b93506144bc81856020860161445c565b6144c581614486565b840191505092915050565b600060208201905081810360008301526144ea8184614497565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614522826144f7565b9050919050565b61453281614517565b811461453d57600080fd5b50565b60008135905061454f81614529565b92915050565b6000819050919050565b61456881614555565b811461457357600080fd5b50565b6000813590506145858161455f565b92915050565b600080604083850312156145a2576145a16144f2565b5b60006145b085828601614540565b92505060206145c185828601614576565b9150509250929050565b60008115159050919050565b6145e0816145cb565b82525050565b60006020820190506145fb60008301846145d7565b92915050565b600060208284031215614617576146166144f2565b5b600061462584828501614540565b91505092915050565b6000819050919050565b600061465361464e614649846144f7565b61462e565b6144f7565b9050919050565b600061466582614638565b9050919050565b60006146778261465a565b9050919050565b6146878161466c565b82525050565b60006020820190506146a2600083018461467e565b92915050565b6146b181614555565b82525050565b60006020820190506146cc60008301846146a8565b92915050565b6000602082840312156146e8576146e76144f2565b5b60006146f684828501614576565b91505092915050565b600080600060608486031215614718576147176144f2565b5b600061472686828701614540565b935050602061473786828701614540565b925050604061474886828701614576565b9150509250925092565b61475b81614517565b82525050565b60006020820190506147766000830184614752565b92915050565b600060ff82169050919050565b6147928161477c565b82525050565b60006020820190506147ad6000830184614789565b92915050565b6147bc816145cb565b81146147c757600080fd5b50565b6000813590506147d9816147b3565b92915050565b6000806000606084860312156147f8576147f76144f2565b5b600061480686828701614576565b935050602061481786828701614576565b9250506040614828868287016147ca565b9150509250925092565b60008060408385031215614849576148486144f2565b5b600061485785828601614540565b9250506020614868858286016147ca565b9150509250929050565b60008060006060848603121561488b5761488a6144f2565b5b600061489986828701614576565b93505060206148aa86828701614576565b92505060406148bb86828701614576565b9150509250925092565b6000602082840312156148db576148da6144f2565b5b60006148e9848285016147ca565b91505092915050565b60008060408385031215614909576149086144f2565b5b600061491785828601614540565b925050602061492885828601614540565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061497957607f821691505b60208210810361498c5761498b614932565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149c860208361444b565b91506149d382614992565b602082019050919050565b600060208201905081810360008301526149f7816149bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a3882614555565b9150614a4383614555565b9250828202614a5181614555565b91508282048414831517614a6857614a676149fe565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614aa982614555565b9150614ab483614555565b925082614ac457614ac3614a6f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614b2b602f8361444b565b9150614b3682614acf565b604082019050919050565b60006020820190508181036000830152614b5a81614b1e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614bbd60288361444b565b9150614bc882614b61565b604082019050919050565b60006020820190508181036000830152614bec81614bb0565b9050919050565b6000614bfe82614555565b9150614c0983614555565b9250828201905080821115614c2157614c206149fe565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614c8360338361444b565b9150614c8e82614c27565b604082019050919050565b60006020820190508181036000830152614cb281614c76565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d1560308361444b565b9150614d2082614cb9565b604082019050919050565b60006020820190508181036000830152614d4481614d08565b9050919050565b7f4d757374206b65657020666565732061742031303025206f72206c6573730000600082015250565b6000614d81601e8361444b565b9150614d8c82614d4b565b602082019050919050565b60006020820190508181036000830152614db081614d74565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e1360398361444b565b9150614e1e82614db7565b604082019050919050565b60006020820190508181036000830152614e4281614e06565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ea560258361444b565b9150614eb082614e49565b604082019050919050565b60006020820190508181036000830152614ed481614e98565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614f3760248361444b565b9150614f4282614edb565b604082019050919050565b60006020820190508181036000830152614f6681614f2a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614fc960358361444b565b9150614fd482614f6d565b604082019050919050565b60006020820190508181036000830152614ff881614fbc565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061505b60348361444b565b915061506682614fff565b604082019050919050565b6000602082019050818103600083015261508a8161504e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150ed60268361444b565b91506150f882615091565b604082019050919050565b6000602082019050818103600083015261511c816150e0565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061515960208361444b565b915061516482615123565b602082019050919050565b600060208201905081810360008301526151888161514c565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006151eb602a8361444b565b91506151f68261518f565b604082019050919050565b6000602082019050818103600083015261521a816151de565b9050919050565b6000815190506152308161455f565b92915050565b60006020828403121561524c5761524b6144f2565b5b600061525a84828501615221565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152bf60248361444b565b91506152ca82615263565b604082019050919050565b600060208201905081810360008301526152ee816152b2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061535160228361444b565b915061535c826152f5565b604082019050919050565b6000602082019050818103600083015261538081615344565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006153e360258361444b565b91506153ee82615387565b604082019050919050565b60006020820190508181036000830152615412816153d6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061547560238361444b565b915061548082615419565b604082019050919050565b600060208201905081810360008301526154a481615468565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006154e160168361444b565b91506154ec826154ab565b602082019050919050565b60006020820190508181036000830152615510816154d4565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061559960498361444b565b91506155a482615517565b606082019050919050565b600060208201905081810360008301526155c88161558c565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061562b60358361444b565b9150615636826155cf565b604082019050919050565b6000602082019050818103600083015261565a8161561e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061569760138361444b565b91506156a282615661565b602082019050919050565b600060208201905081810360008301526156c68161568a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061572960368361444b565b9150615734826156cd565b604082019050919050565b600060208201905081810360008301526157588161571c565b9050919050565b600061576a82614555565b915061577583614555565b925082820390508181111561578d5761578c6149fe565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006157ef60268361444b565b91506157fa82615793565b604082019050919050565b6000602082019050818103600083015261581e816157e2565b9050919050565b600081905092915050565b50565b6000615840600083615825565b915061584b82615830565b600082019050919050565b600061586182615833565b9150819050919050565b600060608201905061588060008301866146a8565b61588d60208301856146a8565b61589a60408301846146a8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061590f81614529565b92915050565b60006020828403121561592b5761592a6144f2565b5b600061593984828501615900565b91505092915050565b6000819050919050565b600061596761596261595d84615942565b61462e565b614555565b9050919050565b6159778161594c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6159b281614517565b82525050565b60006159c483836159a9565b60208301905092915050565b6000602082019050919050565b60006159e88261597d565b6159f28185615988565b93506159fd83615999565b8060005b83811015615a2e578151615a1588826159b8565b9750615a20836159d0565b925050600181019050615a01565b5085935050505092915050565b600060a082019050615a5060008301886146a8565b615a5d602083018761596e565b8181036040830152615a6f81866159dd565b9050615a7e6060830185614752565b615a8b60808301846146a8565b9695505050505050565b600060c082019050615aaa6000830189614752565b615ab760208301886146a8565b615ac4604083018761596e565b615ad1606083018661596e565b615ade6080830185614752565b615aeb60a08301846146a8565b979650505050505050565b600080600060608486031215615b0f57615b0e6144f2565b5b6000615b1d86828701615221565b9350506020615b2e86828701615221565b9250506040615b3f86828701615221565b915050925092509256fea2646970667358221220d48181d40133bdd630a0866cdfe31908a95d0d674c5336406afd6a15be69539b64736f6c63430008140033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906144d0565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061458b565b610f51565b60405161041c91906145e6565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614601565b610f6f565b60405161045991906145e6565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061468d565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906146b7565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614601565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906146b7565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906146b7565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906146b7565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906146b7565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906146d2565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d891906146ff565b61121f565b6040516105ea91906145e6565b60405180910390f35b3480156105ff57600080fd5b50610608611317565b6040516106159190614761565b60405180910390f35b34801561062a57600080fd5b5061063361131d565b60405161064091906146b7565b60405180910390f35b34801561065557600080fd5b5061065e611323565b60405161066b91906145e6565b60405180910390f35b34801561068057600080fd5b50610689611336565b6040516106969190614798565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061458b565b61133f565b6040516106d391906145e6565b60405180910390f35b3480156106e857600080fd5b506106f16113eb565b6040516106fe9190614761565b60405180910390f35b34801561071357600080fd5b5061071c61140f565b60405161072991906145e6565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614601565b611422565b60405161076691906145e6565b60405180910390f35b34801561077b57600080fd5b50610784611478565b60405161079191906146b7565b60405180910390f35b3480156107a657600080fd5b506107af61147e565b6040516107bc91906145e6565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190614601565b611491565b6040516107f991906146b7565b60405180910390f35b34801561080e57600080fd5b506108176114d9565b005b34801561082557600080fd5b50610840600480360381019061083b91906147df565b611561565b005b34801561084e57600080fd5b506108576116a1565b60405161086491906145e6565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614832565b611741565b005b3480156108a257600080fd5b506108ab611818565b6040516108b89190614761565b60405180910390f35b3480156108cd57600080fd5b506108d661183e565b6040516108e391906146b7565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614872565b611844565b005b34801561092157600080fd5b5061092a611943565b005b34801561093857600080fd5b506109416119fe565b60405161094e9190614761565b60405180910390f35b34801561096357600080fd5b5061096c611a28565b6040516109799190614761565b60405180910390f35b34801561098e57600080fd5b50610997611a4e565b6040516109a491906146b7565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906148c5565b611a54565b005b3480156109e257600080fd5b506109eb611aed565b6040516109f891906144d0565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614832565b611b7f565b005b348015610a3657600080fd5b50610a3f611c97565b604051610a4c91906146b7565b60405180910390f35b348015610a6157600080fd5b50610a6a611c9d565b604051610a7791906146b7565b60405180910390f35b348015610a8c57600080fd5b50610a95611ca3565b604051610aa291906146b7565b60405180910390f35b348015610ab757600080fd5b50610ac0611ca9565b604051610acd91906146b7565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061458b565b611caf565b604051610b0a91906145e6565b60405180910390f35b348015610b1f57600080fd5b50610b28611d9a565b604051610b3591906146b7565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061458b565b611da0565b604051610b7291906145e6565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614601565b611dbe565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614601565b611efa565b604051610bd891906145e6565b60405180910390f35b348015610bed57600080fd5b50610bf6611f1a565b604051610c0391906145e6565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614832565b611f2d565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614872565b612052565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906146d2565b612151565b005b348015610c9357600080fd5b50610c9c612260565b604051610ca991906145e6565b60405180910390f35b348015610cbe57600080fd5b50610cc7612273565b604051610cd491906146b7565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906146d2565b612279565b604051610d1191906145e6565b60405180910390f35b348015610d2657600080fd5b50610d2f6123ce565b604051610d3c91906146b7565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d6791906148f2565b6123d4565b604051610d7991906146b7565b60405180910390f35b348015610d8e57600080fd5b50610d9761245b565b604051610da491906146b7565b60405180910390f35b348015610db957600080fd5b50610dc2612461565b604051610dcf91906145e6565b60405180910390f35b348015610de457600080fd5b50610ded612501565b604051610dfa91906146b7565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614601565b612507565b005b348015610e3857600080fd5b50610e416125fe565b604051610e4e91906146b7565b60405180910390f35b348015610e6357600080fd5b50610e6c612604565b604051610e7991906146b7565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906146d2565b61260a565b604051610eb691906145e6565b60405180910390f35b606060038054610ece90614961565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614961565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128e2565b84846128ea565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc46128e2565b73ffffffffffffffffffffffffffffffffffffffff16610fe26119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906149de565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186128e2565b73ffffffffffffffffffffffffffffffffffffffff166111366119fe565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611183906149de565b60405180910390fd5b670de0b6b3a76400006103e860016111a2610fb2565b6111ac9190614a2d565b6111b69190614a9e565b6111c09190614a9e565b811015611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990614b41565b60405180910390fd5b670de0b6b3a7640000816112169190614a2d565b60088190555050565b600061122c848484612ab3565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112776128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90614bd3565b60405180910390fd5b61130b856113036128e2565b8584036128ea565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113e161134c6128e2565b84846001600061135a6128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113dc9190614bf3565b6128ea565b6001905092915050565b7f000000000000000000000000eba3966336a5b276ebdd157e9c677898603a2c5d81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e16128e2565b73ffffffffffffffffffffffffffffffffffffffff166114ff6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c906149de565b60405180910390fd5b61155f6000613848565b565b6115696128e2565b73ffffffffffffffffffffffffffffffffffffffff166115876119fe565b73ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d4906149de565b60405180910390fd5b610258831015611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990614c99565b60405180910390fd5b6103e88211158015611635575060008210155b611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90614d2b565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116ab6128e2565b73ffffffffffffffffffffffffffffffffffffffff166116c96119fe565b73ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906149de565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117496128e2565b73ffffffffffffffffffffffffffffffffffffffff166117676119fe565b73ffffffffffffffffffffffffffffffffffffffff16146117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b4906149de565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61184c6128e2565b73ffffffffffffffffffffffffffffffffffffffff1661186a6119fe565b73ffffffffffffffffffffffffffffffffffffffff16146118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b7906149de565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118e89190614bf3565b6118f29190614bf3565b6014819055506064601454111561193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590614d97565b60405180910390fd5b505050565b61194b6128e2565b73ffffffffffffffffffffffffffffffffffffffff166119696119fe565b73ffffffffffffffffffffffffffffffffffffffff16146119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b6906149de565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a5c6128e2565b73ffffffffffffffffffffffffffffffffffffffff16611a7a6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac7906149de565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611afc90614961565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2890614961565b8015611b755780601f10611b4a57610100808354040283529160200191611b75565b820191906000526020600020905b815481529060010190602001808311611b5857829003601f168201915b5050505050905090565b611b876128e2565b73ffffffffffffffffffffffffffffffffffffffff16611ba56119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf2906149de565b60405180910390fd5b7f000000000000000000000000eba3966336a5b276ebdd157e9c677898603a2c5d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090614e29565b60405180910390fd5b611c93828261390e565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cbe6128e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290614ebb565b60405180910390fd5b611d8f611d866128e2565b858584036128ea565b600191505092915050565b600e5481565b6000611db4611dad6128e2565b8484612ab3565b6001905092915050565b611dc66128e2565b73ffffffffffffffffffffffffffffffffffffffff16611de46119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e31906149de565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f356128e2565b73ffffffffffffffffffffffffffffffffffffffff16611f536119fe565b73ffffffffffffffffffffffffffffffffffffffff1614611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa0906149de565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161204691906145e6565b60405180910390a25050565b61205a6128e2565b73ffffffffffffffffffffffffffffffffffffffff166120786119fe565b73ffffffffffffffffffffffffffffffffffffffff16146120ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c5906149de565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120f69190614bf3565b6121009190614bf3565b6018819055506064601854111561214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614d97565b60405180910390fd5b505050565b6121596128e2565b73ffffffffffffffffffffffffffffffffffffffff166121776119fe565b73ffffffffffffffffffffffffffffffffffffffff16146121cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c4906149de565b60405180910390fd5b670de0b6b3a76400006103e860056121e3610fb2565b6121ed9190614a2d565b6121f79190614a9e565b6122019190614a9e565b811015612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90614f4d565b60405180910390fd5b670de0b6b3a7640000816122579190614a2d565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122836128e2565b73ffffffffffffffffffffffffffffffffffffffff166122a16119fe565b73ffffffffffffffffffffffffffffffffffffffff16146122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee906149de565b60405180910390fd5b620186a06001612305610fb2565b61230f9190614a2d565b6123199190614a9e565b82101561235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290614fdf565b60405180910390fd5b6103e86005612368610fb2565b6123729190614a2d565b61237c9190614a9e565b8211156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b590615071565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061246b6128e2565b73ffffffffffffffffffffffffffffffffffffffff166124896119fe565b73ffffffffffffffffffffffffffffffffffffffff16146124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d6906149de565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61250f6128e2565b73ffffffffffffffffffffffffffffffffffffffff1661252d6119fe565b73ffffffffffffffffffffffffffffffffffffffff1614612583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257a906149de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e990615103565b60405180910390fd5b6125fb81613848565b50565b601a5481565b600a5481565b60006126146128e2565b73ffffffffffffffffffffffffffffffffffffffff166126326119fe565b73ffffffffffffffffffffffffffffffffffffffff1614612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f906149de565b60405180910390fd5b600f546010546126989190614bf3565b42116126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d09061516f565b60405180910390fd5b6103e882111561271e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271590615201565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000eba3966336a5b276ebdd157e9c677898603a2c5d6040518263ffffffff1660e01b81526004016127809190614761565b602060405180830381865afa15801561279d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c19190615236565b905060006127ec6127106127de86856139af90919063ffffffff16565b6139c590919063ffffffff16565b90506000811115612825576128247f000000000000000000000000eba3966336a5b276ebdd157e9c677898603a2c5d61dead836139db565b5b60007f000000000000000000000000eba3966336a5b276ebdd157e9c677898603a2c5d90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561289257600080fd5b505af11580156128a6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612950906152d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bf90615367565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aa691906146b7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b19906153f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b889061548b565b60405180910390fd5b60008103612baa57612ba5838360006139db565b613843565b601160009054906101000a900460ff161561326d57612bc76119fe565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c355750612c056119fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c6e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ca8575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc15750600560149054906101000a900460ff16155b1561326c57601160019054906101000a900460ff16612dbb57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d7b5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db1906154f7565b60405180910390fd5b5b601360009054906101000a900460ff1615612f8357612dd86119fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e5f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612eb757507f000000000000000000000000eba3966336a5b276ebdd157e9c677898603a2c5d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f825743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f34906155af565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130265750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130cd57600854811115613070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306790615641565b60405180910390fd5b600a5461307c83611491565b826130879190614bf3565b11156130c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130bf906156ad565b60405180910390fd5b61326b565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131705750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131bf576008548111156131ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b19061573f565b60405180910390fd5b61326a565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661326957600a5461321c83611491565b826132279190614bf3565b1115613268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325f906156ad565b60405180910390fd5b5b5b5b5b5b600061327830611491565b90506000600954821015905080801561329d5750601160029054906101000a900460ff165b80156132b65750600560149054906101000a900460ff16155b801561330c5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133625750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133b85750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133fc576001600560146101000a81548160ff0219169083151502179055506133e0613c5a565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134625750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561347a5750600c60009054906101000a900460ff165b80156134955750600d54600e546134919190614bf3565b4210155b80156134eb5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134fa576134f8613f41565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135b05750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135ba57600090505b6000811561383357602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561361d57506000601854115b156136ea5761364a606461363c601854886139af90919063ffffffff16565b6139c590919063ffffffff16565b9050601854601a548261365d9190614a2d565b6136679190614a9e565b601d60008282546136789190614bf3565b92505081905550601854601b54826136909190614a2d565b61369a9190614a9e565b601e60008282546136ab9190614bf3565b92505081905550601854601954826136c39190614a2d565b6136cd9190614a9e565b601c60008282546136de9190614bf3565b9250508190555061380f565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561374557506000601454115b1561380e576137726064613764601454886139af90919063ffffffff16565b6139c590919063ffffffff16565b9050601454601654826137859190614a2d565b61378f9190614a9e565b601d60008282546137a09190614bf3565b92505081905550601454601754826137b89190614a2d565b6137c29190614a9e565b601e60008282546137d39190614bf3565b92505081905550601454601554826137eb9190614a2d565b6137f59190614a9e565b601c60008282546138069190614bf3565b925050819055505b5b6000811115613824576138238730836139db565b5b8085613830919061575f565b94505b61383e8787876139db565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139bd9190614a2d565b905092915050565b600081836139d39190614a9e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a41906153f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab09061548b565b60405180910390fd5b613ac4838383614107565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4190615805565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613bdd9190614bf3565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c4191906146b7565b60405180910390a3613c5484848461410c565b50505050565b6000613c6530611491565b90506000601e54601c54601d54613c7c9190614bf3565b613c869190614bf3565b9050600080831480613c985750600082145b15613ca557505050613f3f565b6014600954613cb49190614a2d565b831115613ccd576014600954613cca9190614a2d565b92505b6000600283601d5486613ce09190614a2d565b613cea9190614a9e565b613cf49190614a9e565b90506000613d0b828661411190919063ffffffff16565b90506000479050613d1b82614127565b6000613d30824761411190919063ffffffff16565b90506000613d5b87613d4d601c54856139af90919063ffffffff16565b6139c590919063ffffffff16565b90506000613d8688613d78601e54866139af90919063ffffffff16565b6139c590919063ffffffff16565b90506000818385613d97919061575f565b613da1919061575f565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e0190615856565b60006040518083038185875af1925050503d8060008114613e3e576040519150601f19603f3d011682016040523d82523d6000602084013e613e43565b606091505b505080985050600087118015613e595750600081115b15613ea657613e688782614364565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613e9d9392919061586b565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613eec90615856565b60006040518083038185875af1925050503d8060008114613f29576040519150601f19603f3d011682016040523d82523d6000602084013e613f2e565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000eba3966336a5b276ebdd157e9c677898603a2c5d6040518263ffffffff1660e01b8152600401613fa59190614761565b602060405180830381865afa158015613fc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fe69190615236565b90506000614013612710614005600b54856139af90919063ffffffff16565b6139c590919063ffffffff16565b9050600081111561404c5761404b7f000000000000000000000000eba3966336a5b276ebdd157e9c677898603a2c5d61dead836139db565b5b60007f000000000000000000000000eba3966336a5b276ebdd157e9c677898603a2c5d90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156140b957600080fd5b505af11580156140cd573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361411f919061575f565b905092915050565b6000600267ffffffffffffffff811115614144576141436158a2565b5b6040519080825280602002602001820160405280156141725781602001602082028036833780820191505090505b509050308160008151811061418a576141896158d1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561422f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142539190615915565b81600181518110614267576142666158d1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506142cc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128ea565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161432e959493929190615a3b565b600060405180830381600087803b15801561434857600080fd5b505af115801561435c573d6000803e3d6000fd5b505050505050565b61438f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128ea565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016143f696959493929190615a95565b60606040518083038185885af1158015614414573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144399190615af6565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561447a57808201518184015260208101905061445f565b60008484015250505050565b6000601f19601f8301169050919050565b60006144a282614440565b6144ac818561444b565b93506144bc81856020860161445c565b6144c581614486565b840191505092915050565b600060208201905081810360008301526144ea8184614497565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000614522826144f7565b9050919050565b61453281614517565b811461453d57600080fd5b50565b60008135905061454f81614529565b92915050565b6000819050919050565b61456881614555565b811461457357600080fd5b50565b6000813590506145858161455f565b92915050565b600080604083850312156145a2576145a16144f2565b5b60006145b085828601614540565b92505060206145c185828601614576565b9150509250929050565b60008115159050919050565b6145e0816145cb565b82525050565b60006020820190506145fb60008301846145d7565b92915050565b600060208284031215614617576146166144f2565b5b600061462584828501614540565b91505092915050565b6000819050919050565b600061465361464e614649846144f7565b61462e565b6144f7565b9050919050565b600061466582614638565b9050919050565b60006146778261465a565b9050919050565b6146878161466c565b82525050565b60006020820190506146a2600083018461467e565b92915050565b6146b181614555565b82525050565b60006020820190506146cc60008301846146a8565b92915050565b6000602082840312156146e8576146e76144f2565b5b60006146f684828501614576565b91505092915050565b600080600060608486031215614718576147176144f2565b5b600061472686828701614540565b935050602061473786828701614540565b925050604061474886828701614576565b9150509250925092565b61475b81614517565b82525050565b60006020820190506147766000830184614752565b92915050565b600060ff82169050919050565b6147928161477c565b82525050565b60006020820190506147ad6000830184614789565b92915050565b6147bc816145cb565b81146147c757600080fd5b50565b6000813590506147d9816147b3565b92915050565b6000806000606084860312156147f8576147f76144f2565b5b600061480686828701614576565b935050602061481786828701614576565b9250506040614828868287016147ca565b9150509250925092565b60008060408385031215614849576148486144f2565b5b600061485785828601614540565b9250506020614868858286016147ca565b9150509250929050565b60008060006060848603121561488b5761488a6144f2565b5b600061489986828701614576565b93505060206148aa86828701614576565b92505060406148bb86828701614576565b9150509250925092565b6000602082840312156148db576148da6144f2565b5b60006148e9848285016147ca565b91505092915050565b60008060408385031215614909576149086144f2565b5b600061491785828601614540565b925050602061492885828601614540565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061497957607f821691505b60208210810361498c5761498b614932565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149c860208361444b565b91506149d382614992565b602082019050919050565b600060208201905081810360008301526149f7816149bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a3882614555565b9150614a4383614555565b9250828202614a5181614555565b91508282048414831517614a6857614a676149fe565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614aa982614555565b9150614ab483614555565b925082614ac457614ac3614a6f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614b2b602f8361444b565b9150614b3682614acf565b604082019050919050565b60006020820190508181036000830152614b5a81614b1e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614bbd60288361444b565b9150614bc882614b61565b604082019050919050565b60006020820190508181036000830152614bec81614bb0565b9050919050565b6000614bfe82614555565b9150614c0983614555565b9250828201905080821115614c2157614c206149fe565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614c8360338361444b565b9150614c8e82614c27565b604082019050919050565b60006020820190508181036000830152614cb281614c76565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d1560308361444b565b9150614d2082614cb9565b604082019050919050565b60006020820190508181036000830152614d4481614d08565b9050919050565b7f4d757374206b65657020666565732061742031303025206f72206c6573730000600082015250565b6000614d81601e8361444b565b9150614d8c82614d4b565b602082019050919050565b60006020820190508181036000830152614db081614d74565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e1360398361444b565b9150614e1e82614db7565b604082019050919050565b60006020820190508181036000830152614e4281614e06565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ea560258361444b565b9150614eb082614e49565b604082019050919050565b60006020820190508181036000830152614ed481614e98565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614f3760248361444b565b9150614f4282614edb565b604082019050919050565b60006020820190508181036000830152614f6681614f2a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614fc960358361444b565b9150614fd482614f6d565b604082019050919050565b60006020820190508181036000830152614ff881614fbc565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061505b60348361444b565b915061506682614fff565b604082019050919050565b6000602082019050818103600083015261508a8161504e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150ed60268361444b565b91506150f882615091565b604082019050919050565b6000602082019050818103600083015261511c816150e0565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061515960208361444b565b915061516482615123565b602082019050919050565b600060208201905081810360008301526151888161514c565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006151eb602a8361444b565b91506151f68261518f565b604082019050919050565b6000602082019050818103600083015261521a816151de565b9050919050565b6000815190506152308161455f565b92915050565b60006020828403121561524c5761524b6144f2565b5b600061525a84828501615221565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152bf60248361444b565b91506152ca82615263565b604082019050919050565b600060208201905081810360008301526152ee816152b2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061535160228361444b565b915061535c826152f5565b604082019050919050565b6000602082019050818103600083015261538081615344565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006153e360258361444b565b91506153ee82615387565b604082019050919050565b60006020820190508181036000830152615412816153d6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061547560238361444b565b915061548082615419565b604082019050919050565b600060208201905081810360008301526154a481615468565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006154e160168361444b565b91506154ec826154ab565b602082019050919050565b60006020820190508181036000830152615510816154d4565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061559960498361444b565b91506155a482615517565b606082019050919050565b600060208201905081810360008301526155c88161558c565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061562b60358361444b565b9150615636826155cf565b604082019050919050565b6000602082019050818103600083015261565a8161561e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061569760138361444b565b91506156a282615661565b602082019050919050565b600060208201905081810360008301526156c68161568a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061572960368361444b565b9150615734826156cd565b604082019050919050565b600060208201905081810360008301526157588161571c565b9050919050565b600061576a82614555565b915061577583614555565b925082820390508181111561578d5761578c6149fe565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006157ef60268361444b565b91506157fa82615793565b604082019050919050565b6000602082019050818103600083015261581e816157e2565b9050919050565b600081905092915050565b50565b6000615840600083615825565b915061584b82615830565b600082019050919050565b600061586182615833565b9150819050919050565b600060608201905061588060008301866146a8565b61588d60208301856146a8565b61589a60408301846146a8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061590f81614529565b92915050565b60006020828403121561592b5761592a6144f2565b5b600061593984828501615900565b91505092915050565b6000819050919050565b600061596761596261595d84615942565b61462e565b614555565b9050919050565b6159778161594c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6159b281614517565b82525050565b60006159c483836159a9565b60208301905092915050565b6000602082019050919050565b60006159e88261597d565b6159f28185615988565b93506159fd83615999565b8060005b83811015615a2e578151615a1588826159b8565b9750615a20836159d0565b925050600181019050615a01565b5085935050505092915050565b600060a082019050615a5060008301886146a8565b615a5d602083018761596e565b8181036040830152615a6f81866159dd565b9050615a7e6060830185614752565b615a8b60808301846146a8565b9695505050505050565b600060c082019050615aaa6000830189614752565b615ab760208301886146a8565b615ac4604083018761596e565b615ad1606083018661596e565b615ade6080830185614752565b615aeb60a08301846146a8565b979650505050505050565b600080600060608486031215615b0f57615b0e6144f2565b5b6000615b1d86828701615221565b9350506020615b2e86828701615221565b9250506040615b3f86828701615221565b915050925092509256fea2646970667358221220d48181d40133bdd630a0866cdfe31908a95d0d674c5336406afd6a15be69539b64736f6c63430008140033

Deployed Bytecode Sourcemap

33582:19486:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10410:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12577:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35200:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33659:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11530:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42396:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34217:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34039:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34984:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34944;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39706:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13228:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33762:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34130:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34091:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11372:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14129:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33717:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34314:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42561:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34799:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34393:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11701:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3645:103;;;;;;;;;;;;;:::i;:::-;;50650:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38814:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40253:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33854:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34692;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40624:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38607:155;;;;;;;;;;;;;:::i;:::-;;2994:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33891:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34834:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40516:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10629:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41649:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34766:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34270:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35024:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34910:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14847:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34179:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12041:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42157:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35421:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34354:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41459:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41037:414;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39989:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34610:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33924:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39201:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34658:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12279:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33966:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38996:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34729:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3903:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34872:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34006:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52009:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10410:100;10464:13;10497:5;10490:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10410:100;:::o;12577:169::-;12660:4;12677:39;12686:12;:10;:12::i;:::-;12700:7;12709:6;12677:8;:39::i;:::-;12734:4;12727:11;;12577:169;;;;:::o;35200:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;33659:51::-;;;:::o;11530:108::-;11591:7;11618:12;;11611:19;;11530:108;:::o;42396:157::-;3225:12;:10;:12::i;:::-;3214:23;;:7;:5;:7::i;:::-;:23;;;3206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42503:9:::1;;;;;;;;;;;42475:38;;42492:9;42475:38;;;;;;;;;;;;42536:9;42524;;:21;;;;;;;;;;;;;;;;;;42396:157:::0;:::o;34217:46::-;;;;:::o;34039:35::-;;;;:::o;34984:33::-;;;;:::o;34944:::-;;;;:::o;39706:275::-;3225:12;:10;:12::i;:::-;3214:23;;:7;:5;:7::i;:::-;:23;;;3206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39843:4:::1;39835;39830:1;39814:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39813:26;;;;:::i;:::-;39812:35;;;;:::i;:::-;39802:6;:45;;39780:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39966:6;39956;:17;;;;:::i;:::-;39933:20;:40;;;;39706:275:::0;:::o;13228:492::-;13368:4;13385:36;13395:6;13403:9;13414:6;13385:9;:36::i;:::-;13434:24;13461:11;:19;13473:6;13461:19;;;;;;;;;;;;;;;:33;13481:12;:10;:12::i;:::-;13461:33;;;;;;;;;;;;;;;;13434:60;;13533:6;13513:16;:26;;13505:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13620:57;13629:6;13637:12;:10;:12::i;:::-;13670:6;13651:16;:25;13620:8;:57::i;:::-;13708:4;13701:11;;;13228:492;;;;;:::o;33762:53::-;33808:6;33762:53;:::o;34130:42::-;;;;:::o;34091:32::-;;;;;;;;;;;;;:::o;11372:93::-;11430:5;11455:2;11448:9;;11372:93;:::o;14129:215::-;14217:4;14234:80;14243:12;:10;:12::i;:::-;14257:7;14303:10;14266:11;:25;14278:12;:10;:12::i;:::-;14266:25;;;;;;;;;;;;;;;:34;14292:7;14266:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;14234:8;:80::i;:::-;14332:4;14325:11;;14129:215;;;;:::o;33717:38::-;;;:::o;34314:33::-;;;;;;;;;;;;;:::o;42561:126::-;42627:4;42651:19;:28;42671:7;42651:28;;;;;;;;;;;;;;;;;;;;;;;;;42644:35;;42561:126;;;:::o;34799:28::-;;;;:::o;34393:30::-;;;;;;;;;;;;;:::o;11701:127::-;11775:7;11802:9;:18;11812:7;11802:18;;;;;;;;;;;;;;;;11795:25;;11701:127;;;:::o;3645:103::-;3225:12;:10;:12::i;:::-;3214:23;;:7;:5;:7::i;:::-;:23;;;3206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3710:30:::1;3737:1;3710:18;:30::i;:::-;3645:103::o:0;50650:555::-;3225:12;:10;:12::i;:::-;3214:23;;:7;:5;:7::i;:::-;:23;;;3206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50852:3:::1;50829:19;:26;;50807:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50979:4;50967:8;:16;;:33;;;;;50999:1;50987:8;:13;;50967:33;50945:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;51105:19;51087:15;:37;;;;51154:8;51135:16;:27;;;;51189:8;51173:13;;:24;;;;;;;;;;;;;;;;;;50650:555:::0;;;:::o;38814:121::-;38866:4;3225:12;:10;:12::i;:::-;3214:23;;:7;:5;:7::i;:::-;:23;;;3206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38900:5:::1;38883:14;;:22;;;;;;;;;;;;;;;;;;38923:4;38916:11;;38814:121:::0;:::o;40253:167::-;3225:12;:10;:12::i;:::-;3214:23;;:7;:5;:7::i;:::-;:23;;;3206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40408:4:::1;40366:31;:39;40398:6;40366:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;40253:167:::0;;:::o;33854:30::-;;;;;;;;;;;;;:::o;34692:::-;;;;:::o;40624:405::-;3225:12;:10;:12::i;:::-;3214:23;;:7;:5;:7::i;:::-;:23;;;3206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40792:13:::1;40774:15;:31;;;;40834:13;40816:15;:31;;;;40870:7;40858:9;:19;;;;40939:9;;40921:15;;40903;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40888:12;:60;;;;40983:3;40967:12;;:19;;40959:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;40624:405:::0;;;:::o;38607:155::-;3225:12;:10;:12::i;:::-;3214:23;;:7;:5;:7::i;:::-;:23;;;3206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38678:4:::1;38662:13;;:20;;;;;;;;;;;;;;;;;;38707:4;38693:11;;:18;;;;;;;;;;;;;;;;;;38739:15;38722:14;:32;;;;38607:155::o:0;2994:87::-;3040:7;3067:6;;;;;;;;;;;3060:13;;2994:87;:::o;33891:24::-;;;;;;;;;;;;;:::o;34834:31::-;;;;:::o;40516:100::-;3225:12;:10;:12::i;:::-;3214:23;;:7;:5;:7::i;:::-;:23;;;3206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40601:7:::1;40587:11;;:21;;;;;;;;;;;;;;;;;;40516:100:::0;:::o;10629:104::-;10685:13;10718:7;10711:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10629:104;:::o;41649:304::-;3225:12;:10;:12::i;:::-;3214:23;;:7;:5;:7::i;:::-;:23;;;3206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41793:13:::1;41785:21;;:4;:21;;::::0;41763:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;41904:41;41933:4;41939:5;41904:28;:41::i;:::-;41649:304:::0;;:::o;34766:24::-;;;;:::o;34270:35::-;;;;:::o;35024:27::-;;;;:::o;34910:25::-;;;;:::o;14847:413::-;14940:4;14957:24;14984:11;:25;14996:12;:10;:12::i;:::-;14984:25;;;;;;;;;;;;;;;:34;15010:7;14984:34;;;;;;;;;;;;;;;;14957:61;;15057:15;15037:16;:35;;15029:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15150:67;15159:12;:10;:12::i;:::-;15173:7;15201:15;15182:16;:34;15150:8;:67::i;:::-;15248:4;15241:11;;;14847:413;;;;:::o;34179:29::-;;;;:::o;12041:175::-;12127:4;12144:42;12154:12;:10;:12::i;:::-;12168:9;12179:6;12144:9;:42::i;:::-;12204:4;12197:11;;12041:175;;;;:::o;42157:231::-;3225:12;:10;:12::i;:::-;3214:23;;:7;:5;:7::i;:::-;:23;;;3206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42317:15:::1;;;;;;;;;;;42274:59;;42297:18;42274:59;;;;;;;;;;;;42362:18;42344:15;;:36;;;;;;;;;;;;;;;;;;42157:231:::0;:::o;35421:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;34354:32::-;;;;;;;;;;;;;:::o;41459:182::-;3225:12;:10;:12::i;:::-;3214:23;;:7;:5;:7::i;:::-;:23;;;3206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41575:8:::1;41544:19;:28;41564:7;41544:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41615:7;41599:34;;;41624:8;41599:34;;;;;;:::i;:::-;;;;;;;;41459:182:::0;;:::o;41037:414::-;3225:12;:10;:12::i;:::-;3214:23;;:7;:5;:7::i;:::-;:23;;;3206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41207:13:::1;41188:16;:32;;;;41250:13;41231:16;:32;;;;41287:7;41274:10;:20;;;;41359:10;;41340:16;;41321;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;41305:13;:64;;;;41405:3;41388:13;;:20;;41380:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41037:414:::0;;;:::o;39989:256::-;3225:12;:10;:12::i;:::-;3214:23;;:7;:5;:7::i;:::-;:23;;;3206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40129:4:::1;40121;40116:1;40100:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40099:26;;;;:::i;:::-;40098:35;;;;:::i;:::-;40088:6;:45;;40066:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;40230:6;40220;:17;;;;:::i;:::-;40208:9;:29;;;;39989:256:::0;:::o;34610:39::-;;;;;;;;;;;;;:::o;33924:35::-;;;;:::o;39201:497::-;39309:4;3225:12;:10;:12::i;:::-;3214:23;;:7;:5;:7::i;:::-;:23;;;3206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39388:6:::1;39383:1;39367:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39366:28;;;;:::i;:::-;39353:9;:41;;39331:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;39543:4;39538:1;39522:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39521:26;;;;:::i;:::-;39508:9;:39;;39486:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;39659:9;39638:18;:30;;;;39686:4;39679:11;;39201:497:::0;;;:::o;34658:27::-;;;;:::o;12279:151::-;12368:7;12395:11;:18;12407:5;12395:18;;;;;;;;;;;;;;;:27;12414:7;12395:27;;;;;;;;;;;;;;;;12388:34;;12279:151;;;;:::o;33966:33::-;;;;:::o;38996:135::-;39056:4;3225:12;:10;:12::i;:::-;3214:23;;:7;:5;:7::i;:::-;:23;;;3206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39096:5:::1;39073:20;;:28;;;;;;;;;;;;;;;;;;39119:4;39112:11;;38996:135:::0;:::o;34729:30::-;;;;:::o;3903:201::-;3225:12;:10;:12::i;:::-;3214:23;;:7;:5;:7::i;:::-;:23;;;3206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4012:1:::1;3992:22;;:8;:22;;::::0;3984:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4068:28;4087:8;4068:18;:28::i;:::-;3903:201:::0;:::o;34872:31::-;;;;:::o;34006:24::-;;;;:::o;52009:1056::-;52120:4;3225:12;:10;:12::i;:::-;3214:23;;:7;:5;:7::i;:::-;:23;;;3206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52205:19:::1;;52182:20;;:42;;;;:::i;:::-;52164:15;:60;52142:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;52314:4;52303:7;:15;;52295:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;52399:15;52376:20;:38;;;;52469:28;52500:4;:14;;;52515:13;52500:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52469:60;;52579:20;52602:44;52640:5;52602:33;52627:7;52602:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;52579:67;;52766:1;52751:12;:16;52747:110;;;52784:61;52800:13;52823:6;52832:12;52784:15;:61::i;:::-;52747:110;52932:19;52969:13;52932:51;;52994:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53021:14;;;;;;;;;;53053:4;53046:11;;;;;52009:1056:::0;;;:::o;1667:98::-;1720:7;1747:10;1740:17;;1667:98;:::o;18531:380::-;18684:1;18667:19;;:5;:19;;;18659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18765:1;18746:21;;:7;:21;;;18738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18849:6;18819:11;:18;18831:5;18819:18;;;;;;;;;;;;;;;:27;18838:7;18819:27;;;;;;;;;;;;;;;:36;;;;18887:7;18871:32;;18880:5;18871:32;;;18896:6;18871:32;;;;;;:::i;:::-;;;;;;;;18531:380;;;:::o;42745:5011::-;42893:1;42877:18;;:4;:18;;;42869:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42970:1;42956:16;;:2;:16;;;42948:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43039:1;43029:6;:11;43025:93;;43057:28;43073:4;43079:2;43083:1;43057:15;:28::i;:::-;43100:7;;43025:93;43134:14;;;;;;;;;;;43130:2487;;;43195:7;:5;:7::i;:::-;43187:15;;:4;:15;;;;:49;;;;;43229:7;:5;:7::i;:::-;43223:13;;:2;:13;;;;43187:49;:86;;;;;43271:1;43257:16;;:2;:16;;;;43187:86;:128;;;;;43308:6;43294:21;;:2;:21;;;;43187:128;:158;;;;;43337:8;;;;;;;;;;;43336:9;43187:158;43165:2441;;;43385:13;;;;;;;;;;;43380:223;;43457:19;:25;43477:4;43457:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43486:19;:23;43506:2;43486:23;;;;;;;;;;;;;;;;;;;;;;;;;43457:52;43423:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;43380:223;43759:20;;;;;;;;;;;43755:641;;;43840:7;:5;:7::i;:::-;43834:13;;:2;:13;;;;:72;;;;;43890:15;43876:30;;:2;:30;;;;43834:72;:129;;;;;43949:13;43935:28;;:2;:28;;;;43834:129;43804:573;;;44127:12;44052:28;:39;44081:9;44052:39;;;;;;;;;;;;;;;;:87;44014:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;44341:12;44299:28;:39;44328:9;44299:39;;;;;;;;;;;;;;;:54;;;;43804:573;43755:641;44470:25;:31;44496:4;44470:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44527:31;:35;44559:2;44527:35;;;;;;;;;;;;;;;;;;;;;;;;;44526:36;44470:92;44444:1147;;;44649:20;;44639:6;:30;;44605:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44857:9;;44840:13;44850:2;44840:9;:13::i;:::-;44831:6;:22;;;;:::i;:::-;:35;;44797:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44444:1147;;;45035:25;:29;45061:2;45035:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;45090:31;:37;45122:4;45090:37;;;;;;;;;;;;;;;;;;;;;;;;;45089:38;45035:92;45009:582;;;45214:20;;45204:6;:30;;45170:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;45009:582;;;45371:31;:35;45403:2;45371:35;;;;;;;;;;;;;;;;;;;;;;;;;45366:225;;45491:9;;45474:13;45484:2;45474:9;:13::i;:::-;45465:6;:22;;;;:::i;:::-;:35;;45431:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;45366:225;45009:582;44444:1147;43165:2441;43130:2487;45629:28;45660:24;45678:4;45660:9;:24::i;:::-;45629:55;;45697:12;45736:18;;45712:20;:42;;45697:57;;45785:7;:35;;;;;45809:11;;;;;;;;;;;45785:35;:61;;;;;45838:8;;;;;;;;;;;45837:9;45785:61;:110;;;;;45864:25;:31;45890:4;45864:31;;;;;;;;;;;;;;;;;;;;;;;;;45863:32;45785:110;:153;;;;;45913:19;:25;45933:4;45913:25;;;;;;;;;;;;;;;;;;;;;;;;;45912:26;45785:153;:194;;;;;45956:19;:23;45976:2;45956:23;;;;;;;;;;;;;;;;;;;;;;;;;45955:24;45785:194;45767:326;;;46017:4;46006:8;;:15;;;;;;;;;;;;;;;;;;46038:10;:8;:10::i;:::-;46076:5;46065:8;;:16;;;;;;;;;;;;;;;;;;45767:326;46124:8;;;;;;;;;;;46123:9;:55;;;;;46149:25;:29;46175:2;46149:29;;;;;;;;;;;;;;;;;;;;;;;;;46123:55;:85;;;;;46195:13;;;;;;;;;;;46123:85;:153;;;;;46261:15;;46244:14;;:32;;;;:::i;:::-;46225:15;:51;;46123:153;:196;;;;;46294:19;:25;46314:4;46294:25;;;;;;;;;;;;;;;;;;;;;;;;;46293:26;46123:196;46105:282;;;46346:29;:27;:29::i;:::-;;46105:282;46399:12;46415:8;;;;;;;;;;;46414:9;46399:24;;46525:19;:25;46545:4;46525:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;46554:19;:23;46574:2;46554:23;;;;;;;;;;;;;;;;;;;;;;;;;46525:52;46521:100;;;46604:5;46594:15;;46521:100;46633:12;46738:7;46734:969;;;46790:25;:29;46816:2;46790:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46839:1;46823:13;;:17;46790:50;46786:768;;;46868:34;46898:3;46868:25;46879:13;;46868:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46861:41;;46971:13;;46951:16;;46944:4;:23;;;;:::i;:::-;46943:41;;;;:::i;:::-;46921:18;;:63;;;;;;;:::i;:::-;;;;;;;;47041:13;;47027:10;;47020:4;:17;;;;:::i;:::-;47019:35;;;;:::i;:::-;47003:12;;:51;;;;;;;:::i;:::-;;;;;;;;47123:13;;47103:16;;47096:4;:23;;;;:::i;:::-;47095:41;;;;:::i;:::-;47073:18;;:63;;;;;;;:::i;:::-;;;;;;;;46786:768;;;47198:25;:31;47224:4;47198:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;47248:1;47233:12;;:16;47198:51;47194:360;;;47277:33;47306:3;47277:24;47288:12;;47277:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;47270:40;;47378:12;;47359:15;;47352:4;:22;;;;:::i;:::-;47351:39;;;;:::i;:::-;47329:18;;:61;;;;;;;:::i;:::-;;;;;;;;47446:12;;47433:9;;47426:4;:16;;;;:::i;:::-;47425:33;;;;:::i;:::-;47409:12;;:49;;;;;;;:::i;:::-;;;;;;;;47526:12;;47507:15;;47500:4;:22;;;;:::i;:::-;47499:39;;;;:::i;:::-;47477:18;;:61;;;;;;;:::i;:::-;;;;;;;;47194:360;46786:768;47581:1;47574:4;:8;47570:91;;;47603:42;47619:4;47633;47640;47603:15;:42::i;:::-;47570:91;47687:4;47677:14;;;;;:::i;:::-;;;46734:969;47715:33;47731:4;47737:2;47741:6;47715:15;:33::i;:::-;42858:4898;;;;42745:5011;;;;:::o;4264:191::-;4338:16;4357:6;;;;;;;;;;;4338:25;;4383:8;4374:6;;:17;;;;;;;;;;;;;;;;;;4438:8;4407:40;;4428:8;4407:40;;;;;;;;;;;;4327:128;4264:191;:::o;41961:188::-;42078:5;42044:25;:31;42070:4;42044:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;42135:5;42101:40;;42129:4;42101:40;;;;;;;;;;;;41961:188;;:::o;23984:98::-;24042:7;24073:1;24069;:5;;;;:::i;:::-;24062:12;;23984:98;;;;:::o;24383:::-;24441:7;24472:1;24468;:5;;;;:::i;:::-;24461:12;;24383:98;;;;:::o;15750:733::-;15908:1;15890:20;;:6;:20;;;15882:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15992:1;15971:23;;:9;:23;;;15963:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16047:47;16068:6;16076:9;16087:6;16047:20;:47::i;:::-;16107:21;16131:9;:17;16141:6;16131:17;;;;;;;;;;;;;;;;16107:41;;16184:6;16167:13;:23;;16159:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;16305:6;16289:13;:22;16269:9;:17;16279:6;16269:17;;;;;;;;;;;;;;;:42;;;;16357:6;16333:9;:20;16343:9;16333:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16398:9;16381:35;;16390:6;16381:35;;;16409:6;16381:35;;;;;;:::i;:::-;;;;;;;;16429:46;16449:6;16457:9;16468:6;16429:19;:46::i;:::-;15871:612;15750:733;;;:::o;48886:1756::-;48925:23;48951:24;48969:4;48951:9;:24::i;:::-;48925:50;;48986:25;49082:12;;49048:18;;49014;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48986:108;;49105:12;49153:1;49134:15;:20;:46;;;;49179:1;49158:17;:22;49134:46;49130:85;;;49197:7;;;;;49130:85;49270:2;49249:18;;:23;;;;:::i;:::-;49231:15;:41;49227:115;;;49328:2;49307:18;;:23;;;;:::i;:::-;49289:41;;49227:115;49403:23;49516:1;49483:17;49448:18;;49430:15;:36;;;;:::i;:::-;49429:71;;;;:::i;:::-;:88;;;;:::i;:::-;49403:114;;49528:26;49557:36;49577:15;49557;:19;;:36;;;;:::i;:::-;49528:65;;49606:25;49634:21;49606:49;;49668:36;49685:18;49668:16;:36::i;:::-;49717:18;49738:44;49764:17;49738:21;:25;;:44;;;;:::i;:::-;49717:65;;49795:23;49821:81;49874:17;49821:34;49836:18;;49821:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;49795:107;;49913:17;49933:51;49966:17;49933:28;49948:12;;49933:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49913:71;;49997:23;50054:9;50036:15;50023:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49997:66;;50097:1;50076:18;:22;;;;50130:1;50109:18;:22;;;;50157:1;50142:12;:16;;;;50193:9;;;;;;;;;;;50185:23;;50216:9;50185:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50171:59;;;;;50265:1;50247:15;:19;:42;;;;;50288:1;50270:15;:19;50247:42;50243:278;;;50306:46;50319:15;50336;50306:12;:46::i;:::-;50372:137;50405:18;50442:15;50476:18;;50372:137;;;;;;;;:::i;:::-;;;;;;;;50243:278;50555:15;;;;;;;;;;;50547:29;;50598:21;50547:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50533:101;;;;;48914:1728;;;;;;;;;;48886:1756;:::o;51213:788::-;51270:4;51304:15;51287:14;:32;;;;51374:28;51405:4;:14;;;51420:13;51405:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51374:60;;51484:20;51507:77;51568:5;51507:42;51532:16;;51507:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;51484:100;;51704:1;51689:12;:16;51685:110;;;51722:61;51738:13;51761:6;51770:12;51722:15;:61::i;:::-;51685:110;51870:19;51907:13;51870:51;;51932:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51959:12;;;;;;;;;;51989:4;51982:11;;;;;51213:788;:::o;19511:125::-;;;;:::o;20240:124::-;;;;:::o;23627:98::-;23685:7;23716:1;23712;:5;;;;:::i;:::-;23705:12;;23627:98;;;;:::o;47764:589::-;47890:21;47928:1;47914:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47890:40;;47959:4;47941;47946:1;47941:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47985:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47975:4;47980:1;47975:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;48020:62;48037:4;48052:15;48070:11;48020:8;:62::i;:::-;48121:15;:66;;;48202:11;48228:1;48272:4;48299;48319:15;48121:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47819:534;47764:589;:::o;48361:517::-;48509:62;48526:4;48541:15;48559:11;48509:8;:62::i;:::-;48614:15;:31;;;48653:9;48686:4;48706:11;48732:1;48775;33808:6;48844:15;48614:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;48361:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:613::-;7188:6;7196;7204;7253:2;7241:9;7232:7;7228:23;7224:32;7221:119;;;7259:79;;:::i;:::-;7221:119;7379:1;7404:53;7449:7;7440:6;7429:9;7425:22;7404:53;:::i;:::-;7394:63;;7350:117;7506:2;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7477:118;7634:2;7660:50;7702:7;7693:6;7682:9;7678:22;7660:50;:::i;:::-;7650:60;;7605:115;7114:613;;;;;:::o;7733:468::-;7798:6;7806;7855:2;7843:9;7834:7;7830:23;7826:32;7823:119;;;7861:79;;:::i;:::-;7823:119;7981:1;8006:53;8051:7;8042:6;8031:9;8027:22;8006:53;:::i;:::-;7996:63;;7952:117;8108:2;8134:50;8176:7;8167:6;8156:9;8152:22;8134:50;:::i;:::-;8124:60;;8079:115;7733:468;;;;;:::o;8207:619::-;8284:6;8292;8300;8349:2;8337:9;8328:7;8324:23;8320:32;8317:119;;;8355:79;;:::i;:::-;8317:119;8475:1;8500:53;8545:7;8536:6;8525:9;8521:22;8500:53;:::i;:::-;8490:63;;8446:117;8602:2;8628:53;8673:7;8664:6;8653:9;8649:22;8628:53;:::i;:::-;8618:63;;8573:118;8730:2;8756:53;8801:7;8792:6;8781:9;8777:22;8756:53;:::i;:::-;8746:63;;8701:118;8207:619;;;;;:::o;8832:323::-;8888:6;8937:2;8925:9;8916:7;8912:23;8908:32;8905:119;;;8943:79;;:::i;:::-;8905:119;9063:1;9088:50;9130:7;9121:6;9110:9;9106:22;9088:50;:::i;:::-;9078:60;;9034:114;8832:323;;;;:::o;9161:474::-;9229:6;9237;9286:2;9274:9;9265:7;9261:23;9257:32;9254:119;;;9292:79;;:::i;:::-;9254:119;9412:1;9437:53;9482:7;9473:6;9462:9;9458:22;9437:53;:::i;:::-;9427:63;;9383:117;9539:2;9565:53;9610:7;9601:6;9590:9;9586:22;9565:53;:::i;:::-;9555:63;;9510:118;9161:474;;;;;:::o;9641:180::-;9689:77;9686:1;9679:88;9786:4;9783:1;9776:15;9810:4;9807:1;9800:15;9827:320;9871:6;9908:1;9902:4;9898:12;9888:22;;9955:1;9949:4;9945:12;9976:18;9966:81;;10032:4;10024:6;10020:17;10010:27;;9966:81;10094:2;10086:6;10083:14;10063:18;10060:38;10057:84;;10113:18;;:::i;:::-;10057:84;9878:269;9827:320;;;:::o;10153:182::-;10293:34;10289:1;10281:6;10277:14;10270:58;10153:182;:::o;10341:366::-;10483:3;10504:67;10568:2;10563:3;10504:67;:::i;:::-;10497:74;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10341:366;;;:::o;10713:419::-;10879:4;10917:2;10906:9;10902:18;10894:26;;10966:9;10960:4;10956:20;10952:1;10941:9;10937:17;10930:47;10994:131;11120:4;10994:131;:::i;:::-;10986:139;;10713:419;;;:::o;11138:180::-;11186:77;11183:1;11176:88;11283:4;11280:1;11273:15;11307:4;11304:1;11297:15;11324:410;11364:7;11387:20;11405:1;11387:20;:::i;:::-;11382:25;;11421:20;11439:1;11421:20;:::i;:::-;11416:25;;11476:1;11473;11469:9;11498:30;11516:11;11498:30;:::i;:::-;11487:41;;11677:1;11668:7;11664:15;11661:1;11658:22;11638:1;11631:9;11611:83;11588:139;;11707:18;;:::i;:::-;11588:139;11372:362;11324:410;;;;:::o;11740:180::-;11788:77;11785:1;11778:88;11885:4;11882:1;11875:15;11909:4;11906:1;11899:15;11926:185;11966:1;11983:20;12001:1;11983:20;:::i;:::-;11978:25;;12017:20;12035:1;12017:20;:::i;:::-;12012:25;;12056:1;12046:35;;12061:18;;:::i;:::-;12046:35;12103:1;12100;12096:9;12091:14;;11926:185;;;;:::o;12117:234::-;12257:34;12253:1;12245:6;12241:14;12234:58;12326:17;12321:2;12313:6;12309:15;12302:42;12117:234;:::o;12357:366::-;12499:3;12520:67;12584:2;12579:3;12520:67;:::i;:::-;12513:74;;12596:93;12685:3;12596:93;:::i;:::-;12714:2;12709:3;12705:12;12698:19;;12357:366;;;:::o;12729:419::-;12895:4;12933:2;12922:9;12918:18;12910:26;;12982:9;12976:4;12972:20;12968:1;12957:9;12953:17;12946:47;13010:131;13136:4;13010:131;:::i;:::-;13002:139;;12729:419;;;:::o;13154:227::-;13294:34;13290:1;13282:6;13278:14;13271:58;13363:10;13358:2;13350:6;13346:15;13339:35;13154:227;:::o;13387:366::-;13529:3;13550:67;13614:2;13609:3;13550:67;:::i;:::-;13543:74;;13626:93;13715:3;13626:93;:::i;:::-;13744:2;13739:3;13735:12;13728:19;;13387:366;;;:::o;13759:419::-;13925:4;13963:2;13952:9;13948:18;13940:26;;14012:9;14006:4;14002:20;13998:1;13987:9;13983:17;13976:47;14040:131;14166:4;14040:131;:::i;:::-;14032:139;;13759:419;;;:::o;14184:191::-;14224:3;14243:20;14261:1;14243:20;:::i;:::-;14238:25;;14277:20;14295:1;14277:20;:::i;:::-;14272:25;;14320:1;14317;14313:9;14306:16;;14341:3;14338:1;14335:10;14332:36;;;14348:18;;:::i;:::-;14332:36;14184:191;;;;:::o;14381:238::-;14521:34;14517:1;14509:6;14505:14;14498:58;14590:21;14585:2;14577:6;14573:15;14566:46;14381:238;:::o;14625:366::-;14767:3;14788:67;14852:2;14847:3;14788:67;:::i;:::-;14781:74;;14864:93;14953:3;14864:93;:::i;:::-;14982:2;14977:3;14973:12;14966:19;;14625:366;;;:::o;14997:419::-;15163:4;15201:2;15190:9;15186:18;15178:26;;15250:9;15244:4;15240:20;15236:1;15225:9;15221:17;15214:47;15278:131;15404:4;15278:131;:::i;:::-;15270:139;;14997:419;;;:::o;15422:235::-;15562:34;15558:1;15550:6;15546:14;15539:58;15631:18;15626:2;15618:6;15614:15;15607:43;15422:235;:::o;15663:366::-;15805:3;15826:67;15890:2;15885:3;15826:67;:::i;:::-;15819:74;;15902:93;15991:3;15902:93;:::i;:::-;16020:2;16015:3;16011:12;16004:19;;15663:366;;;:::o;16035:419::-;16201:4;16239:2;16228:9;16224:18;16216:26;;16288:9;16282:4;16278:20;16274:1;16263:9;16259:17;16252:47;16316:131;16442:4;16316:131;:::i;:::-;16308:139;;16035:419;;;:::o;16460:180::-;16600:32;16596:1;16588:6;16584:14;16577:56;16460:180;:::o;16646:366::-;16788:3;16809:67;16873:2;16868:3;16809:67;:::i;:::-;16802:74;;16885:93;16974:3;16885:93;:::i;:::-;17003:2;16998:3;16994:12;16987:19;;16646:366;;;:::o;17018:419::-;17184:4;17222:2;17211:9;17207:18;17199:26;;17271:9;17265:4;17261:20;17257:1;17246:9;17242:17;17235:47;17299:131;17425:4;17299:131;:::i;:::-;17291:139;;17018:419;;;:::o;17443:244::-;17583:34;17579:1;17571:6;17567:14;17560:58;17652:27;17647:2;17639:6;17635:15;17628:52;17443:244;:::o;17693:366::-;17835:3;17856:67;17920:2;17915:3;17856:67;:::i;:::-;17849:74;;17932:93;18021:3;17932:93;:::i;:::-;18050:2;18045:3;18041:12;18034:19;;17693:366;;;:::o;18065:419::-;18231:4;18269:2;18258:9;18254:18;18246:26;;18318:9;18312:4;18308:20;18304:1;18293:9;18289:17;18282:47;18346:131;18472:4;18346:131;:::i;:::-;18338:139;;18065:419;;;:::o;18490:224::-;18630:34;18626:1;18618:6;18614:14;18607:58;18699:7;18694:2;18686:6;18682:15;18675:32;18490:224;:::o;18720:366::-;18862:3;18883:67;18947:2;18942:3;18883:67;:::i;:::-;18876:74;;18959:93;19048:3;18959:93;:::i;:::-;19077:2;19072:3;19068:12;19061:19;;18720:366;;;:::o;19092:419::-;19258:4;19296:2;19285:9;19281:18;19273:26;;19345:9;19339:4;19335:20;19331:1;19320:9;19316:17;19309:47;19373:131;19499:4;19373:131;:::i;:::-;19365:139;;19092:419;;;:::o;19517:223::-;19657:34;19653:1;19645:6;19641:14;19634:58;19726:6;19721:2;19713:6;19709:15;19702:31;19517:223;:::o;19746:366::-;19888:3;19909:67;19973:2;19968:3;19909:67;:::i;:::-;19902:74;;19985:93;20074:3;19985:93;:::i;:::-;20103:2;20098:3;20094:12;20087:19;;19746:366;;;:::o;20118:419::-;20284:4;20322:2;20311:9;20307:18;20299:26;;20371:9;20365:4;20361:20;20357:1;20346:9;20342:17;20335:47;20399:131;20525:4;20399:131;:::i;:::-;20391:139;;20118:419;;;:::o;20543:240::-;20683:34;20679:1;20671:6;20667:14;20660:58;20752:23;20747:2;20739:6;20735:15;20728:48;20543:240;:::o;20789:366::-;20931:3;20952:67;21016:2;21011:3;20952:67;:::i;:::-;20945:74;;21028:93;21117:3;21028:93;:::i;:::-;21146:2;21141:3;21137:12;21130:19;;20789:366;;;:::o;21161:419::-;21327:4;21365:2;21354:9;21350:18;21342:26;;21414:9;21408:4;21404:20;21400:1;21389:9;21385:17;21378:47;21442:131;21568:4;21442:131;:::i;:::-;21434:139;;21161:419;;;:::o;21586:239::-;21726:34;21722:1;21714:6;21710:14;21703:58;21795:22;21790:2;21782:6;21778:15;21771:47;21586:239;:::o;21831:366::-;21973:3;21994:67;22058:2;22053:3;21994:67;:::i;:::-;21987:74;;22070:93;22159:3;22070:93;:::i;:::-;22188:2;22183:3;22179:12;22172:19;;21831:366;;;:::o;22203:419::-;22369:4;22407:2;22396:9;22392:18;22384:26;;22456:9;22450:4;22446:20;22442:1;22431:9;22427:17;22420:47;22484:131;22610:4;22484:131;:::i;:::-;22476:139;;22203:419;;;:::o;22628:225::-;22768:34;22764:1;22756:6;22752:14;22745:58;22837:8;22832:2;22824:6;22820:15;22813:33;22628:225;:::o;22859:366::-;23001:3;23022:67;23086:2;23081:3;23022:67;:::i;:::-;23015:74;;23098:93;23187:3;23098:93;:::i;:::-;23216:2;23211:3;23207:12;23200:19;;22859:366;;;:::o;23231:419::-;23397:4;23435:2;23424:9;23420:18;23412:26;;23484:9;23478:4;23474:20;23470:1;23459:9;23455:17;23448:47;23512:131;23638:4;23512:131;:::i;:::-;23504:139;;23231:419;;;:::o;23656:182::-;23796:34;23792:1;23784:6;23780:14;23773:58;23656:182;:::o;23844:366::-;23986:3;24007:67;24071:2;24066:3;24007:67;:::i;:::-;24000:74;;24083:93;24172:3;24083:93;:::i;:::-;24201:2;24196:3;24192:12;24185:19;;23844:366;;;:::o;24216:419::-;24382:4;24420:2;24409:9;24405:18;24397:26;;24469:9;24463:4;24459:20;24455:1;24444:9;24440:17;24433:47;24497:131;24623:4;24497:131;:::i;:::-;24489:139;;24216:419;;;:::o;24641:229::-;24781:34;24777:1;24769:6;24765:14;24758:58;24850:12;24845:2;24837:6;24833:15;24826:37;24641:229;:::o;24876:366::-;25018:3;25039:67;25103:2;25098:3;25039:67;:::i;:::-;25032:74;;25115:93;25204:3;25115:93;:::i;:::-;25233:2;25228:3;25224:12;25217:19;;24876:366;;;:::o;25248:419::-;25414:4;25452:2;25441:9;25437:18;25429:26;;25501:9;25495:4;25491:20;25487:1;25476:9;25472:17;25465:47;25529:131;25655:4;25529:131;:::i;:::-;25521:139;;25248:419;;;:::o;25673:143::-;25730:5;25761:6;25755:13;25746:22;;25777:33;25804:5;25777:33;:::i;:::-;25673:143;;;;:::o;25822:351::-;25892:6;25941:2;25929:9;25920:7;25916:23;25912:32;25909:119;;;25947:79;;:::i;:::-;25909:119;26067:1;26092:64;26148:7;26139:6;26128:9;26124:22;26092:64;:::i;:::-;26082:74;;26038:128;25822:351;;;;:::o;26179:223::-;26319:34;26315:1;26307:6;26303:14;26296:58;26388:6;26383:2;26375:6;26371:15;26364:31;26179:223;:::o;26408:366::-;26550:3;26571:67;26635:2;26630:3;26571:67;:::i;:::-;26564:74;;26647:93;26736:3;26647:93;:::i;:::-;26765:2;26760:3;26756:12;26749:19;;26408:366;;;:::o;26780:419::-;26946:4;26984:2;26973:9;26969:18;26961:26;;27033:9;27027:4;27023:20;27019:1;27008:9;27004:17;26997:47;27061:131;27187:4;27061:131;:::i;:::-;27053:139;;26780:419;;;:::o;27205:221::-;27345:34;27341:1;27333:6;27329:14;27322:58;27414:4;27409:2;27401:6;27397:15;27390:29;27205:221;:::o;27432:366::-;27574:3;27595:67;27659:2;27654:3;27595:67;:::i;:::-;27588:74;;27671:93;27760:3;27671:93;:::i;:::-;27789:2;27784:3;27780:12;27773:19;;27432:366;;;:::o;27804:419::-;27970:4;28008:2;27997:9;27993:18;27985:26;;28057:9;28051:4;28047:20;28043:1;28032:9;28028:17;28021:47;28085:131;28211:4;28085:131;:::i;:::-;28077:139;;27804:419;;;:::o;28229:224::-;28369:34;28365:1;28357:6;28353:14;28346:58;28438:7;28433:2;28425:6;28421:15;28414:32;28229:224;:::o;28459:366::-;28601:3;28622:67;28686:2;28681:3;28622:67;:::i;:::-;28615:74;;28698:93;28787:3;28698:93;:::i;:::-;28816:2;28811:3;28807:12;28800:19;;28459:366;;;:::o;28831:419::-;28997:4;29035:2;29024:9;29020:18;29012:26;;29084:9;29078:4;29074:20;29070:1;29059:9;29055:17;29048:47;29112:131;29238:4;29112:131;:::i;:::-;29104:139;;28831:419;;;:::o;29256:222::-;29396:34;29392:1;29384:6;29380:14;29373:58;29465:5;29460:2;29452:6;29448:15;29441:30;29256:222;:::o;29484:366::-;29626:3;29647:67;29711:2;29706:3;29647:67;:::i;:::-;29640:74;;29723:93;29812:3;29723:93;:::i;:::-;29841:2;29836:3;29832:12;29825:19;;29484:366;;;:::o;29856:419::-;30022:4;30060:2;30049:9;30045:18;30037:26;;30109:9;30103:4;30099:20;30095:1;30084:9;30080:17;30073:47;30137:131;30263:4;30137:131;:::i;:::-;30129:139;;29856:419;;;:::o;30281:172::-;30421:24;30417:1;30409:6;30405:14;30398:48;30281:172;:::o;30459:366::-;30601:3;30622:67;30686:2;30681:3;30622:67;:::i;:::-;30615:74;;30698:93;30787:3;30698:93;:::i;:::-;30816:2;30811:3;30807:12;30800:19;;30459:366;;;:::o;30831:419::-;30997:4;31035:2;31024:9;31020:18;31012:26;;31084:9;31078:4;31074:20;31070:1;31059:9;31055:17;31048:47;31112:131;31238:4;31112:131;:::i;:::-;31104:139;;30831:419;;;:::o;31256:297::-;31396:34;31392:1;31384:6;31380:14;31373:58;31465:34;31460:2;31452:6;31448:15;31441:59;31534:11;31529:2;31521:6;31517:15;31510:36;31256:297;:::o;31559:366::-;31701:3;31722:67;31786:2;31781:3;31722:67;:::i;:::-;31715:74;;31798:93;31887:3;31798:93;:::i;:::-;31916:2;31911:3;31907:12;31900:19;;31559:366;;;:::o;31931:419::-;32097:4;32135:2;32124:9;32120:18;32112:26;;32184:9;32178:4;32174:20;32170:1;32159:9;32155:17;32148:47;32212:131;32338:4;32212:131;:::i;:::-;32204:139;;31931:419;;;:::o;32356:240::-;32496:34;32492:1;32484:6;32480:14;32473:58;32565:23;32560:2;32552:6;32548:15;32541:48;32356:240;:::o;32602:366::-;32744:3;32765:67;32829:2;32824:3;32765:67;:::i;:::-;32758:74;;32841:93;32930:3;32841:93;:::i;:::-;32959:2;32954:3;32950:12;32943:19;;32602:366;;;:::o;32974:419::-;33140:4;33178:2;33167:9;33163:18;33155:26;;33227:9;33221:4;33217:20;33213:1;33202:9;33198:17;33191:47;33255:131;33381:4;33255:131;:::i;:::-;33247:139;;32974:419;;;:::o;33399:169::-;33539:21;33535:1;33527:6;33523:14;33516:45;33399:169;:::o;33574:366::-;33716:3;33737:67;33801:2;33796:3;33737:67;:::i;:::-;33730:74;;33813:93;33902:3;33813:93;:::i;:::-;33931:2;33926:3;33922:12;33915:19;;33574:366;;;:::o;33946:419::-;34112:4;34150:2;34139:9;34135:18;34127:26;;34199:9;34193:4;34189:20;34185:1;34174:9;34170:17;34163:47;34227:131;34353:4;34227:131;:::i;:::-;34219:139;;33946:419;;;:::o;34371:241::-;34511:34;34507:1;34499:6;34495:14;34488:58;34580:24;34575:2;34567:6;34563:15;34556:49;34371:241;:::o;34618:366::-;34760:3;34781:67;34845:2;34840:3;34781:67;:::i;:::-;34774:74;;34857:93;34946:3;34857:93;:::i;:::-;34975:2;34970:3;34966:12;34959:19;;34618:366;;;:::o;34990:419::-;35156:4;35194:2;35183:9;35179:18;35171:26;;35243:9;35237:4;35233:20;35229:1;35218:9;35214:17;35207:47;35271:131;35397:4;35271:131;:::i;:::-;35263:139;;34990:419;;;:::o;35415:194::-;35455:4;35475:20;35493:1;35475:20;:::i;:::-;35470:25;;35509:20;35527:1;35509:20;:::i;:::-;35504:25;;35553:1;35550;35546:9;35538:17;;35577:1;35571:4;35568:11;35565:37;;;35582:18;;:::i;:::-;35565:37;35415:194;;;;:::o;35615:225::-;35755:34;35751:1;35743:6;35739:14;35732:58;35824:8;35819:2;35811:6;35807:15;35800:33;35615:225;:::o;35846:366::-;35988:3;36009:67;36073:2;36068:3;36009:67;:::i;:::-;36002:74;;36085:93;36174:3;36085:93;:::i;:::-;36203:2;36198:3;36194:12;36187:19;;35846:366;;;:::o;36218:419::-;36384:4;36422:2;36411:9;36407:18;36399:26;;36471:9;36465:4;36461:20;36457:1;36446:9;36442:17;36435:47;36499:131;36625:4;36499:131;:::i;:::-;36491:139;;36218:419;;;:::o;36643:147::-;36744:11;36781:3;36766:18;;36643:147;;;;:::o;36796:114::-;;:::o;36916:398::-;37075:3;37096:83;37177:1;37172:3;37096:83;:::i;:::-;37089:90;;37188:93;37277:3;37188:93;:::i;:::-;37306:1;37301:3;37297:11;37290:18;;36916:398;;;:::o;37320:379::-;37504:3;37526:147;37669:3;37526:147;:::i;:::-;37519:154;;37690:3;37683:10;;37320:379;;;:::o;37705:442::-;37854:4;37892:2;37881:9;37877:18;37869:26;;37905:71;37973:1;37962:9;37958:17;37949:6;37905:71;:::i;:::-;37986:72;38054:2;38043:9;38039:18;38030:6;37986:72;:::i;:::-;38068;38136:2;38125:9;38121:18;38112:6;38068:72;:::i;:::-;37705:442;;;;;;:::o;38153:180::-;38201:77;38198:1;38191:88;38298:4;38295:1;38288:15;38322:4;38319:1;38312:15;38339:180;38387:77;38384:1;38377:88;38484:4;38481:1;38474:15;38508:4;38505:1;38498:15;38525:143;38582:5;38613:6;38607:13;38598:22;;38629:33;38656:5;38629:33;:::i;:::-;38525:143;;;;:::o;38674:351::-;38744:6;38793:2;38781:9;38772:7;38768:23;38764:32;38761:119;;;38799:79;;:::i;:::-;38761:119;38919:1;38944:64;39000:7;38991:6;38980:9;38976:22;38944:64;:::i;:::-;38934:74;;38890:128;38674:351;;;;:::o;39031:85::-;39076:7;39105:5;39094:16;;39031:85;;;:::o;39122:158::-;39180:9;39213:61;39231:42;39240:32;39266:5;39240:32;:::i;:::-;39231:42;:::i;:::-;39213:61;:::i;:::-;39200:74;;39122:158;;;:::o;39286:147::-;39381:45;39420:5;39381:45;:::i;:::-;39376:3;39369:58;39286:147;;:::o;39439:114::-;39506:6;39540:5;39534:12;39524:22;;39439:114;;;:::o;39559:184::-;39658:11;39692:6;39687:3;39680:19;39732:4;39727:3;39723:14;39708:29;;39559:184;;;;:::o;39749:132::-;39816:4;39839:3;39831:11;;39869:4;39864:3;39860:14;39852:22;;39749:132;;;:::o;39887:108::-;39964:24;39982:5;39964:24;:::i;:::-;39959:3;39952:37;39887:108;;:::o;40001:179::-;40070:10;40091:46;40133:3;40125:6;40091:46;:::i;:::-;40169:4;40164:3;40160:14;40146:28;;40001:179;;;;:::o;40186:113::-;40256:4;40288;40283:3;40279:14;40271:22;;40186:113;;;:::o;40335:732::-;40454:3;40483:54;40531:5;40483:54;:::i;:::-;40553:86;40632:6;40627:3;40553:86;:::i;:::-;40546:93;;40663:56;40713:5;40663:56;:::i;:::-;40742:7;40773:1;40758:284;40783:6;40780:1;40777:13;40758:284;;;40859:6;40853:13;40886:63;40945:3;40930:13;40886:63;:::i;:::-;40879:70;;40972:60;41025:6;40972:60;:::i;:::-;40962:70;;40818:224;40805:1;40802;40798:9;40793:14;;40758:284;;;40762:14;41058:3;41051:10;;40459:608;;;40335:732;;;;:::o;41073:831::-;41336:4;41374:3;41363:9;41359:19;41351:27;;41388:71;41456:1;41445:9;41441:17;41432:6;41388:71;:::i;:::-;41469:80;41545:2;41534:9;41530:18;41521:6;41469:80;:::i;:::-;41596:9;41590:4;41586:20;41581:2;41570:9;41566:18;41559:48;41624:108;41727:4;41718:6;41624:108;:::i;:::-;41616:116;;41742:72;41810:2;41799:9;41795:18;41786:6;41742:72;:::i;:::-;41824:73;41892:3;41881:9;41877:19;41868:6;41824:73;:::i;:::-;41073:831;;;;;;;;:::o;41910:807::-;42159:4;42197:3;42186:9;42182:19;42174:27;;42211:71;42279:1;42268:9;42264:17;42255:6;42211:71;:::i;:::-;42292:72;42360:2;42349:9;42345:18;42336:6;42292:72;:::i;:::-;42374:80;42450:2;42439:9;42435:18;42426:6;42374:80;:::i;:::-;42464;42540:2;42529:9;42525:18;42516:6;42464:80;:::i;:::-;42554:73;42622:3;42611:9;42607:19;42598:6;42554:73;:::i;:::-;42637;42705:3;42694:9;42690:19;42681:6;42637:73;:::i;:::-;41910:807;;;;;;;;;:::o;42723:663::-;42811:6;42819;42827;42876:2;42864:9;42855:7;42851:23;42847:32;42844:119;;;42882:79;;:::i;:::-;42844:119;43002:1;43027:64;43083:7;43074:6;43063:9;43059:22;43027:64;:::i;:::-;43017:74;;42973:128;43140:2;43166:64;43222:7;43213:6;43202:9;43198:22;43166:64;:::i;:::-;43156:74;;43111:129;43279:2;43305:64;43361:7;43352:6;43341:9;43337:22;43305:64;:::i;:::-;43295:74;;43250:129;42723:663;;;;;:::o

Swarm Source

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