ETH Price: $2,342.36 (+2.04%)

Token

Open Doge (ODOGE)
 

Overview

Max Total Supply

100,000,000 ODOGE

Holders

39

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
344,519.317020773312877716 ODOGE

Value
$0.00
0xc8d9a4769cd79c2ebff8e2080645d9517a389a42
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
OpenDoge

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-06
*/

// File: OpenDoge.sol


/* 

    Open Doge is a unique project that leverages the power of decentralized technology and artificial intelligence to create innovative solutions for the cryptocurrency industry, most specifically for the degen space.

    Learn More: 

    Website - https://www.OpenDoge.net

    Medium - https://medium.com/@OpenDoge/
    
    TG - https://t.me/OpenDogeERC



*/

pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
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;
}

////// src/
/* 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 OpenDoge 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 = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

    uint256 public 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("Open Doge", "ODOGE") {
        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 = 2;
        uint256 _buyDevFee = 1;

        uint256 _sellMarketingFee = 35;
        uint256 _sellLiquidityFee = 2;
        uint256 _sellDevFee = 1;

        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount = 2_000_000 * 1e18; // 100% from total supply maxTransactionAmountTxn
        maxWallet = 3_000_000 * 1e18; // 200% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

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

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

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

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

        excludeFromMaxTransaction(owner(), 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(msg.sender, totalSupply);
    }

    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 {
      
        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 <= 25, "Must keep fees at 25% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% 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"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600981526020017f4f70656e20446f676500000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4f444f474500000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b19565b5080600490805190602001906200014792919062000b19565b5050506200016a6200015e620005d960201b60201c565b620005e160201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620006a760201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c33565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c33565b6040518363ffffffff1660e01b8152600401620002e992919062000c76565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c33565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a0516001620006a760201b60201c565b6200038c60a05160016200079160201b60201c565b6000806002905060006001905060006023905060006002905060006001905060006a52b7d2dcc80cd2e400000090506a01a784379d99db420000006008819055506a027b46536c66c8e3000000600a81905550612710600582620003f1919062000cdc565b620003fd919062000d6c565b6009819055508660158190555085601681905550846017819055506017546016546015546200042d919062000da4565b62000439919062000da4565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000469919062000da4565b62000475919062000da4565b6018819055507345c8183796822d8f53b40855d52ae114f2b7c7a3600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507345c8183796822d8f53b40855d52ae114f2b7c7a3600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000547620005396200083260201b60201c565b60016200085c60201b60201c565b6200055a3060016200085c60201b60201c565b6200056f61dead60016200085c60201b60201c565b62000591620005836200083260201b60201c565b6001620006a760201b60201c565b620005a4306001620006a760201b60201c565b620005b961dead6001620006a760201b60201c565b620005cb33826200099660201b60201c565b505050505050505062000fc3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006b7620005d960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006dd6200083260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000736576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200072d9062000e62565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200086c620005d960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008926200083260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008e29062000e62565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200098a919062000ea1565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a009062000f0e565b60405180910390fd5b62000a1d6000838362000b0f60201b60201c565b806002600082825462000a31919062000da4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a88919062000da4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000aef919062000f41565b60405180910390a362000b0b6000838362000b1460201b60201c565b5050565b505050565b505050565b82805462000b279062000f8d565b90600052602060002090601f01602090048101928262000b4b576000855562000b97565b82601f1062000b6657805160ff191683800117855562000b97565b8280016001018555821562000b97579182015b8281111562000b9657825182559160200191906001019062000b79565b5b50905062000ba6919062000baa565b5090565b5b8082111562000bc557600081600090555060010162000bab565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bfb8262000bce565b9050919050565b62000c0d8162000bee565b811462000c1957600080fd5b50565b60008151905062000c2d8162000c02565b92915050565b60006020828403121562000c4c5762000c4b62000bc9565b5b600062000c5c8482850162000c1c565b91505092915050565b62000c708162000bee565b82525050565b600060408201905062000c8d600083018562000c65565b62000c9c602083018462000c65565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ce98262000ca3565b915062000cf68362000ca3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d325762000d3162000cad565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d798262000ca3565b915062000d868362000ca3565b92508262000d995762000d9862000d3d565b5b828204905092915050565b600062000db18262000ca3565b915062000dbe8362000ca3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000df65762000df562000cad565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e4a60208362000e01565b915062000e578262000e12565b602082019050919050565b6000602082019050818103600083015262000e7d8162000e3b565b9050919050565b60008115159050919050565b62000e9b8162000e84565b82525050565b600060208201905062000eb8600083018462000e90565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ef6601f8362000e01565b915062000f038262000ebe565b602082019050919050565b6000602082019050818103600083015262000f298162000ee7565b9050919050565b62000f3b8162000ca3565b82525050565b600060208201905062000f58600083018462000f30565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fa657607f821691505b6020821081141562000fbd5762000fbc62000f5e565b5b50919050565b60805160a051615ac46200104b6000396000818161137701528181611b87015281816126d101528181612788015281816127b501528181612df901528181613efd01528181613fb60152613fe3015260008181610f9001528181612da1015281816141590152818161423a01528181614261015281816142fd01526143240152615ac46000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df919061446c565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190614527565b610f51565b60405161041c9190614582565b60405180910390f35b34801561043157600080fd5b5061044c6004803603810190610447919061459d565b610f6f565b6040516104599190614582565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b6040516104849190614629565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af9190614653565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da919061459d565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b6040516105039190614653565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e9190614653565b60405180910390f35b34801561054357600080fd5b5061054c611104565b6040516105599190614653565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b6040516105849190614653565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af919061466e565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d8919061469b565b6111a9565b6040516105ea9190614582565b60405180910390f35b3480156105ff57600080fd5b506106086112a1565b60405161061591906146fd565b60405180910390f35b34801561062a57600080fd5b506106336112a7565b6040516106409190614653565b60405180910390f35b34801561065557600080fd5b5061065e6112ad565b60405161066b9190614582565b60405180910390f35b34801561068057600080fd5b506106896112c0565b6040516106969190614734565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190614527565b6112c9565b6040516106d39190614582565b60405180910390f35b3480156106e857600080fd5b506106f1611375565b6040516106fe91906146fd565b60405180910390f35b34801561071357600080fd5b5061071c611399565b6040516107299190614582565b60405180910390f35b34801561073e57600080fd5b506107596004803603810190610754919061459d565b6113ac565b6040516107669190614582565b60405180910390f35b34801561077b57600080fd5b50610784611402565b6040516107919190614653565b60405180910390f35b3480156107a657600080fd5b506107af611408565b6040516107bc9190614582565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e7919061459d565b61141b565b6040516107f99190614653565b60405180910390f35b34801561080e57600080fd5b50610817611463565b005b34801561082557600080fd5b50610840600480360381019061083b919061477b565b6114eb565b005b34801561084e57600080fd5b5061085761162b565b6040516108649190614582565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f91906147ce565b6116cb565b005b3480156108a257600080fd5b506108ab6117a2565b6040516108b891906146fd565b60405180910390f35b3480156108cd57600080fd5b506108d66117c8565b6040516108e39190614653565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e919061480e565b6117ce565b005b34801561092157600080fd5b5061092a6118cd565b005b34801561093857600080fd5b50610941611988565b60405161094e91906146fd565b60405180910390f35b34801561096357600080fd5b5061096c6119b2565b60405161097991906146fd565b60405180910390f35b34801561098e57600080fd5b506109976119d8565b6040516109a49190614653565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190614861565b6119de565b005b3480156109e257600080fd5b506109eb611a77565b6040516109f8919061446c565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a2391906147ce565b611b09565b005b348015610a3657600080fd5b50610a3f611c22565b604051610a4c9190614653565b60405180910390f35b348015610a6157600080fd5b50610a6a611c28565b604051610a779190614653565b60405180910390f35b348015610a8c57600080fd5b50610a95611c2e565b604051610aa29190614653565b60405180910390f35b348015610ab757600080fd5b50610ac0611c34565b604051610acd9190614653565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af89190614527565b611c3a565b604051610b0a9190614582565b60405180910390f35b348015610b1f57600080fd5b50610b28611d25565b604051610b359190614653565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190614527565b611d2b565b604051610b729190614582565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d919061459d565b611d49565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc6919061459d565b611e85565b604051610bd89190614582565b60405180910390f35b348015610bed57600080fd5b50610bf6611ea5565b604051610c039190614582565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e91906147ce565b611eb8565b005b348015610c4157600080fd5b50610c5c6004803603810190610c57919061480e565b611fdd565b005b348015610c6a57600080fd5b50610c856004803603810190610c80919061466e565b6120dc565b005b348015610c9357600080fd5b50610c9c6121eb565b604051610ca99190614582565b60405180910390f35b348015610cbe57600080fd5b50610cc76121fe565b604051610cd49190614653565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff919061466e565b612204565b604051610d119190614582565b60405180910390f35b348015610d2657600080fd5b50610d2f612359565b604051610d3c9190614653565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d67919061488e565b61235f565b604051610d799190614653565b60405180910390f35b348015610d8e57600080fd5b50610d976123e6565b604051610da49190614653565b60405180910390f35b348015610db957600080fd5b50610dc26123ec565b604051610dcf9190614582565b60405180910390f35b348015610de457600080fd5b50610ded61248c565b604051610dfa9190614653565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e25919061459d565b612492565b005b348015610e3857600080fd5b50610e4161258a565b604051610e4e9190614653565b60405180910390f35b348015610e6357600080fd5b50610e6c612590565b604051610e799190614653565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea4919061466e565b612596565b604051610eb69190614582565b60405180910390f35b606060038054610ece906148fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa906148fd565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e61286e565b8484612876565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc461286e565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611988565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f9061497b565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61111861286e565b73ffffffffffffffffffffffffffffffffffffffff16611136611988565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061497b565b60405180910390fd5b670de0b6b3a7640000816111a091906149ca565b60088190555050565b60006111b6848484612a41565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061120161286e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890614a96565b60405180910390fd5b6112958561128d61286e565b858403612876565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061136b6112d661286e565b8484600160006112e461286e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113669190614ab6565b612876565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61146b61286e565b73ffffffffffffffffffffffffffffffffffffffff16611489611988565b73ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d69061497b565b60405180910390fd5b6114e960006137d9565b565b6114f361286e565b73ffffffffffffffffffffffffffffffffffffffff16611511611988565b73ffffffffffffffffffffffffffffffffffffffff1614611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e9061497b565b60405180910390fd5b6102588310156115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390614b7e565b60405180910390fd5b6103e882111580156115bf575060008210155b6115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590614c10565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061163561286e565b73ffffffffffffffffffffffffffffffffffffffff16611653611988565b73ffffffffffffffffffffffffffffffffffffffff16146116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a09061497b565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6116d361286e565b73ffffffffffffffffffffffffffffffffffffffff166116f1611988565b73ffffffffffffffffffffffffffffffffffffffff1614611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e9061497b565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6117d661286e565b73ffffffffffffffffffffffffffffffffffffffff166117f4611988565b73ffffffffffffffffffffffffffffffffffffffff161461184a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118419061497b565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118729190614ab6565b61187c9190614ab6565b601481905550601960145411156118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf90614c7c565b60405180910390fd5b505050565b6118d561286e565b73ffffffffffffffffffffffffffffffffffffffff166118f3611988565b73ffffffffffffffffffffffffffffffffffffffff1614611949576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119409061497b565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6119e661286e565b73ffffffffffffffffffffffffffffffffffffffff16611a04611988565b73ffffffffffffffffffffffffffffffffffffffff1614611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a519061497b565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a86906148fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab2906148fd565b8015611aff5780601f10611ad457610100808354040283529160200191611aff565b820191906000526020600020905b815481529060010190602001808311611ae257829003601f168201915b5050505050905090565b611b1161286e565b73ffffffffffffffffffffffffffffffffffffffff16611b2f611988565b73ffffffffffffffffffffffffffffffffffffffff1614611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c9061497b565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b90614d0e565b60405180910390fd5b611c1e828261389f565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611c4961286e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd90614da0565b60405180910390fd5b611d1a611d1161286e565b85858403612876565b600191505092915050565b600e5481565b6000611d3f611d3861286e565b8484612a41565b6001905092915050565b611d5161286e565b73ffffffffffffffffffffffffffffffffffffffff16611d6f611988565b73ffffffffffffffffffffffffffffffffffffffff1614611dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbc9061497b565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ec061286e565b73ffffffffffffffffffffffffffffffffffffffff16611ede611988565b73ffffffffffffffffffffffffffffffffffffffff1614611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b9061497b565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fd19190614582565b60405180910390a25050565b611fe561286e565b73ffffffffffffffffffffffffffffffffffffffff16612003611988565b73ffffffffffffffffffffffffffffffffffffffff1614612059576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120509061497b565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120819190614ab6565b61208b9190614ab6565b601881905550601960185411156120d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ce90614c7c565b60405180910390fd5b505050565b6120e461286e565b73ffffffffffffffffffffffffffffffffffffffff16612102611988565b73ffffffffffffffffffffffffffffffffffffffff1614612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f9061497b565b60405180910390fd5b670de0b6b3a76400006103e8600561216e610fb2565b61217891906149ca565b6121829190614def565b61218c9190614def565b8110156121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c590614e92565b60405180910390fd5b670de0b6b3a7640000816121e291906149ca565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061220e61286e565b73ffffffffffffffffffffffffffffffffffffffff1661222c611988565b73ffffffffffffffffffffffffffffffffffffffff1614612282576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122799061497b565b60405180910390fd5b620186a06001612290610fb2565b61229a91906149ca565b6122a49190614def565b8210156122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90614f24565b60405180910390fd5b6103e860056122f3610fb2565b6122fd91906149ca565b6123079190614def565b821115612349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234090614fb6565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006123f661286e565b73ffffffffffffffffffffffffffffffffffffffff16612414611988565b73ffffffffffffffffffffffffffffffffffffffff161461246a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124619061497b565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61249a61286e565b73ffffffffffffffffffffffffffffffffffffffff166124b8611988565b73ffffffffffffffffffffffffffffffffffffffff161461250e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125059061497b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561257e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257590615048565b60405180910390fd5b612587816137d9565b50565b601a5481565b600a5481565b60006125a061286e565b73ffffffffffffffffffffffffffffffffffffffff166125be611988565b73ffffffffffffffffffffffffffffffffffffffff1614612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260b9061497b565b60405180910390fd5b600f546010546126249190614ab6565b4211612665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265c906150b4565b60405180910390fd5b6103e88211156126aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a190615146565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161270c91906146fd565b602060405180830381865afa158015612729573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061274d919061517b565b9050600061277861271061276a868561394090919063ffffffff16565b61395690919063ffffffff16565b905060008111156127b1576127b07f000000000000000000000000000000000000000000000000000000000000000061dead8361396c565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561281e57600080fd5b505af1158015612832573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128dd9061521a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294d906152ac565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a349190614653565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa89061533e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b18906153d0565b60405180910390fd5b6000811415612b3b57612b368383600061396c565b6137d4565b601160009054906101000a900460ff16156131fe57612b58611988565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612bc65750612b96611988565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bff5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c39575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c525750600560149054906101000a900460ff16155b156131fd57601160019054906101000a900460ff16612d4c57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d0c5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d429061543c565b60405180910390fd5b5b601360009054906101000a900460ff1615612f1457612d69611988565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612df057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e4857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f135743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec5906154f4565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fb75750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561305e57600854811115613001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff890615586565b60405180910390fd5b600a5461300d8361141b565b826130189190614ab6565b1115613059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613050906155f2565b60405180910390fd5b6131fc565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131015750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131505760085481111561314b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314290615684565b60405180910390fd5b6131fb565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166131fa57600a546131ad8361141b565b826131b89190614ab6565b11156131f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f0906155f2565b60405180910390fd5b5b5b5b5b5b60006132093061141b565b90506000600954821015905080801561322e5750601160029054906101000a900460ff165b80156132475750600560149054906101000a900460ff16155b801561329d5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132f35750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133495750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561338d576001600560146101000a81548160ff021916908315150217905550613371613bed565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156133f35750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561340b5750600c60009054906101000a900460ff165b80156134265750600d54600e546134229190614ab6565b4210155b801561347c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561348b57613489613ed4565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135415750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561354b57600090505b600081156137c457602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135ae57506000601854115b1561367b576135db60646135cd6018548861394090919063ffffffff16565b61395690919063ffffffff16565b9050601854601a54826135ee91906149ca565b6135f89190614def565b601d60008282546136099190614ab6565b92505081905550601854601b548261362191906149ca565b61362b9190614def565b601e600082825461363c9190614ab6565b925050819055506018546019548261365491906149ca565b61365e9190614def565b601c600082825461366f9190614ab6565b925050819055506137a0565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136d657506000601454115b1561379f5761370360646136f56014548861394090919063ffffffff16565b61395690919063ffffffff16565b90506014546016548261371691906149ca565b6137209190614def565b601d60008282546137319190614ab6565b925050819055506014546017548261374991906149ca565b6137539190614def565b601e60008282546137649190614ab6565b925050819055506014546015548261377c91906149ca565b6137869190614def565b601c60008282546137979190614ab6565b925050819055505b5b60008111156137b5576137b487308361396c565b5b80856137c191906156a4565b94505b6137cf87878761396c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361394e91906149ca565b905092915050565b600081836139649190614def565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d39061533e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a43906153d0565b60405180910390fd5b613a5783838361409a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ad49061574a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b709190614ab6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613bd49190614653565b60405180910390a3613be784848461409f565b50505050565b6000613bf83061141b565b90506000601e54601c54601d54613c0f9190614ab6565b613c199190614ab6565b9050600080831480613c2b5750600082145b15613c3857505050613ed2565b6014600954613c4791906149ca565b831115613c60576014600954613c5d91906149ca565b92505b6000600283601d5486613c7391906149ca565b613c7d9190614def565b613c879190614def565b90506000613c9e82866140a490919063ffffffff16565b90506000479050613cae826140ba565b6000613cc382476140a490919063ffffffff16565b90506000613cee87613ce0601c548561394090919063ffffffff16565b61395690919063ffffffff16565b90506000613d1988613d0b601e548661394090919063ffffffff16565b61395690919063ffffffff16565b90506000818385613d2a91906156a4565b613d3491906156a4565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d949061579b565b60006040518083038185875af1925050503d8060008114613dd1576040519150601f19603f3d011682016040523d82523d6000602084013e613dd6565b606091505b505080985050600087118015613dec5750600081115b15613e3957613dfb87826142f7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613e30939291906157b0565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e7f9061579b565b60006040518083038185875af1925050503d8060008114613ebc576040519150601f19603f3d011682016040523d82523d6000602084013e613ec1565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613f3891906146fd565b602060405180830381865afa158015613f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f79919061517b565b90506000613fa6612710613f98600b548561394090919063ffffffff16565b61395690919063ffffffff16565b90506000811115613fdf57613fde7f000000000000000000000000000000000000000000000000000000000000000061dead8361396c565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561404c57600080fd5b505af1158015614060573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836140b291906156a4565b905092915050565b6000600267ffffffffffffffff8111156140d7576140d66157e7565b5b6040519080825280602002602001820160405280156141055781602001602082028036833780820191505090505b509050308160008151811061411d5761411c615816565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156141c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141e6919061585a565b816001815181106141fa576141f9615816565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061425f307f000000000000000000000000000000000000000000000000000000000000000084612876565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016142c1959493929190615980565b600060405180830381600087803b1580156142db57600080fd5b505af11580156142ef573d6000803e3d6000fd5b505050505050565b614322307f000000000000000000000000000000000000000000000000000000000000000084612876565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401614389969594939291906159da565b60606040518083038185885af11580156143a7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143cc9190615a3b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561440d5780820151818401526020810190506143f2565b8381111561441c576000848401525b50505050565b6000601f19601f8301169050919050565b600061443e826143d3565b61444881856143de565b93506144588185602086016143ef565b61446181614422565b840191505092915050565b600060208201905081810360008301526144868184614433565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144be82614493565b9050919050565b6144ce816144b3565b81146144d957600080fd5b50565b6000813590506144eb816144c5565b92915050565b6000819050919050565b614504816144f1565b811461450f57600080fd5b50565b600081359050614521816144fb565b92915050565b6000806040838503121561453e5761453d61448e565b5b600061454c858286016144dc565b925050602061455d85828601614512565b9150509250929050565b60008115159050919050565b61457c81614567565b82525050565b60006020820190506145976000830184614573565b92915050565b6000602082840312156145b3576145b261448e565b5b60006145c1848285016144dc565b91505092915050565b6000819050919050565b60006145ef6145ea6145e584614493565b6145ca565b614493565b9050919050565b6000614601826145d4565b9050919050565b6000614613826145f6565b9050919050565b61462381614608565b82525050565b600060208201905061463e600083018461461a565b92915050565b61464d816144f1565b82525050565b60006020820190506146686000830184614644565b92915050565b6000602082840312156146845761468361448e565b5b600061469284828501614512565b91505092915050565b6000806000606084860312156146b4576146b361448e565b5b60006146c2868287016144dc565b93505060206146d3868287016144dc565b92505060406146e486828701614512565b9150509250925092565b6146f7816144b3565b82525050565b600060208201905061471260008301846146ee565b92915050565b600060ff82169050919050565b61472e81614718565b82525050565b60006020820190506147496000830184614725565b92915050565b61475881614567565b811461476357600080fd5b50565b6000813590506147758161474f565b92915050565b6000806000606084860312156147945761479361448e565b5b60006147a286828701614512565b93505060206147b386828701614512565b92505060406147c486828701614766565b9150509250925092565b600080604083850312156147e5576147e461448e565b5b60006147f3858286016144dc565b925050602061480485828601614766565b9150509250929050565b6000806000606084860312156148275761482661448e565b5b600061483586828701614512565b935050602061484686828701614512565b925050604061485786828701614512565b9150509250925092565b6000602082840312156148775761487661448e565b5b600061488584828501614766565b91505092915050565b600080604083850312156148a5576148a461448e565b5b60006148b3858286016144dc565b92505060206148c4858286016144dc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061491557607f821691505b60208210811415614929576149286148ce565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149656020836143de565b91506149708261492f565b602082019050919050565b6000602082019050818103600083015261499481614958565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149d5826144f1565b91506149e0836144f1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a1957614a1861499b565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614a806028836143de565b9150614a8b82614a24565b604082019050919050565b60006020820190508181036000830152614aaf81614a73565b9050919050565b6000614ac1826144f1565b9150614acc836144f1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b0157614b0061499b565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614b686033836143de565b9150614b7382614b0c565b604082019050919050565b60006020820190508181036000830152614b9781614b5b565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614bfa6030836143de565b9150614c0582614b9e565b604082019050919050565b60006020820190508181036000830152614c2981614bed565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614c66601d836143de565b9150614c7182614c30565b602082019050919050565b60006020820190508181036000830152614c9581614c59565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614cf86039836143de565b9150614d0382614c9c565b604082019050919050565b60006020820190508181036000830152614d2781614ceb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614d8a6025836143de565b9150614d9582614d2e565b604082019050919050565b60006020820190508181036000830152614db981614d7d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614dfa826144f1565b9150614e05836144f1565b925082614e1557614e14614dc0565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614e7c6024836143de565b9150614e8782614e20565b604082019050919050565b60006020820190508181036000830152614eab81614e6f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614f0e6035836143de565b9150614f1982614eb2565b604082019050919050565b60006020820190508181036000830152614f3d81614f01565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614fa06034836143de565b9150614fab82614f44565b604082019050919050565b60006020820190508181036000830152614fcf81614f93565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150326026836143de565b915061503d82614fd6565b604082019050919050565b6000602082019050818103600083015261506181615025565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061509e6020836143de565b91506150a982615068565b602082019050919050565b600060208201905081810360008301526150cd81615091565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615130602a836143de565b915061513b826150d4565b604082019050919050565b6000602082019050818103600083015261515f81615123565b9050919050565b600081519050615175816144fb565b92915050565b6000602082840312156151915761519061448e565b5b600061519f84828501615166565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152046024836143de565b915061520f826151a8565b604082019050919050565b60006020820190508181036000830152615233816151f7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006152966022836143de565b91506152a18261523a565b604082019050919050565b600060208201905081810360008301526152c581615289565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006153286025836143de565b9150615333826152cc565b604082019050919050565b600060208201905081810360008301526153578161531b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006153ba6023836143de565b91506153c58261535e565b604082019050919050565b600060208201905081810360008301526153e9816153ad565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006154266016836143de565b9150615431826153f0565b602082019050919050565b6000602082019050818103600083015261545581615419565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006154de6049836143de565b91506154e98261545c565b606082019050919050565b6000602082019050818103600083015261550d816154d1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006155706035836143de565b915061557b82615514565b604082019050919050565b6000602082019050818103600083015261559f81615563565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006155dc6013836143de565b91506155e7826155a6565b602082019050919050565b6000602082019050818103600083015261560b816155cf565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061566e6036836143de565b915061567982615612565b604082019050919050565b6000602082019050818103600083015261569d81615661565b9050919050565b60006156af826144f1565b91506156ba836144f1565b9250828210156156cd576156cc61499b565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006157346026836143de565b915061573f826156d8565b604082019050919050565b6000602082019050818103600083015261576381615727565b9050919050565b600081905092915050565b50565b600061578560008361576a565b915061579082615775565b600082019050919050565b60006157a682615778565b9150819050919050565b60006060820190506157c56000830186614644565b6157d26020830185614644565b6157df6040830184614644565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615854816144c5565b92915050565b6000602082840312156158705761586f61448e565b5b600061587e84828501615845565b91505092915050565b6000819050919050565b60006158ac6158a76158a284615887565b6145ca565b6144f1565b9050919050565b6158bc81615891565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6158f7816144b3565b82525050565b600061590983836158ee565b60208301905092915050565b6000602082019050919050565b600061592d826158c2565b61593781856158cd565b9350615942836158de565b8060005b8381101561597357815161595a88826158fd565b975061596583615915565b925050600181019050615946565b5085935050505092915050565b600060a0820190506159956000830188614644565b6159a260208301876158b3565b81810360408301526159b48186615922565b90506159c360608301856146ee565b6159d06080830184614644565b9695505050505050565b600060c0820190506159ef60008301896146ee565b6159fc6020830188614644565b615a0960408301876158b3565b615a1660608301866158b3565b615a2360808301856146ee565b615a3060a0830184614644565b979650505050505050565b600080600060608486031215615a5457615a5361448e565b5b6000615a6286828701615166565b9350506020615a7386828701615166565b9250506040615a8486828701615166565b915050925092509256fea26469706673582212204ec6138bac0a2f12851f520ab9ab15c0051fd873a4d537f83336344b41d91ccd64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df919061446c565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190614527565b610f51565b60405161041c9190614582565b60405180910390f35b34801561043157600080fd5b5061044c6004803603810190610447919061459d565b610f6f565b6040516104599190614582565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b6040516104849190614629565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af9190614653565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da919061459d565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b6040516105039190614653565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e9190614653565b60405180910390f35b34801561054357600080fd5b5061054c611104565b6040516105599190614653565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b6040516105849190614653565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af919061466e565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d8919061469b565b6111a9565b6040516105ea9190614582565b60405180910390f35b3480156105ff57600080fd5b506106086112a1565b60405161061591906146fd565b60405180910390f35b34801561062a57600080fd5b506106336112a7565b6040516106409190614653565b60405180910390f35b34801561065557600080fd5b5061065e6112ad565b60405161066b9190614582565b60405180910390f35b34801561068057600080fd5b506106896112c0565b6040516106969190614734565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190614527565b6112c9565b6040516106d39190614582565b60405180910390f35b3480156106e857600080fd5b506106f1611375565b6040516106fe91906146fd565b60405180910390f35b34801561071357600080fd5b5061071c611399565b6040516107299190614582565b60405180910390f35b34801561073e57600080fd5b506107596004803603810190610754919061459d565b6113ac565b6040516107669190614582565b60405180910390f35b34801561077b57600080fd5b50610784611402565b6040516107919190614653565b60405180910390f35b3480156107a657600080fd5b506107af611408565b6040516107bc9190614582565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e7919061459d565b61141b565b6040516107f99190614653565b60405180910390f35b34801561080e57600080fd5b50610817611463565b005b34801561082557600080fd5b50610840600480360381019061083b919061477b565b6114eb565b005b34801561084e57600080fd5b5061085761162b565b6040516108649190614582565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f91906147ce565b6116cb565b005b3480156108a257600080fd5b506108ab6117a2565b6040516108b891906146fd565b60405180910390f35b3480156108cd57600080fd5b506108d66117c8565b6040516108e39190614653565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e919061480e565b6117ce565b005b34801561092157600080fd5b5061092a6118cd565b005b34801561093857600080fd5b50610941611988565b60405161094e91906146fd565b60405180910390f35b34801561096357600080fd5b5061096c6119b2565b60405161097991906146fd565b60405180910390f35b34801561098e57600080fd5b506109976119d8565b6040516109a49190614653565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190614861565b6119de565b005b3480156109e257600080fd5b506109eb611a77565b6040516109f8919061446c565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a2391906147ce565b611b09565b005b348015610a3657600080fd5b50610a3f611c22565b604051610a4c9190614653565b60405180910390f35b348015610a6157600080fd5b50610a6a611c28565b604051610a779190614653565b60405180910390f35b348015610a8c57600080fd5b50610a95611c2e565b604051610aa29190614653565b60405180910390f35b348015610ab757600080fd5b50610ac0611c34565b604051610acd9190614653565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af89190614527565b611c3a565b604051610b0a9190614582565b60405180910390f35b348015610b1f57600080fd5b50610b28611d25565b604051610b359190614653565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190614527565b611d2b565b604051610b729190614582565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d919061459d565b611d49565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc6919061459d565b611e85565b604051610bd89190614582565b60405180910390f35b348015610bed57600080fd5b50610bf6611ea5565b604051610c039190614582565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e91906147ce565b611eb8565b005b348015610c4157600080fd5b50610c5c6004803603810190610c57919061480e565b611fdd565b005b348015610c6a57600080fd5b50610c856004803603810190610c80919061466e565b6120dc565b005b348015610c9357600080fd5b50610c9c6121eb565b604051610ca99190614582565b60405180910390f35b348015610cbe57600080fd5b50610cc76121fe565b604051610cd49190614653565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff919061466e565b612204565b604051610d119190614582565b60405180910390f35b348015610d2657600080fd5b50610d2f612359565b604051610d3c9190614653565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d67919061488e565b61235f565b604051610d799190614653565b60405180910390f35b348015610d8e57600080fd5b50610d976123e6565b604051610da49190614653565b60405180910390f35b348015610db957600080fd5b50610dc26123ec565b604051610dcf9190614582565b60405180910390f35b348015610de457600080fd5b50610ded61248c565b604051610dfa9190614653565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e25919061459d565b612492565b005b348015610e3857600080fd5b50610e4161258a565b604051610e4e9190614653565b60405180910390f35b348015610e6357600080fd5b50610e6c612590565b604051610e799190614653565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea4919061466e565b612596565b604051610eb69190614582565b60405180910390f35b606060038054610ece906148fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa906148fd565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e61286e565b8484612876565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc461286e565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611988565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f9061497b565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61111861286e565b73ffffffffffffffffffffffffffffffffffffffff16611136611988565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061497b565b60405180910390fd5b670de0b6b3a7640000816111a091906149ca565b60088190555050565b60006111b6848484612a41565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061120161286e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890614a96565b60405180910390fd5b6112958561128d61286e565b858403612876565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061136b6112d661286e565b8484600160006112e461286e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113669190614ab6565b612876565b6001905092915050565b7f000000000000000000000000213ec29e0c1d57525839c38e6f16e0bf34b45b6481565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61146b61286e565b73ffffffffffffffffffffffffffffffffffffffff16611489611988565b73ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d69061497b565b60405180910390fd5b6114e960006137d9565b565b6114f361286e565b73ffffffffffffffffffffffffffffffffffffffff16611511611988565b73ffffffffffffffffffffffffffffffffffffffff1614611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e9061497b565b60405180910390fd5b6102588310156115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390614b7e565b60405180910390fd5b6103e882111580156115bf575060008210155b6115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590614c10565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061163561286e565b73ffffffffffffffffffffffffffffffffffffffff16611653611988565b73ffffffffffffffffffffffffffffffffffffffff16146116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a09061497b565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6116d361286e565b73ffffffffffffffffffffffffffffffffffffffff166116f1611988565b73ffffffffffffffffffffffffffffffffffffffff1614611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e9061497b565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6117d661286e565b73ffffffffffffffffffffffffffffffffffffffff166117f4611988565b73ffffffffffffffffffffffffffffffffffffffff161461184a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118419061497b565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118729190614ab6565b61187c9190614ab6565b601481905550601960145411156118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf90614c7c565b60405180910390fd5b505050565b6118d561286e565b73ffffffffffffffffffffffffffffffffffffffff166118f3611988565b73ffffffffffffffffffffffffffffffffffffffff1614611949576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119409061497b565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6119e661286e565b73ffffffffffffffffffffffffffffffffffffffff16611a04611988565b73ffffffffffffffffffffffffffffffffffffffff1614611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a519061497b565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a86906148fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab2906148fd565b8015611aff5780601f10611ad457610100808354040283529160200191611aff565b820191906000526020600020905b815481529060010190602001808311611ae257829003601f168201915b5050505050905090565b611b1161286e565b73ffffffffffffffffffffffffffffffffffffffff16611b2f611988565b73ffffffffffffffffffffffffffffffffffffffff1614611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c9061497b565b60405180910390fd5b7f000000000000000000000000213ec29e0c1d57525839c38e6f16e0bf34b45b6473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b90614d0e565b60405180910390fd5b611c1e828261389f565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611c4961286e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd90614da0565b60405180910390fd5b611d1a611d1161286e565b85858403612876565b600191505092915050565b600e5481565b6000611d3f611d3861286e565b8484612a41565b6001905092915050565b611d5161286e565b73ffffffffffffffffffffffffffffffffffffffff16611d6f611988565b73ffffffffffffffffffffffffffffffffffffffff1614611dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbc9061497b565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ec061286e565b73ffffffffffffffffffffffffffffffffffffffff16611ede611988565b73ffffffffffffffffffffffffffffffffffffffff1614611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b9061497b565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fd19190614582565b60405180910390a25050565b611fe561286e565b73ffffffffffffffffffffffffffffffffffffffff16612003611988565b73ffffffffffffffffffffffffffffffffffffffff1614612059576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120509061497b565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120819190614ab6565b61208b9190614ab6565b601881905550601960185411156120d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ce90614c7c565b60405180910390fd5b505050565b6120e461286e565b73ffffffffffffffffffffffffffffffffffffffff16612102611988565b73ffffffffffffffffffffffffffffffffffffffff1614612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f9061497b565b60405180910390fd5b670de0b6b3a76400006103e8600561216e610fb2565b61217891906149ca565b6121829190614def565b61218c9190614def565b8110156121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c590614e92565b60405180910390fd5b670de0b6b3a7640000816121e291906149ca565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061220e61286e565b73ffffffffffffffffffffffffffffffffffffffff1661222c611988565b73ffffffffffffffffffffffffffffffffffffffff1614612282576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122799061497b565b60405180910390fd5b620186a06001612290610fb2565b61229a91906149ca565b6122a49190614def565b8210156122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90614f24565b60405180910390fd5b6103e860056122f3610fb2565b6122fd91906149ca565b6123079190614def565b821115612349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234090614fb6565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006123f661286e565b73ffffffffffffffffffffffffffffffffffffffff16612414611988565b73ffffffffffffffffffffffffffffffffffffffff161461246a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124619061497b565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61249a61286e565b73ffffffffffffffffffffffffffffffffffffffff166124b8611988565b73ffffffffffffffffffffffffffffffffffffffff161461250e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125059061497b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561257e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257590615048565b60405180910390fd5b612587816137d9565b50565b601a5481565b600a5481565b60006125a061286e565b73ffffffffffffffffffffffffffffffffffffffff166125be611988565b73ffffffffffffffffffffffffffffffffffffffff1614612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260b9061497b565b60405180910390fd5b600f546010546126249190614ab6565b4211612665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265c906150b4565b60405180910390fd5b6103e88211156126aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a190615146565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000213ec29e0c1d57525839c38e6f16e0bf34b45b646040518263ffffffff1660e01b815260040161270c91906146fd565b602060405180830381865afa158015612729573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061274d919061517b565b9050600061277861271061276a868561394090919063ffffffff16565b61395690919063ffffffff16565b905060008111156127b1576127b07f000000000000000000000000213ec29e0c1d57525839c38e6f16e0bf34b45b6461dead8361396c565b5b60007f000000000000000000000000213ec29e0c1d57525839c38e6f16e0bf34b45b6490508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561281e57600080fd5b505af1158015612832573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128dd9061521a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294d906152ac565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a349190614653565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa89061533e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b18906153d0565b60405180910390fd5b6000811415612b3b57612b368383600061396c565b6137d4565b601160009054906101000a900460ff16156131fe57612b58611988565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612bc65750612b96611988565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bff5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c39575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c525750600560149054906101000a900460ff16155b156131fd57601160019054906101000a900460ff16612d4c57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d0c5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d429061543c565b60405180910390fd5b5b601360009054906101000a900460ff1615612f1457612d69611988565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612df057507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e4857507f000000000000000000000000213ec29e0c1d57525839c38e6f16e0bf34b45b6473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f135743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec5906154f4565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fb75750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561305e57600854811115613001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff890615586565b60405180910390fd5b600a5461300d8361141b565b826130189190614ab6565b1115613059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613050906155f2565b60405180910390fd5b6131fc565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131015750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131505760085481111561314b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314290615684565b60405180910390fd5b6131fb565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166131fa57600a546131ad8361141b565b826131b89190614ab6565b11156131f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f0906155f2565b60405180910390fd5b5b5b5b5b5b60006132093061141b565b90506000600954821015905080801561322e5750601160029054906101000a900460ff165b80156132475750600560149054906101000a900460ff16155b801561329d5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132f35750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133495750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561338d576001600560146101000a81548160ff021916908315150217905550613371613bed565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156133f35750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561340b5750600c60009054906101000a900460ff165b80156134265750600d54600e546134229190614ab6565b4210155b801561347c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561348b57613489613ed4565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135415750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561354b57600090505b600081156137c457602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135ae57506000601854115b1561367b576135db60646135cd6018548861394090919063ffffffff16565b61395690919063ffffffff16565b9050601854601a54826135ee91906149ca565b6135f89190614def565b601d60008282546136099190614ab6565b92505081905550601854601b548261362191906149ca565b61362b9190614def565b601e600082825461363c9190614ab6565b925050819055506018546019548261365491906149ca565b61365e9190614def565b601c600082825461366f9190614ab6565b925050819055506137a0565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136d657506000601454115b1561379f5761370360646136f56014548861394090919063ffffffff16565b61395690919063ffffffff16565b90506014546016548261371691906149ca565b6137209190614def565b601d60008282546137319190614ab6565b925050819055506014546017548261374991906149ca565b6137539190614def565b601e60008282546137649190614ab6565b925050819055506014546015548261377c91906149ca565b6137869190614def565b601c60008282546137979190614ab6565b925050819055505b5b60008111156137b5576137b487308361396c565b5b80856137c191906156a4565b94505b6137cf87878761396c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361394e91906149ca565b905092915050565b600081836139649190614def565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139d39061533e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a43906153d0565b60405180910390fd5b613a5783838361409a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ad49061574a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613b709190614ab6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613bd49190614653565b60405180910390a3613be784848461409f565b50505050565b6000613bf83061141b565b90506000601e54601c54601d54613c0f9190614ab6565b613c199190614ab6565b9050600080831480613c2b5750600082145b15613c3857505050613ed2565b6014600954613c4791906149ca565b831115613c60576014600954613c5d91906149ca565b92505b6000600283601d5486613c7391906149ca565b613c7d9190614def565b613c879190614def565b90506000613c9e82866140a490919063ffffffff16565b90506000479050613cae826140ba565b6000613cc382476140a490919063ffffffff16565b90506000613cee87613ce0601c548561394090919063ffffffff16565b61395690919063ffffffff16565b90506000613d1988613d0b601e548661394090919063ffffffff16565b61395690919063ffffffff16565b90506000818385613d2a91906156a4565b613d3491906156a4565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d949061579b565b60006040518083038185875af1925050503d8060008114613dd1576040519150601f19603f3d011682016040523d82523d6000602084013e613dd6565b606091505b505080985050600087118015613dec5750600081115b15613e3957613dfb87826142f7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613e30939291906157b0565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e7f9061579b565b60006040518083038185875af1925050503d8060008114613ebc576040519150601f19603f3d011682016040523d82523d6000602084013e613ec1565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000213ec29e0c1d57525839c38e6f16e0bf34b45b646040518263ffffffff1660e01b8152600401613f3891906146fd565b602060405180830381865afa158015613f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f79919061517b565b90506000613fa6612710613f98600b548561394090919063ffffffff16565b61395690919063ffffffff16565b90506000811115613fdf57613fde7f000000000000000000000000213ec29e0c1d57525839c38e6f16e0bf34b45b6461dead8361396c565b5b60007f000000000000000000000000213ec29e0c1d57525839c38e6f16e0bf34b45b6490508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561404c57600080fd5b505af1158015614060573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836140b291906156a4565b905092915050565b6000600267ffffffffffffffff8111156140d7576140d66157e7565b5b6040519080825280602002602001820160405280156141055781602001602082028036833780820191505090505b509050308160008151811061411d5761411c615816565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156141c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141e6919061585a565b816001815181106141fa576141f9615816565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061425f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612876565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016142c1959493929190615980565b600060405180830381600087803b1580156142db57600080fd5b505af11580156142ef573d6000803e3d6000fd5b505050505050565b614322307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612876565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401614389969594939291906159da565b60606040518083038185885af11580156143a7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143cc9190615a3b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561440d5780820151818401526020810190506143f2565b8381111561441c576000848401525b50505050565b6000601f19601f8301169050919050565b600061443e826143d3565b61444881856143de565b93506144588185602086016143ef565b61446181614422565b840191505092915050565b600060208201905081810360008301526144868184614433565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144be82614493565b9050919050565b6144ce816144b3565b81146144d957600080fd5b50565b6000813590506144eb816144c5565b92915050565b6000819050919050565b614504816144f1565b811461450f57600080fd5b50565b600081359050614521816144fb565b92915050565b6000806040838503121561453e5761453d61448e565b5b600061454c858286016144dc565b925050602061455d85828601614512565b9150509250929050565b60008115159050919050565b61457c81614567565b82525050565b60006020820190506145976000830184614573565b92915050565b6000602082840312156145b3576145b261448e565b5b60006145c1848285016144dc565b91505092915050565b6000819050919050565b60006145ef6145ea6145e584614493565b6145ca565b614493565b9050919050565b6000614601826145d4565b9050919050565b6000614613826145f6565b9050919050565b61462381614608565b82525050565b600060208201905061463e600083018461461a565b92915050565b61464d816144f1565b82525050565b60006020820190506146686000830184614644565b92915050565b6000602082840312156146845761468361448e565b5b600061469284828501614512565b91505092915050565b6000806000606084860312156146b4576146b361448e565b5b60006146c2868287016144dc565b93505060206146d3868287016144dc565b92505060406146e486828701614512565b9150509250925092565b6146f7816144b3565b82525050565b600060208201905061471260008301846146ee565b92915050565b600060ff82169050919050565b61472e81614718565b82525050565b60006020820190506147496000830184614725565b92915050565b61475881614567565b811461476357600080fd5b50565b6000813590506147758161474f565b92915050565b6000806000606084860312156147945761479361448e565b5b60006147a286828701614512565b93505060206147b386828701614512565b92505060406147c486828701614766565b9150509250925092565b600080604083850312156147e5576147e461448e565b5b60006147f3858286016144dc565b925050602061480485828601614766565b9150509250929050565b6000806000606084860312156148275761482661448e565b5b600061483586828701614512565b935050602061484686828701614512565b925050604061485786828701614512565b9150509250925092565b6000602082840312156148775761487661448e565b5b600061488584828501614766565b91505092915050565b600080604083850312156148a5576148a461448e565b5b60006148b3858286016144dc565b92505060206148c4858286016144dc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061491557607f821691505b60208210811415614929576149286148ce565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149656020836143de565b91506149708261492f565b602082019050919050565b6000602082019050818103600083015261499481614958565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149d5826144f1565b91506149e0836144f1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a1957614a1861499b565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614a806028836143de565b9150614a8b82614a24565b604082019050919050565b60006020820190508181036000830152614aaf81614a73565b9050919050565b6000614ac1826144f1565b9150614acc836144f1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b0157614b0061499b565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614b686033836143de565b9150614b7382614b0c565b604082019050919050565b60006020820190508181036000830152614b9781614b5b565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614bfa6030836143de565b9150614c0582614b9e565b604082019050919050565b60006020820190508181036000830152614c2981614bed565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614c66601d836143de565b9150614c7182614c30565b602082019050919050565b60006020820190508181036000830152614c9581614c59565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614cf86039836143de565b9150614d0382614c9c565b604082019050919050565b60006020820190508181036000830152614d2781614ceb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614d8a6025836143de565b9150614d9582614d2e565b604082019050919050565b60006020820190508181036000830152614db981614d7d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614dfa826144f1565b9150614e05836144f1565b925082614e1557614e14614dc0565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614e7c6024836143de565b9150614e8782614e20565b604082019050919050565b60006020820190508181036000830152614eab81614e6f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614f0e6035836143de565b9150614f1982614eb2565b604082019050919050565b60006020820190508181036000830152614f3d81614f01565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614fa06034836143de565b9150614fab82614f44565b604082019050919050565b60006020820190508181036000830152614fcf81614f93565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150326026836143de565b915061503d82614fd6565b604082019050919050565b6000602082019050818103600083015261506181615025565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061509e6020836143de565b91506150a982615068565b602082019050919050565b600060208201905081810360008301526150cd81615091565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615130602a836143de565b915061513b826150d4565b604082019050919050565b6000602082019050818103600083015261515f81615123565b9050919050565b600081519050615175816144fb565b92915050565b6000602082840312156151915761519061448e565b5b600061519f84828501615166565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152046024836143de565b915061520f826151a8565b604082019050919050565b60006020820190508181036000830152615233816151f7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006152966022836143de565b91506152a18261523a565b604082019050919050565b600060208201905081810360008301526152c581615289565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006153286025836143de565b9150615333826152cc565b604082019050919050565b600060208201905081810360008301526153578161531b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006153ba6023836143de565b91506153c58261535e565b604082019050919050565b600060208201905081810360008301526153e9816153ad565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006154266016836143de565b9150615431826153f0565b602082019050919050565b6000602082019050818103600083015261545581615419565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006154de6049836143de565b91506154e98261545c565b606082019050919050565b6000602082019050818103600083015261550d816154d1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006155706035836143de565b915061557b82615514565b604082019050919050565b6000602082019050818103600083015261559f81615563565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006155dc6013836143de565b91506155e7826155a6565b602082019050919050565b6000602082019050818103600083015261560b816155cf565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061566e6036836143de565b915061567982615612565b604082019050919050565b6000602082019050818103600083015261569d81615661565b9050919050565b60006156af826144f1565b91506156ba836144f1565b9250828210156156cd576156cc61499b565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006157346026836143de565b915061573f826156d8565b604082019050919050565b6000602082019050818103600083015261576381615727565b9050919050565b600081905092915050565b50565b600061578560008361576a565b915061579082615775565b600082019050919050565b60006157a682615778565b9150819050919050565b60006060820190506157c56000830186614644565b6157d26020830185614644565b6157df6040830184614644565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615854816144c5565b92915050565b6000602082840312156158705761586f61448e565b5b600061587e84828501615845565b91505092915050565b6000819050919050565b60006158ac6158a76158a284615887565b6145ca565b6144f1565b9050919050565b6158bc81615891565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6158f7816144b3565b82525050565b600061590983836158ee565b60208301905092915050565b6000602082019050919050565b600061592d826158c2565b61593781856158cd565b9350615942836158de565b8060005b8381101561597357815161595a88826158fd565b975061596583615915565b925050600181019050615946565b5085935050505092915050565b600060a0820190506159956000830188614644565b6159a260208301876158b3565b81810360408301526159b48186615922565b90506159c360608301856146ee565b6159d06080830184614644565b9695505050505050565b600060c0820190506159ef60008301896146ee565b6159fc6020830188614644565b615a0960408301876158b3565b615a1660608301866158b3565b615a2360808301856146ee565b615a3060a0830184614644565b979650505050505050565b600080600060608486031215615a5457615a5361448e565b5b6000615a6286828701615166565b9350506020615a7386828701615166565b9250506040615a8486828701615166565b915050925092509256fea26469706673582212204ec6138bac0a2f12851f520ab9ab15c0051fd873a4d537f83336344b41d91ccd64736f6c634300080a0033

Deployed Bytecode Sourcemap

33121:19301:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9936:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12103:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34750:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33199:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11056:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41750:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33764:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33579:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34534:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34494;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39209:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12754:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33302:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33674:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33635:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10898:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13655:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33257:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33862:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41915:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34349:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33942:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11227:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3171:103;;;;;;;;;;;;;:::i;:::-;;50004:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38317:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39611:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33394:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34242;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39982:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38110:155;;;;;;;;;;;;;:::i;:::-;;2520:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33431:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34384:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39874:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10155:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41003:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34316:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33818:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34574:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34460:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14373:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33726:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11567:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41511:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34971:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33902:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40813:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40393:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39347:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34160:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33464:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38704:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34208:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11805:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33506:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38499:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34279:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3429:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34422:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33546:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51363:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9936:100;9990:13;10023:5;10016:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9936:100;:::o;12103:169::-;12186:4;12203:39;12212:12;:10;:12::i;:::-;12226:7;12235:6;12203:8;:39::i;:::-;12260:4;12253:11;;12103:169;;;;:::o;34750:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;33199:51::-;;;:::o;11056:108::-;11117:7;11144:12;;11137:19;;11056:108;:::o;41750:157::-;2751:12;:10;:12::i;:::-;2740:23;;:7;:5;:7::i;:::-;:23;;;2732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41857:9:::1;;;;;;;;;;;41829:38;;41846:9;41829:38;;;;;;;;;;;;41890:9;41878;;:21;;;;;;;;;;;;;;;;;;41750:157:::0;:::o;33764:47::-;;;;:::o;33579:36::-;;;;:::o;34534:33::-;;;;:::o;34494:::-;;;;:::o;39209:130::-;2751:12;:10;:12::i;:::-;2740:23;;:7;:5;:7::i;:::-;:23;;;2732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39324:6:::1;39314;:17;;;;:::i;:::-;39291:20;:40;;;;39209:130:::0;:::o;12754:492::-;12894:4;12911:36;12921:6;12929:9;12940:6;12911:9;:36::i;:::-;12960:24;12987:11;:19;12999:6;12987:19;;;;;;;;;;;;;;;:33;13007:12;:10;:12::i;:::-;12987:33;;;;;;;;;;;;;;;;12960:60;;13059:6;13039:16;:26;;13031:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13146:57;13155:6;13163:12;:10;:12::i;:::-;13196:6;13177:16;:25;13146:8;:57::i;:::-;13234:4;13227:11;;;12754:492;;;;;:::o;33302:53::-;33348:6;33302:53;:::o;33674:45::-;;;;:::o;33635:32::-;;;;;;;;;;;;;:::o;10898:93::-;10956:5;10981:2;10974:9;;10898:93;:::o;13655:215::-;13743:4;13760:80;13769:12;:10;:12::i;:::-;13783:7;13829:10;13792:11;:25;13804:12;:10;:12::i;:::-;13792:25;;;;;;;;;;;;;;;:34;13818:7;13792:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13760:8;:80::i;:::-;13858:4;13851:11;;13655:215;;;;:::o;33257:38::-;;;:::o;33862:33::-;;;;;;;;;;;;;:::o;41915:126::-;41981:4;42005:19;:28;42025:7;42005:28;;;;;;;;;;;;;;;;;;;;;;;;;41998:35;;41915:126;;;:::o;34349:28::-;;;;:::o;33942:31::-;;;;;;;;;;;;;:::o;11227:127::-;11301:7;11328:9;:18;11338:7;11328:18;;;;;;;;;;;;;;;;11321:25;;11227:127;;;:::o;3171:103::-;2751:12;:10;:12::i;:::-;2740:23;;:7;:5;:7::i;:::-;:23;;;2732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3236:30:::1;3263:1;3236:18;:30::i;:::-;3171:103::o:0;50004:555::-;2751:12;:10;:12::i;:::-;2740:23;;:7;:5;:7::i;:::-;:23;;;2732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50206:3:::1;50183:19;:26;;50161:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50333:4;50321:8;:16;;:33;;;;;50353:1;50341:8;:13;;50321:33;50299:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50459:19;50441:15;:37;;;;50508:8;50489:16;:27;;;;50543:8;50527:13;;:24;;;;;;;;;;;;;;;;;;50004:555:::0;;;:::o;38317:121::-;38369:4;2751:12;:10;:12::i;:::-;2740:23;;:7;:5;:7::i;:::-;:23;;;2732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38403:5:::1;38386:14;;:22;;;;;;;;;;;;;;;;;;38426:4;38419:11;;38317:121:::0;:::o;39611:167::-;2751:12;:10;:12::i;:::-;2740:23;;:7;:5;:7::i;:::-;:23;;;2732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39766:4:::1;39724:31;:39;39756:6;39724:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39611:167:::0;;:::o;33394:30::-;;;;;;;;;;;;;:::o;34242:::-;;;;:::o;39982:403::-;2751:12;:10;:12::i;:::-;2740:23;;:7;:5;:7::i;:::-;:23;;;2732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40150:13:::1;40132:15;:31;;;;40192:13;40174:15;:31;;;;40228:7;40216:9;:19;;;;40297:9;;40279:15;;40261;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40246:12;:60;;;;40341:2;40325:12;;:18;;40317:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39982:403:::0;;;:::o;38110:155::-;2751:12;:10;:12::i;:::-;2740:23;;:7;:5;:7::i;:::-;:23;;;2732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38181:4:::1;38165:13;;:20;;;;;;;;;;;;;;;;;;38210:4;38196:11;;:18;;;;;;;;;;;;;;;;;;38242:15;38225:14;:32;;;;38110:155::o:0;2520:87::-;2566:7;2593:6;;;;;;;;;;;2586:13;;2520:87;:::o;33431:24::-;;;;;;;;;;;;;:::o;34384:31::-;;;;:::o;39874:100::-;2751:12;:10;:12::i;:::-;2740:23;;:7;:5;:7::i;:::-;:23;;;2732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39959:7:::1;39945:11;;:21;;;;;;;;;;;;;;;;;;39874:100:::0;:::o;10155:104::-;10211:13;10244:7;10237:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10155:104;:::o;41003:304::-;2751:12;:10;:12::i;:::-;2740:23;;:7;:5;:7::i;:::-;:23;;;2732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41147:13:::1;41139:21;;:4;:21;;;;41117:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41258:41;41287:4;41293:5;41258:28;:41::i;:::-;41003:304:::0;;:::o;34316:24::-;;;;:::o;33818:35::-;;;;:::o;34574:27::-;;;;:::o;34460:25::-;;;;:::o;14373:413::-;14466:4;14483:24;14510:11;:25;14522:12;:10;:12::i;:::-;14510:25;;;;;;;;;;;;;;;:34;14536:7;14510:34;;;;;;;;;;;;;;;;14483:61;;14583:15;14563:16;:35;;14555:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14676:67;14685:12;:10;:12::i;:::-;14699:7;14727:15;14708:16;:34;14676:8;:67::i;:::-;14774:4;14767:11;;;14373:413;;;;:::o;33726:29::-;;;;:::o;11567:175::-;11653:4;11670:42;11680:12;:10;:12::i;:::-;11694:9;11705:6;11670:9;:42::i;:::-;11730:4;11723:11;;11567:175;;;;:::o;41511:231::-;2751:12;:10;:12::i;:::-;2740:23;;:7;:5;:7::i;:::-;:23;;;2732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41671:15:::1;;;;;;;;;;;41628:59;;41651:18;41628:59;;;;;;;;;;;;41716:18;41698:15;;:36;;;;;;;;;;;;;;;;;;41511:231:::0;:::o;34971:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33902:33::-;;;;;;;;;;;;;:::o;40813:182::-;2751:12;:10;:12::i;:::-;2740:23;;:7;:5;:7::i;:::-;:23;;;2732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40929:8:::1;40898:19;:28;40918:7;40898:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40969:7;40953:34;;;40978:8;40953:34;;;;;;:::i;:::-;;;;;;;;40813:182:::0;;:::o;40393:412::-;2751:12;:10;:12::i;:::-;2740:23;;:7;:5;:7::i;:::-;:23;;;2732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40563:13:::1;40544:16;:32;;;;40606:13;40587:16;:32;;;;40643:7;40630:10;:20;;;;40715:10;;40696:16;;40677;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40661:13;:64;;;;40761:2;40744:13;;:19;;40736:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40393:412:::0;;;:::o;39347:256::-;2751:12;:10;:12::i;:::-;2740:23;;:7;:5;:7::i;:::-;:23;;;2732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39487:4:::1;39479;39474:1;39458:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39457:26;;;;:::i;:::-;39456:35;;;;:::i;:::-;39446:6;:45;;39424:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39588:6;39578;:17;;;;:::i;:::-;39566:9;:29;;;;39347:256:::0;:::o;34160:39::-;;;;;;;;;;;;;:::o;33464:35::-;;;;:::o;38704:497::-;38812:4;2751:12;:10;:12::i;:::-;2740:23;;:7;:5;:7::i;:::-;:23;;;2732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38891:6:::1;38886:1;38870:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38869:28;;;;:::i;:::-;38856:9;:41;;38834:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;39046:4;39041:1;39025:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39024:26;;;;:::i;:::-;39011:9;:39;;38989:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;39162:9;39141:18;:30;;;;39189:4;39182:11;;38704:497:::0;;;:::o;34208:27::-;;;;:::o;11805:151::-;11894:7;11921:11;:18;11933:5;11921:18;;;;;;;;;;;;;;;:27;11940:7;11921:27;;;;;;;;;;;;;;;;11914:34;;11805:151;;;;:::o;33506:33::-;;;;:::o;38499:135::-;38559:4;2751:12;:10;:12::i;:::-;2740:23;;:7;:5;:7::i;:::-;:23;;;2732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38599:5:::1;38576:20;;:28;;;;;;;;;;;;;;;;;;38622:4;38615:11;;38499:135:::0;:::o;34279:30::-;;;;:::o;3429:201::-;2751:12;:10;:12::i;:::-;2740:23;;:7;:5;:7::i;:::-;:23;;;2732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3538:1:::1;3518:22;;:8;:22;;;;3510:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3594:28;3613:8;3594:18;:28::i;:::-;3429:201:::0;:::o;34422:31::-;;;;:::o;33546:24::-;;;;:::o;51363:1056::-;51474:4;2751:12;:10;:12::i;:::-;2740:23;;:7;:5;:7::i;:::-;:23;;;2732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51559:19:::1;;51536:20;;:42;;;;:::i;:::-;51518:15;:60;51496:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51668:4;51657:7;:15;;51649:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51753:15;51730:20;:38;;;;51823:28;51854:4;:14;;;51869:13;51854:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51823:60;;51933:20;51956:44;51994:5;51956:33;51981:7;51956:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51933:67;;52120:1;52105:12;:16;52101:110;;;52138:61;52154:13;52177:6;52186:12;52138:15;:61::i;:::-;52101:110;52286:19;52323:13;52286:51;;52348:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52375:14;;;;;;;;;;52407:4;52400:11;;;;;51363:1056:::0;;;:::o;1193:98::-;1246:7;1273:10;1266:17;;1193:98;:::o;18057:380::-;18210:1;18193:19;;:5;:19;;;;18185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18291:1;18272:21;;:7;:21;;;;18264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18375:6;18345:11;:18;18357:5;18345:18;;;;;;;;;;;;;;;:27;18364:7;18345:27;;;;;;;;;;;;;;;:36;;;;18413:7;18397:32;;18406:5;18397:32;;;18422:6;18397:32;;;;;;:::i;:::-;;;;;;;;18057:380;;;:::o;42099:5011::-;42247:1;42231:18;;:4;:18;;;;42223:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42324:1;42310:16;;:2;:16;;;;42302:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42393:1;42383:6;:11;42379:93;;;42411:28;42427:4;42433:2;42437:1;42411:15;:28::i;:::-;42454:7;;42379:93;42488:14;;;;;;;;;;;42484:2487;;;42549:7;:5;:7::i;:::-;42541:15;;:4;:15;;;;:49;;;;;42583:7;:5;:7::i;:::-;42577:13;;:2;:13;;;;42541:49;:86;;;;;42625:1;42611:16;;:2;:16;;;;42541:86;:128;;;;;42662:6;42648:21;;:2;:21;;;;42541:128;:158;;;;;42691:8;;;;;;;;;;;42690:9;42541:158;42519:2441;;;42739:13;;;;;;;;;;;42734:223;;42811:19;:25;42831:4;42811:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42840:19;:23;42860:2;42840:23;;;;;;;;;;;;;;;;;;;;;;;;;42811:52;42777:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42734:223;43113:20;;;;;;;;;;;43109:641;;;43194:7;:5;:7::i;:::-;43188:13;;:2;:13;;;;:72;;;;;43244:15;43230:30;;:2;:30;;;;43188:72;:129;;;;;43303:13;43289:28;;:2;:28;;;;43188:129;43158:573;;;43481:12;43406:28;:39;43435:9;43406:39;;;;;;;;;;;;;;;;:87;43368:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43695:12;43653:28;:39;43682:9;43653:39;;;;;;;;;;;;;;;:54;;;;43158:573;43109:641;43824:25;:31;43850:4;43824:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43881:31;:35;43913:2;43881:35;;;;;;;;;;;;;;;;;;;;;;;;;43880:36;43824:92;43798:1147;;;44003:20;;43993:6;:30;;43959:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44211:9;;44194:13;44204:2;44194:9;:13::i;:::-;44185:6;:22;;;;:::i;:::-;:35;;44151:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43798:1147;;;44389:25;:29;44415:2;44389:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44444:31;:37;44476:4;44444:37;;;;;;;;;;;;;;;;;;;;;;;;;44443:38;44389:92;44363:582;;;44568:20;;44558:6;:30;;44524:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44363:582;;;44725:31;:35;44757:2;44725:35;;;;;;;;;;;;;;;;;;;;;;;;;44720:225;;44845:9;;44828:13;44838:2;44828:9;:13::i;:::-;44819:6;:22;;;;:::i;:::-;:35;;44785:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44720:225;44363:582;43798:1147;42519:2441;42484:2487;44983:28;45014:24;45032:4;45014:9;:24::i;:::-;44983:55;;45051:12;45090:18;;45066:20;:42;;45051:57;;45139:7;:35;;;;;45163:11;;;;;;;;;;;45139:35;:61;;;;;45192:8;;;;;;;;;;;45191:9;45139:61;:110;;;;;45218:25;:31;45244:4;45218:31;;;;;;;;;;;;;;;;;;;;;;;;;45217:32;45139:110;:153;;;;;45267:19;:25;45287:4;45267:25;;;;;;;;;;;;;;;;;;;;;;;;;45266:26;45139:153;:194;;;;;45310:19;:23;45330:2;45310:23;;;;;;;;;;;;;;;;;;;;;;;;;45309:24;45139:194;45121:326;;;45371:4;45360:8;;:15;;;;;;;;;;;;;;;;;;45392:10;:8;:10::i;:::-;45430:5;45419:8;;:16;;;;;;;;;;;;;;;;;;45121:326;45478:8;;;;;;;;;;;45477:9;:55;;;;;45503:25;:29;45529:2;45503:29;;;;;;;;;;;;;;;;;;;;;;;;;45477:55;:85;;;;;45549:13;;;;;;;;;;;45477:85;:153;;;;;45615:15;;45598:14;;:32;;;;:::i;:::-;45579:15;:51;;45477:153;:196;;;;;45648:19;:25;45668:4;45648:25;;;;;;;;;;;;;;;;;;;;;;;;;45647:26;45477:196;45459:282;;;45700:29;:27;:29::i;:::-;;45459:282;45753:12;45769:8;;;;;;;;;;;45768:9;45753:24;;45879:19;:25;45899:4;45879:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45908:19;:23;45928:2;45908:23;;;;;;;;;;;;;;;;;;;;;;;;;45879:52;45875:100;;;45958:5;45948:15;;45875:100;45987:12;46092:7;46088:969;;;46144:25;:29;46170:2;46144:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46193:1;46177:13;;:17;46144:50;46140:768;;;46222:34;46252:3;46222:25;46233:13;;46222:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46215:41;;46325:13;;46305:16;;46298:4;:23;;;;:::i;:::-;46297:41;;;;:::i;:::-;46275:18;;:63;;;;;;;:::i;:::-;;;;;;;;46395:13;;46381:10;;46374:4;:17;;;;:::i;:::-;46373:35;;;;:::i;:::-;46357:12;;:51;;;;;;;:::i;:::-;;;;;;;;46477:13;;46457:16;;46450:4;:23;;;;:::i;:::-;46449:41;;;;:::i;:::-;46427:18;;:63;;;;;;;:::i;:::-;;;;;;;;46140:768;;;46552:25;:31;46578:4;46552:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46602:1;46587:12;;:16;46552:51;46548:360;;;46631:33;46660:3;46631:24;46642:12;;46631:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46624:40;;46732:12;;46713:15;;46706:4;:22;;;;:::i;:::-;46705:39;;;;:::i;:::-;46683:18;;:61;;;;;;;:::i;:::-;;;;;;;;46800:12;;46787:9;;46780:4;:16;;;;:::i;:::-;46779:33;;;;:::i;:::-;46763:12;;:49;;;;;;;:::i;:::-;;;;;;;;46880:12;;46861:15;;46854:4;:22;;;;:::i;:::-;46853:39;;;;:::i;:::-;46831:18;;:61;;;;;;;:::i;:::-;;;;;;;;46548:360;46140:768;46935:1;46928:4;:8;46924:91;;;46957:42;46973:4;46987;46994;46957:15;:42::i;:::-;46924:91;47041:4;47031:14;;;;;:::i;:::-;;;46088:969;47069:33;47085:4;47091:2;47095:6;47069:15;:33::i;:::-;42212:4898;;;;42099:5011;;;;:::o;3790:191::-;3864:16;3883:6;;;;;;;;;;;3864:25;;3909:8;3900:6;;:17;;;;;;;;;;;;;;;;;;3964:8;3933:40;;3954:8;3933:40;;;;;;;;;;;;3853:128;3790:191;:::o;41315:188::-;41432:5;41398:25;:31;41424:4;41398:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41489:5;41455:40;;41483:4;41455:40;;;;;;;;;;;;41315:188;;:::o;23510:98::-;23568:7;23599:1;23595;:5;;;;:::i;:::-;23588:12;;23510:98;;;;:::o;23909:::-;23967:7;23998:1;23994;:5;;;;:::i;:::-;23987:12;;23909:98;;;;:::o;15276:733::-;15434:1;15416:20;;:6;:20;;;;15408:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15518:1;15497:23;;:9;:23;;;;15489:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15573:47;15594:6;15602:9;15613:6;15573:20;:47::i;:::-;15633:21;15657:9;:17;15667:6;15657:17;;;;;;;;;;;;;;;;15633:41;;15710:6;15693:13;:23;;15685:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15831:6;15815:13;:22;15795:9;:17;15805:6;15795:17;;;;;;;;;;;;;;;:42;;;;15883:6;15859:9;:20;15869:9;15859:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15924:9;15907:35;;15916:6;15907:35;;;15935:6;15907:35;;;;;;:::i;:::-;;;;;;;;15955:46;15975:6;15983:9;15994:6;15955:19;:46::i;:::-;15397:612;15276:733;;;:::o;48240:1756::-;48279:23;48305:24;48323:4;48305:9;:24::i;:::-;48279:50;;48340:25;48436:12;;48402:18;;48368;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48340:108;;48459:12;48507:1;48488:15;:20;:46;;;;48533:1;48512:17;:22;48488:46;48484:85;;;48551:7;;;;;48484:85;48624:2;48603:18;;:23;;;;:::i;:::-;48585:15;:41;48581:115;;;48682:2;48661:18;;:23;;;;:::i;:::-;48643:41;;48581:115;48757:23;48870:1;48837:17;48802:18;;48784:15;:36;;;;:::i;:::-;48783:71;;;;:::i;:::-;:88;;;;:::i;:::-;48757:114;;48882:26;48911:36;48931:15;48911;:19;;:36;;;;:::i;:::-;48882:65;;48960:25;48988:21;48960:49;;49022:36;49039:18;49022:16;:36::i;:::-;49071:18;49092:44;49118:17;49092:21;:25;;:44;;;;:::i;:::-;49071:65;;49149:23;49175:81;49228:17;49175:34;49190:18;;49175:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;49149:107;;49267:17;49287:51;49320:17;49287:28;49302:12;;49287:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49267:71;;49351:23;49408:9;49390:15;49377:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49351:66;;49451:1;49430:18;:22;;;;49484:1;49463:18;:22;;;;49511:1;49496:12;:16;;;;49547:9;;;;;;;;;;;49539:23;;49570:9;49539:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49525:59;;;;;49619:1;49601:15;:19;:42;;;;;49642:1;49624:15;:19;49601:42;49597:278;;;49660:46;49673:15;49690;49660:12;:46::i;:::-;49726:137;49759:18;49796:15;49830:18;;49726:137;;;;;;;;:::i;:::-;;;;;;;;49597:278;49909:15;;;;;;;;;;;49901:29;;49952:21;49901:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49887:101;;;;;48268:1728;;;;;;;;;;48240:1756;:::o;50567:788::-;50624:4;50658:15;50641:14;:32;;;;50728:28;50759:4;:14;;;50774:13;50759:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50728:60;;50838:20;50861:77;50922:5;50861:42;50886:16;;50861:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50838:100;;51058:1;51043:12;:16;51039:110;;;51076:61;51092:13;51115:6;51124:12;51076:15;:61::i;:::-;51039:110;51224:19;51261:13;51224:51;;51286:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51313:12;;;;;;;;;;51343:4;51336:11;;;;;50567:788;:::o;19037:125::-;;;;:::o;19766:124::-;;;;:::o;23153:98::-;23211:7;23242:1;23238;:5;;;;:::i;:::-;23231:12;;23153:98;;;;:::o;47118:589::-;47244:21;47282:1;47268:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47244:40;;47313:4;47295;47300:1;47295:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47339:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47329:4;47334:1;47329:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47374:62;47391:4;47406:15;47424:11;47374:8;:62::i;:::-;47475:15;:66;;;47556:11;47582:1;47626:4;47653;47673:15;47475:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47173:534;47118:589;:::o;47715:517::-;47863:62;47880:4;47895:15;47913:11;47863:8;:62::i;:::-;47968:15;:31;;;48007:9;48040:4;48060:11;48086:1;48129;33348:6;48198:15;47968:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47715: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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:227::-;11866:34;11862:1;11854:6;11850:14;11843:58;11935:10;11930:2;11922:6;11918:15;11911:35;11726:227;:::o;11959:366::-;12101:3;12122:67;12186:2;12181:3;12122:67;:::i;:::-;12115:74;;12198:93;12287:3;12198:93;:::i;:::-;12316:2;12311:3;12307:12;12300:19;;11959:366;;;:::o;12331:419::-;12497:4;12535:2;12524:9;12520:18;12512:26;;12584:9;12578:4;12574:20;12570:1;12559:9;12555:17;12548:47;12612:131;12738:4;12612:131;:::i;:::-;12604:139;;12331:419;;;:::o;12756:305::-;12796:3;12815:20;12833:1;12815:20;:::i;:::-;12810:25;;12849:20;12867:1;12849:20;:::i;:::-;12844:25;;13003:1;12935:66;12931:74;12928:1;12925:81;12922:107;;;13009:18;;:::i;:::-;12922:107;13053:1;13050;13046:9;13039:16;;12756:305;;;;:::o;13067:238::-;13207:34;13203:1;13195:6;13191:14;13184:58;13276:21;13271:2;13263:6;13259:15;13252:46;13067:238;:::o;13311:366::-;13453:3;13474:67;13538:2;13533:3;13474:67;:::i;:::-;13467:74;;13550:93;13639:3;13550:93;:::i;:::-;13668:2;13663:3;13659:12;13652:19;;13311:366;;;:::o;13683:419::-;13849:4;13887:2;13876:9;13872:18;13864:26;;13936:9;13930:4;13926:20;13922:1;13911:9;13907:17;13900:47;13964:131;14090:4;13964:131;:::i;:::-;13956:139;;13683:419;;;:::o;14108:235::-;14248:34;14244:1;14236:6;14232:14;14225:58;14317:18;14312:2;14304:6;14300:15;14293:43;14108:235;:::o;14349:366::-;14491:3;14512:67;14576:2;14571:3;14512:67;:::i;:::-;14505:74;;14588:93;14677:3;14588:93;:::i;:::-;14706:2;14701:3;14697:12;14690:19;;14349:366;;;:::o;14721:419::-;14887:4;14925:2;14914:9;14910:18;14902:26;;14974:9;14968:4;14964:20;14960:1;14949:9;14945:17;14938:47;15002:131;15128:4;15002:131;:::i;:::-;14994:139;;14721:419;;;:::o;15146:179::-;15286:31;15282:1;15274:6;15270:14;15263:55;15146:179;:::o;15331:366::-;15473:3;15494:67;15558:2;15553:3;15494:67;:::i;:::-;15487:74;;15570:93;15659:3;15570:93;:::i;:::-;15688:2;15683:3;15679:12;15672:19;;15331:366;;;:::o;15703:419::-;15869:4;15907:2;15896:9;15892:18;15884:26;;15956:9;15950:4;15946:20;15942:1;15931:9;15927:17;15920:47;15984:131;16110:4;15984:131;:::i;:::-;15976:139;;15703:419;;;:::o;16128:244::-;16268:34;16264:1;16256:6;16252:14;16245:58;16337:27;16332:2;16324:6;16320:15;16313:52;16128:244;:::o;16378:366::-;16520:3;16541:67;16605:2;16600:3;16541:67;:::i;:::-;16534:74;;16617:93;16706:3;16617:93;:::i;:::-;16735:2;16730:3;16726:12;16719:19;;16378:366;;;:::o;16750:419::-;16916:4;16954:2;16943:9;16939:18;16931:26;;17003:9;16997:4;16993:20;16989:1;16978:9;16974:17;16967:47;17031:131;17157:4;17031:131;:::i;:::-;17023:139;;16750:419;;;:::o;17175:224::-;17315:34;17311:1;17303:6;17299:14;17292:58;17384:7;17379:2;17371:6;17367:15;17360:32;17175:224;:::o;17405:366::-;17547:3;17568:67;17632:2;17627:3;17568:67;:::i;:::-;17561:74;;17644:93;17733:3;17644:93;:::i;:::-;17762:2;17757:3;17753:12;17746:19;;17405:366;;;:::o;17777:419::-;17943:4;17981:2;17970:9;17966:18;17958:26;;18030:9;18024:4;18020:20;18016:1;18005:9;18001:17;17994:47;18058:131;18184:4;18058:131;:::i;:::-;18050:139;;17777:419;;;:::o;18202:180::-;18250:77;18247:1;18240:88;18347:4;18344:1;18337:15;18371:4;18368:1;18361:15;18388:185;18428:1;18445:20;18463:1;18445:20;:::i;:::-;18440:25;;18479:20;18497:1;18479:20;:::i;:::-;18474:25;;18518:1;18508:35;;18523:18;;:::i;:::-;18508:35;18565:1;18562;18558:9;18553:14;;18388:185;;;;:::o;18579:223::-;18719:34;18715:1;18707:6;18703:14;18696:58;18788:6;18783:2;18775:6;18771:15;18764:31;18579:223;:::o;18808:366::-;18950:3;18971:67;19035:2;19030:3;18971:67;:::i;:::-;18964:74;;19047:93;19136:3;19047:93;:::i;:::-;19165:2;19160:3;19156:12;19149:19;;18808:366;;;:::o;19180:419::-;19346:4;19384:2;19373:9;19369:18;19361:26;;19433:9;19427:4;19423:20;19419:1;19408:9;19404:17;19397:47;19461:131;19587:4;19461:131;:::i;:::-;19453:139;;19180:419;;;:::o;19605:240::-;19745:34;19741:1;19733:6;19729:14;19722:58;19814:23;19809:2;19801:6;19797:15;19790:48;19605:240;:::o;19851:366::-;19993:3;20014:67;20078:2;20073:3;20014:67;:::i;:::-;20007:74;;20090:93;20179:3;20090:93;:::i;:::-;20208:2;20203:3;20199:12;20192:19;;19851:366;;;:::o;20223:419::-;20389:4;20427:2;20416:9;20412:18;20404:26;;20476:9;20470:4;20466:20;20462:1;20451:9;20447:17;20440:47;20504:131;20630:4;20504:131;:::i;:::-;20496:139;;20223:419;;;:::o;20648:239::-;20788:34;20784:1;20776:6;20772:14;20765:58;20857:22;20852:2;20844:6;20840:15;20833:47;20648:239;:::o;20893:366::-;21035:3;21056:67;21120:2;21115:3;21056:67;:::i;:::-;21049:74;;21132:93;21221:3;21132:93;:::i;:::-;21250:2;21245:3;21241:12;21234:19;;20893:366;;;:::o;21265:419::-;21431:4;21469:2;21458:9;21454:18;21446:26;;21518:9;21512:4;21508:20;21504:1;21493:9;21489:17;21482:47;21546:131;21672:4;21546:131;:::i;:::-;21538:139;;21265:419;;;:::o;21690:225::-;21830:34;21826:1;21818:6;21814:14;21807:58;21899:8;21894:2;21886:6;21882:15;21875:33;21690:225;:::o;21921:366::-;22063:3;22084:67;22148:2;22143:3;22084:67;:::i;:::-;22077:74;;22160:93;22249:3;22160:93;:::i;:::-;22278:2;22273:3;22269:12;22262:19;;21921:366;;;:::o;22293:419::-;22459:4;22497:2;22486:9;22482:18;22474:26;;22546:9;22540:4;22536:20;22532:1;22521:9;22517:17;22510:47;22574:131;22700:4;22574:131;:::i;:::-;22566:139;;22293:419;;;:::o;22718:182::-;22858:34;22854:1;22846:6;22842:14;22835:58;22718:182;:::o;22906:366::-;23048:3;23069:67;23133:2;23128:3;23069:67;:::i;:::-;23062:74;;23145:93;23234:3;23145:93;:::i;:::-;23263:2;23258:3;23254:12;23247:19;;22906:366;;;:::o;23278:419::-;23444:4;23482:2;23471:9;23467:18;23459:26;;23531:9;23525:4;23521:20;23517:1;23506:9;23502:17;23495:47;23559:131;23685:4;23559:131;:::i;:::-;23551:139;;23278:419;;;:::o;23703:229::-;23843:34;23839:1;23831:6;23827:14;23820:58;23912:12;23907:2;23899:6;23895:15;23888:37;23703:229;:::o;23938:366::-;24080:3;24101:67;24165:2;24160:3;24101:67;:::i;:::-;24094:74;;24177:93;24266:3;24177:93;:::i;:::-;24295:2;24290:3;24286:12;24279:19;;23938:366;;;:::o;24310:419::-;24476:4;24514:2;24503:9;24499:18;24491:26;;24563:9;24557:4;24553:20;24549:1;24538:9;24534:17;24527:47;24591:131;24717:4;24591:131;:::i;:::-;24583:139;;24310:419;;;:::o;24735:143::-;24792:5;24823:6;24817:13;24808:22;;24839:33;24866:5;24839:33;:::i;:::-;24735:143;;;;:::o;24884:351::-;24954:6;25003:2;24991:9;24982:7;24978:23;24974:32;24971:119;;;25009:79;;:::i;:::-;24971:119;25129:1;25154:64;25210:7;25201:6;25190:9;25186:22;25154:64;:::i;:::-;25144:74;;25100:128;24884:351;;;;:::o;25241:223::-;25381:34;25377:1;25369:6;25365:14;25358:58;25450:6;25445:2;25437:6;25433:15;25426:31;25241:223;:::o;25470:366::-;25612:3;25633:67;25697:2;25692:3;25633:67;:::i;:::-;25626:74;;25709:93;25798:3;25709:93;:::i;:::-;25827:2;25822:3;25818:12;25811:19;;25470:366;;;:::o;25842:419::-;26008:4;26046:2;26035:9;26031:18;26023:26;;26095:9;26089:4;26085:20;26081:1;26070:9;26066:17;26059:47;26123:131;26249:4;26123:131;:::i;:::-;26115:139;;25842:419;;;:::o;26267:221::-;26407:34;26403:1;26395:6;26391:14;26384:58;26476:4;26471:2;26463:6;26459:15;26452:29;26267:221;:::o;26494:366::-;26636:3;26657:67;26721:2;26716:3;26657:67;:::i;:::-;26650:74;;26733:93;26822:3;26733:93;:::i;:::-;26851:2;26846:3;26842:12;26835:19;;26494:366;;;:::o;26866:419::-;27032:4;27070:2;27059:9;27055:18;27047:26;;27119:9;27113:4;27109:20;27105:1;27094:9;27090:17;27083:47;27147:131;27273:4;27147:131;:::i;:::-;27139:139;;26866:419;;;:::o;27291:224::-;27431:34;27427:1;27419:6;27415:14;27408:58;27500:7;27495:2;27487:6;27483:15;27476:32;27291:224;:::o;27521:366::-;27663:3;27684:67;27748:2;27743:3;27684:67;:::i;:::-;27677:74;;27760:93;27849:3;27760:93;:::i;:::-;27878:2;27873:3;27869:12;27862:19;;27521:366;;;:::o;27893:419::-;28059:4;28097:2;28086:9;28082:18;28074:26;;28146:9;28140:4;28136:20;28132:1;28121:9;28117:17;28110:47;28174:131;28300:4;28174:131;:::i;:::-;28166:139;;27893:419;;;:::o;28318:222::-;28458:34;28454:1;28446:6;28442:14;28435:58;28527:5;28522:2;28514:6;28510:15;28503:30;28318:222;:::o;28546:366::-;28688:3;28709:67;28773:2;28768:3;28709:67;:::i;:::-;28702:74;;28785:93;28874:3;28785:93;:::i;:::-;28903:2;28898:3;28894:12;28887:19;;28546:366;;;:::o;28918:419::-;29084:4;29122:2;29111:9;29107:18;29099:26;;29171:9;29165:4;29161:20;29157:1;29146:9;29142:17;29135:47;29199:131;29325:4;29199:131;:::i;:::-;29191:139;;28918:419;;;:::o;29343:172::-;29483:24;29479:1;29471:6;29467:14;29460:48;29343:172;:::o;29521:366::-;29663:3;29684:67;29748:2;29743:3;29684:67;:::i;:::-;29677:74;;29760:93;29849:3;29760:93;:::i;:::-;29878:2;29873:3;29869:12;29862:19;;29521:366;;;:::o;29893:419::-;30059:4;30097:2;30086:9;30082:18;30074:26;;30146:9;30140:4;30136:20;30132:1;30121:9;30117:17;30110:47;30174:131;30300:4;30174:131;:::i;:::-;30166:139;;29893:419;;;:::o;30318:297::-;30458:34;30454:1;30446:6;30442:14;30435:58;30527:34;30522:2;30514:6;30510:15;30503:59;30596:11;30591:2;30583:6;30579:15;30572:36;30318:297;:::o;30621:366::-;30763:3;30784:67;30848:2;30843:3;30784:67;:::i;:::-;30777:74;;30860:93;30949:3;30860:93;:::i;:::-;30978:2;30973:3;30969:12;30962:19;;30621:366;;;:::o;30993:419::-;31159:4;31197:2;31186:9;31182:18;31174:26;;31246:9;31240:4;31236:20;31232:1;31221:9;31217:17;31210:47;31274:131;31400:4;31274:131;:::i;:::-;31266:139;;30993:419;;;:::o;31418:240::-;31558:34;31554:1;31546:6;31542:14;31535:58;31627:23;31622:2;31614:6;31610:15;31603:48;31418:240;:::o;31664:366::-;31806:3;31827:67;31891:2;31886:3;31827:67;:::i;:::-;31820:74;;31903:93;31992:3;31903:93;:::i;:::-;32021:2;32016:3;32012:12;32005:19;;31664:366;;;:::o;32036:419::-;32202:4;32240:2;32229:9;32225:18;32217:26;;32289:9;32283:4;32279:20;32275:1;32264:9;32260:17;32253:47;32317:131;32443:4;32317:131;:::i;:::-;32309:139;;32036:419;;;:::o;32461:169::-;32601:21;32597:1;32589:6;32585:14;32578:45;32461:169;:::o;32636:366::-;32778:3;32799:67;32863:2;32858:3;32799:67;:::i;:::-;32792:74;;32875:93;32964:3;32875:93;:::i;:::-;32993:2;32988:3;32984:12;32977:19;;32636:366;;;:::o;33008:419::-;33174:4;33212:2;33201:9;33197:18;33189:26;;33261:9;33255:4;33251:20;33247:1;33236:9;33232:17;33225:47;33289:131;33415:4;33289:131;:::i;:::-;33281:139;;33008:419;;;:::o;33433:241::-;33573:34;33569:1;33561:6;33557:14;33550:58;33642:24;33637:2;33629:6;33625:15;33618:49;33433:241;:::o;33680:366::-;33822:3;33843:67;33907:2;33902:3;33843:67;:::i;:::-;33836:74;;33919:93;34008:3;33919:93;:::i;:::-;34037:2;34032:3;34028:12;34021:19;;33680:366;;;:::o;34052:419::-;34218:4;34256:2;34245:9;34241:18;34233:26;;34305:9;34299:4;34295:20;34291:1;34280:9;34276:17;34269:47;34333:131;34459:4;34333:131;:::i;:::-;34325:139;;34052:419;;;:::o;34477:191::-;34517:4;34537:20;34555:1;34537:20;:::i;:::-;34532:25;;34571:20;34589:1;34571:20;:::i;:::-;34566:25;;34610:1;34607;34604:8;34601:34;;;34615:18;;:::i;:::-;34601:34;34660:1;34657;34653:9;34645:17;;34477:191;;;;:::o;34674:225::-;34814:34;34810:1;34802:6;34798:14;34791:58;34883:8;34878:2;34870:6;34866:15;34859:33;34674:225;:::o;34905:366::-;35047:3;35068:67;35132:2;35127:3;35068:67;:::i;:::-;35061:74;;35144:93;35233:3;35144:93;:::i;:::-;35262:2;35257:3;35253:12;35246:19;;34905:366;;;:::o;35277:419::-;35443:4;35481:2;35470:9;35466:18;35458:26;;35530:9;35524:4;35520:20;35516:1;35505:9;35501:17;35494:47;35558:131;35684:4;35558:131;:::i;:::-;35550:139;;35277:419;;;:::o;35702:147::-;35803:11;35840:3;35825:18;;35702:147;;;;:::o;35855:114::-;;:::o;35975:398::-;36134:3;36155:83;36236:1;36231:3;36155:83;:::i;:::-;36148:90;;36247:93;36336:3;36247:93;:::i;:::-;36365:1;36360:3;36356:11;36349:18;;35975:398;;;:::o;36379:379::-;36563:3;36585:147;36728:3;36585:147;:::i;:::-;36578:154;;36749:3;36742:10;;36379:379;;;:::o;36764:442::-;36913:4;36951:2;36940:9;36936:18;36928:26;;36964:71;37032:1;37021:9;37017:17;37008:6;36964:71;:::i;:::-;37045:72;37113:2;37102:9;37098:18;37089:6;37045:72;:::i;:::-;37127;37195:2;37184:9;37180:18;37171:6;37127:72;:::i;:::-;36764:442;;;;;;:::o;37212:180::-;37260:77;37257:1;37250:88;37357:4;37354:1;37347:15;37381:4;37378:1;37371:15;37398:180;37446:77;37443:1;37436:88;37543:4;37540:1;37533:15;37567:4;37564:1;37557:15;37584:143;37641:5;37672:6;37666:13;37657:22;;37688:33;37715:5;37688:33;:::i;:::-;37584:143;;;;:::o;37733:351::-;37803:6;37852:2;37840:9;37831:7;37827:23;37823:32;37820:119;;;37858:79;;:::i;:::-;37820:119;37978:1;38003:64;38059:7;38050:6;38039:9;38035:22;38003:64;:::i;:::-;37993:74;;37949:128;37733:351;;;;:::o;38090:85::-;38135:7;38164:5;38153:16;;38090:85;;;:::o;38181:158::-;38239:9;38272:61;38290:42;38299:32;38325:5;38299:32;:::i;:::-;38290:42;:::i;:::-;38272:61;:::i;:::-;38259:74;;38181:158;;;:::o;38345:147::-;38440:45;38479:5;38440:45;:::i;:::-;38435:3;38428:58;38345:147;;:::o;38498:114::-;38565:6;38599:5;38593:12;38583:22;;38498:114;;;:::o;38618:184::-;38717:11;38751:6;38746:3;38739:19;38791:4;38786:3;38782:14;38767:29;;38618:184;;;;:::o;38808:132::-;38875:4;38898:3;38890:11;;38928:4;38923:3;38919:14;38911:22;;38808:132;;;:::o;38946:108::-;39023:24;39041:5;39023:24;:::i;:::-;39018:3;39011:37;38946:108;;:::o;39060:179::-;39129:10;39150:46;39192:3;39184:6;39150:46;:::i;:::-;39228:4;39223:3;39219:14;39205:28;;39060:179;;;;:::o;39245:113::-;39315:4;39347;39342:3;39338:14;39330:22;;39245:113;;;:::o;39394:732::-;39513:3;39542:54;39590:5;39542:54;:::i;:::-;39612:86;39691:6;39686:3;39612:86;:::i;:::-;39605:93;;39722:56;39772:5;39722:56;:::i;:::-;39801:7;39832:1;39817:284;39842:6;39839:1;39836:13;39817:284;;;39918:6;39912:13;39945:63;40004:3;39989:13;39945:63;:::i;:::-;39938:70;;40031:60;40084:6;40031:60;:::i;:::-;40021:70;;39877:224;39864:1;39861;39857:9;39852:14;;39817:284;;;39821:14;40117:3;40110:10;;39518:608;;;39394:732;;;;:::o;40132:831::-;40395:4;40433:3;40422:9;40418:19;40410:27;;40447:71;40515:1;40504:9;40500:17;40491:6;40447:71;:::i;:::-;40528:80;40604:2;40593:9;40589:18;40580:6;40528:80;:::i;:::-;40655:9;40649:4;40645:20;40640:2;40629:9;40625:18;40618:48;40683:108;40786:4;40777:6;40683:108;:::i;:::-;40675:116;;40801:72;40869:2;40858:9;40854:18;40845:6;40801:72;:::i;:::-;40883:73;40951:3;40940:9;40936:19;40927:6;40883:73;:::i;:::-;40132:831;;;;;;;;:::o;40969:807::-;41218:4;41256:3;41245:9;41241:19;41233:27;;41270:71;41338:1;41327:9;41323:17;41314:6;41270:71;:::i;:::-;41351:72;41419:2;41408:9;41404:18;41395:6;41351:72;:::i;:::-;41433:80;41509:2;41498:9;41494:18;41485:6;41433:80;:::i;:::-;41523;41599:2;41588:9;41584:18;41575:6;41523:80;:::i;:::-;41613:73;41681:3;41670:9;41666:19;41657:6;41613:73;:::i;:::-;41696;41764:3;41753:9;41749:19;41740:6;41696:73;:::i;:::-;40969:807;;;;;;;;;:::o;41782:663::-;41870:6;41878;41886;41935:2;41923:9;41914:7;41910:23;41906:32;41903:119;;;41941:79;;:::i;:::-;41903:119;42061:1;42086:64;42142:7;42133:6;42122:9;42118:22;42086:64;:::i;:::-;42076:74;;42032:128;42199:2;42225:64;42281:7;42272:6;42261:9;42257:22;42225:64;:::i;:::-;42215:74;;42170:129;42338:2;42364:64;42420:7;42411:6;42400:9;42396:22;42364:64;:::i;:::-;42354:74;;42309:129;41782:663;;;;;:::o

Swarm Source

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