ETH Price: $3,100.36 (+1.26%)
Gas: 5 Gwei

Token

DogeKaKi (KAKI)
 

Overview

Max Total Supply

1,000,000,000 KAKI

Holders

114

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
12,376,608.588249081442392414 KAKI

Value
$0.00
0xA997D55788a11B79565e79F9FBD5a4A7447a10FD
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:
DogeKaKi

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
/**
DESIGED FOR Doge KaKi    
LOW TAX                
REWARDS @ EACH SWAP    
AIRDROP FOR TESTERS    
ANTIBOT MECHANISM      
*/
pragma solidity =0.8.9 >=0.8.9 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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

contract DogeKaKi 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 devWallet;

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

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

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

    uint256 public buyTotalFees;
    uint256 public buyLiquidityFee;
    uint256 public buyMarketingFee;

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

    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("DogeKaKi", "KAKI") {
        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 _buyLiquidityFee = 2;
        uint256 _buyMarketingFee = 2;

        uint256 _sellLiquidityFee = 2;
        uint256 _sellMarketingFee = 2;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 100_000_000 * 1e18; // 1,5% from total supply
        maxWallet = 500_000_000 * 1e18; // 5% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 4) / 100; // 0.4% swap wallet

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

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

        devWallet = address(0x217f53c8Dc3B391CD5D7eDAb2E31241dB25Db1B2); // 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;
    }

    // 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() * 8) / 1000,
            "Swap amount cannot be higher than 0.8% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

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

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

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

    function updateBuyFees(
        uint256 _liquidityFee,
        uint256 _MarketingFee
    ) external onlyOwner {
        buyLiquidityFee = _liquidityFee;
        buyMarketingFee = _MarketingFee;
        buyTotalFees = buyLiquidityFee + buyMarketingFee;
        require(buyTotalFees <= 10, "Buy Fee");
    }

    function Burn(
        uint256 _liquidityFee,
        uint256 _MarketingFee
    ) external onlyOwner {
        sellLiquidityFee = _liquidityFee;
        sellMarketingFee = _MarketingFee;
        sellTotalFees = sellLiquidityFee + sellMarketingFee;
        require(buyTotalFees <= 100);
    }

    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 updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (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
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            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 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDev;

        tokensForLiquidity = 0;
        tokensForDev = 0;

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

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

    function withdraw() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        require(_token != address(this), "Can't withdraw native tokens");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

}

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":"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"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_MarketingFee","type":"uint256"}],"name":"Burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_MarketingFee","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":"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":"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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055506000600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600881526020017f446f67654b614b690000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b414b490000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000a94565b5080600490805190602001906200011b92919062000a94565b5050506200013e620001326200055460201b60201c565b6200055c60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a8160016200062260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e557600080fd5b505afa158015620001fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000220919062000bae565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028357600080fd5b505afa15801562000298573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002be919062000bae565b6040518363ffffffff1660e01b8152600401620002dd92919062000bf1565b602060405180830381600087803b158015620002f857600080fd5b505af11580156200030d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000333919062000bae565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037b60a05160016200062260201b60201c565b6200039060a05160016200070c60201b60201c565b60006002905060006002905060006002905060006002905060006b033b2e3c9fd0803ce800000090506a52b7d2dcc80cd2e40000006007819055506b019d971e4fe8401e740000006009819055506064600482620003ef919062000c57565b620003fb919062000ce7565b60088190555084600e8190555083600f81905550600f54600e5462000421919062000d1f565b600d81905550826011819055508160128190555060125460115462000447919062000d1f565b60108190555073217f53c8dc3b391cd5d7edab2e31241db25db1b2600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004c4620004b6620007ad60201b60201c565b6001620007d760201b60201c565b620004d7306001620007d760201b60201c565b620004ec61dead6001620007d760201b60201c565b6200050e62000500620007ad60201b60201c565b60016200062260201b60201c565b620005213060016200062260201b60201c565b6200053661dead60016200062260201b60201c565b6200054833826200091160201b60201c565b50505050505062000f3e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006326200055460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000658620007ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006a89062000ddd565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007e76200055460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200080d620007ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000866576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200085d9062000ddd565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000905919062000e1c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000984576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200097b9062000e89565b60405180910390fd5b620009986000838362000a8a60201b60201c565b8060026000828254620009ac919062000d1f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a03919062000d1f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a6a919062000ebc565b60405180910390a362000a866000838362000a8f60201b60201c565b5050565b505050565b505050565b82805462000aa29062000f08565b90600052602060002090601f01602090048101928262000ac6576000855562000b12565b82601f1062000ae157805160ff191683800117855562000b12565b8280016001018555821562000b12579182015b8281111562000b1157825182559160200191906001019062000af4565b5b50905062000b21919062000b25565b5090565b5b8082111562000b4057600081600090555060010162000b26565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b768262000b49565b9050919050565b62000b888162000b69565b811462000b9457600080fd5b50565b60008151905062000ba88162000b7d565b92915050565b60006020828403121562000bc75762000bc662000b44565b5b600062000bd78482850162000b97565b91505092915050565b62000beb8162000b69565b82525050565b600060408201905062000c08600083018562000be0565b62000c17602083018462000be0565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c648262000c1e565b915062000c718362000c1e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cad5762000cac62000c28565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000cf48262000c1e565b915062000d018362000c1e565b92508262000d145762000d1362000cb8565b5b828204905092915050565b600062000d2c8262000c1e565b915062000d398362000c1e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d715762000d7062000c28565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000dc560208362000d7c565b915062000dd28262000d8d565b602082019050919050565b6000602082019050818103600083015262000df88162000db6565b9050919050565b60008115159050919050565b62000e168162000dff565b82525050565b600060208201905062000e33600083018462000e0b565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e71601f8362000d7c565b915062000e7e8262000e39565b602082019050919050565b6000602082019050818103600083015262000ea48162000e62565b9050919050565b62000eb68162000c1e565b82525050565b600060208201905062000ed3600083018462000eab565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f2157607f821691505b6020821081141562000f385762000f3762000ed9565b5b50919050565b60805160a05161522562000f9c6000396000818161160d01528181611c9b01526129e2015260008181610ccb0152818161298a0152818161394a01528181613a3a01528181613a6101528181613afd0152613b2401526152256000f3fe6080604052600436106102e85760003560e01c80637bce5a0411610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b4f578063f2fde38b14610b7a578063f637434214610ba3578063f8b45b0514610bce576102ef565b8063dd62ed3e14610abc578063e2f4560514610af9578063e884f26014610b24576102ef565b8063c0246668146109ac578063c18bc195146109d5578063c876d0b9146109fe578063c8c8ebe414610a29578063d257b34f14610a54578063d85ba06314610a91576102ef565b806395d89b4111610149578063a457c2d711610123578063a457c2d7146108ca578063a9059cbb14610907578063b62496f514610944578063bbc0c74214610981576102ef565b806395d89b411461084b5780639a7a23d6146108765780639fccce321461089f576102ef565b80637bce5a041461075f5780638a8c523c1461078a5780638da5cb5b146107a15780638ea5220f146107cc57806392136913146107f7578063924de9b714610822576102ef565b80633aeac4e11161024f57806366ca9b831161020857806370a08231116101e257806370a08231146106b7578063715018a6146106f4578063751039fc1461070b5780637571336a14610736576102ef565b806366ca9b83146106385780636a486a8e146106615780636ddd17131461068c576102ef565b80633aeac4e11461053c5780633ccfd60b14610565578063410c5c251461057c57806349bd5a5e146105a55780634a62bb65146105d05780634fbee193146105fb576102ef565b80631a8145bb116102a15780631a8145bb14610418578063203e727e1461044357806323b872dd1461046c57806327c8f835146104a9578063313ce567146104d457806339509351146104ff576102ef565b806306fdde03146102f4578063095ea7b31461031f57806310d5de531461035c5780631694505e1461039957806318160ddd146103c45780631816467f146103ef576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309610bf9565b6040516103169190613c80565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190613d3b565b610c8b565b6040516103539190613d96565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190613db1565b610ca9565b6040516103909190613d96565b60405180910390f35b3480156103a557600080fd5b506103ae610cc9565b6040516103bb9190613e3d565b60405180910390f35b3480156103d057600080fd5b506103d9610ced565b6040516103e69190613e67565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190613db1565b610cf7565b005b34801561042457600080fd5b5061042d610e33565b60405161043a9190613e67565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190613e82565b610e39565b005b34801561047857600080fd5b50610493600480360381019061048e9190613eaf565b610f48565b6040516104a09190613d96565b60405180910390f35b3480156104b557600080fd5b506104be611040565b6040516104cb9190613f11565b60405180910390f35b3480156104e057600080fd5b506104e9611046565b6040516104f69190613f48565b60405180910390f35b34801561050b57600080fd5b5061052660048036038101906105219190613d3b565b61104f565b6040516105339190613d96565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e9190613f63565b6110fb565b005b34801561057157600080fd5b5061057a611376565b005b34801561058857600080fd5b506105a3600480360381019061059e9190613fa3565b611557565b005b3480156105b157600080fd5b506105ba61160b565b6040516105c79190613f11565b60405180910390f35b3480156105dc57600080fd5b506105e561162f565b6040516105f29190613d96565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613db1565b611642565b60405161062f9190613d96565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190613fa3565b611698565b005b34801561066d57600080fd5b50610676611782565b6040516106839190613e67565b60405180910390f35b34801561069857600080fd5b506106a1611788565b6040516106ae9190613d96565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d99190613db1565b61179b565b6040516106eb9190613e67565b60405180910390f35b34801561070057600080fd5b506107096117e3565b005b34801561071757600080fd5b5061072061186b565b60405161072d9190613d96565b60405180910390f35b34801561074257600080fd5b5061075d6004803603810190610758919061400f565b61190b565b005b34801561076b57600080fd5b506107746119e2565b6040516107819190613e67565b60405180910390f35b34801561079657600080fd5b5061079f6119e8565b005b3480156107ad57600080fd5b506107b6611a9c565b6040516107c39190613f11565b60405180910390f35b3480156107d857600080fd5b506107e1611ac6565b6040516107ee9190613f11565b60405180910390f35b34801561080357600080fd5b5061080c611aec565b6040516108199190613e67565b60405180910390f35b34801561082e57600080fd5b506108496004803603810190610844919061404f565b611af2565b005b34801561085757600080fd5b50610860611b8b565b60405161086d9190613c80565b60405180910390f35b34801561088257600080fd5b5061089d6004803603810190610898919061400f565b611c1d565b005b3480156108ab57600080fd5b506108b4611d36565b6040516108c19190613e67565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613d3b565b611d3c565b6040516108fe9190613d96565b60405180910390f35b34801561091357600080fd5b5061092e60048036038101906109299190613d3b565b611e27565b60405161093b9190613d96565b60405180910390f35b34801561095057600080fd5b5061096b60048036038101906109669190613db1565b611e45565b6040516109789190613d96565b60405180910390f35b34801561098d57600080fd5b50610996611e65565b6040516109a39190613d96565b60405180910390f35b3480156109b857600080fd5b506109d360048036038101906109ce919061400f565b611e78565b005b3480156109e157600080fd5b506109fc60048036038101906109f79190613e82565b611f9d565b005b348015610a0a57600080fd5b50610a136120ac565b604051610a209190613d96565b60405180910390f35b348015610a3557600080fd5b50610a3e6120bf565b604051610a4b9190613e67565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613e82565b6120c5565b604051610a889190613d96565b60405180910390f35b348015610a9d57600080fd5b50610aa661221a565b604051610ab39190613e67565b60405180910390f35b348015610ac857600080fd5b50610ae36004803603810190610ade9190613f63565b612220565b604051610af09190613e67565b60405180910390f35b348015610b0557600080fd5b50610b0e6122a7565b604051610b1b9190613e67565b60405180910390f35b348015610b3057600080fd5b50610b396122ad565b604051610b469190613d96565b60405180910390f35b348015610b5b57600080fd5b50610b6461234d565b604051610b719190613e67565b60405180910390f35b348015610b8657600080fd5b50610ba16004803603810190610b9c9190613db1565b612353565b005b348015610baf57600080fd5b50610bb861244b565b604051610bc59190613e67565b60405180910390f35b348015610bda57600080fd5b50610be3612451565b604051610bf09190613e67565b60405180910390f35b606060038054610c08906140ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610c34906140ab565b8015610c815780601f10610c5657610100808354040283529160200191610c81565b820191906000526020600020905b815481529060010190602001808311610c6457829003601f168201915b5050505050905090565b6000610c9f610c98612457565b848461245f565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610cff612457565b73ffffffffffffffffffffffffffffffffffffffff16610d1d611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90614129565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610e41612457565b73ffffffffffffffffffffffffffffffffffffffff16610e5f611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac90614129565b60405180910390fd5b670de0b6b3a76400006103e86001610ecb610ced565b610ed59190614178565b610edf9190614201565b610ee99190614201565b811015610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f22906142a4565b60405180910390fd5b670de0b6b3a764000081610f3f9190614178565b60078190555050565b6000610f5584848461262a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fa0612457565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790614336565b60405180910390fd5b6110348561102c612457565b85840361245f565b60019150509392505050565b61dead81565b60006012905090565b60006110f161105c612457565b84846001600061106a612457565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ec9190614356565b61245f565b6001905092915050565b611103612457565b73ffffffffffffffffffffffffffffffffffffffff16611121611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e90614129565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de906143f8565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90614464565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112919190613f11565b60206040518083038186803b1580156112a957600080fd5b505afa1580156112bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e19190614499565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b815260040161131e9291906144c6565b602060405180830381600087803b15801561133857600080fd5b505af115801561134c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113709190614504565b50505050565b61137e612457565b73ffffffffffffffffffffffffffffffffffffffff1661139c611a9c565b73ffffffffffffffffffffffffffffffffffffffff16146113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e990614129565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161142d9190613f11565b60206040518083038186803b15801561144557600080fd5b505afa158015611459573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061147d9190614499565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016114ba9291906144c6565b602060405180830381600087803b1580156114d457600080fd5b505af11580156114e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150c9190614504565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611553573d6000803e3d6000fd5b5050565b61155f612457565b73ffffffffffffffffffffffffffffffffffffffff1661157d611a9c565b73ffffffffffffffffffffffffffffffffffffffff16146115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90614129565b60405180910390fd5b81601181905550806012819055506012546011546115f19190614356565b6010819055506064600d54111561160757600080fd5b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6116a0612457565b73ffffffffffffffffffffffffffffffffffffffff166116be611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b90614129565b60405180910390fd5b81600e8190555080600f81905550600f54600e546117329190614356565b600d81905550600a600d54111561177e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117759061457d565b60405180910390fd5b5050565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117eb612457565b73ffffffffffffffffffffffffffffffffffffffff16611809611a9c565b73ffffffffffffffffffffffffffffffffffffffff161461185f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185690614129565b60405180910390fd5b611869600061326a565b565b6000611875612457565b73ffffffffffffffffffffffffffffffffffffffff16611893611a9c565b73ffffffffffffffffffffffffffffffffffffffff16146118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e090614129565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b611913612457565b73ffffffffffffffffffffffffffffffffffffffff16611931611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90614129565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600f5481565b6119f0612457565b73ffffffffffffffffffffffffffffffffffffffff16611a0e611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90614129565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b611afa612457565b73ffffffffffffffffffffffffffffffffffffffff16611b18611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614611b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6590614129565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611b9a906140ab565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc6906140ab565b8015611c135780601f10611be857610100808354040283529160200191611c13565b820191906000526020600020905b815481529060010190602001808311611bf657829003601f168201915b5050505050905090565b611c25612457565b73ffffffffffffffffffffffffffffffffffffffff16611c43611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9090614129565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f9061460f565b60405180910390fd5b611d328282613330565b5050565b60145481565b60008060016000611d4b612457565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff906146a1565b60405180910390fd5b611e1c611e13612457565b8585840361245f565b600191505092915050565b6000611e3b611e34612457565b848461262a565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611e80612457565b73ffffffffffffffffffffffffffffffffffffffff16611e9e611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb90614129565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f919190613d96565b60405180910390a25050565b611fa5612457565b73ffffffffffffffffffffffffffffffffffffffff16611fc3611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614612019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201090614129565b60405180910390fd5b670de0b6b3a76400006103e8600561202f610ced565b6120399190614178565b6120439190614201565b61204d9190614201565b81101561208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690614733565b60405180910390fd5b670de0b6b3a7640000816120a39190614178565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b60006120cf612457565b73ffffffffffffffffffffffffffffffffffffffff166120ed611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90614129565b60405180910390fd5b620186a06001612151610ced565b61215b9190614178565b6121659190614201565b8210156121a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219e906147c5565b60405180910390fd5b6103e860086121b4610ced565b6121be9190614178565b6121c89190614201565b82111561220a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220190614857565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b60006122b7612457565b73ffffffffffffffffffffffffffffffffffffffff166122d5611a9c565b73ffffffffffffffffffffffffffffffffffffffff161461232b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232290614129565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600e5481565b61235b612457565b73ffffffffffffffffffffffffffffffffffffffff16612379611a9c565b73ffffffffffffffffffffffffffffffffffffffff16146123cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c690614129565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561243f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612436906148e9565b60405180910390fd5b6124488161326a565b50565b60115481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c69061497b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561253f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253690614a0d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161261d9190613e67565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561269a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269190614a9f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561270a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270190614b31565b60405180910390fd5b60008114156127245761271f838360006133d1565b613265565b600a60009054906101000a900460ff1615612df357612741611a9c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127af575061277f611a9c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127e85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612822575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561283b5750600560149054906101000a900460ff16155b15612df257600a60019054906101000a900460ff1661293557601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128f55750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292b90614b9d565b60405180910390fd5b5b600c60009054906101000a900460ff1615612b0957612952611a9c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129d957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a3157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612b0857436001600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a839190614356565b10612ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aba90614c55565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bac5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c5357600754811115612bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bed90614ce7565b60405180910390fd5b600954612c028361179b565b82612c0d9190614356565b1115612c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4590614d53565b60405180910390fd5b612df1565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cf65750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d4557600754811115612d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3790614de5565b60405180910390fd5b612df0565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612def57600954612da28361179b565b82612dad9190614356565b1115612dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de590614d53565b60405180910390fd5b5b5b5b5b5b6000612dfe3061179b565b905060006008548210159050808015612e235750600a60029054906101000a900460ff165b8015612e3c5750600560149054906101000a900460ff16155b8015612e925750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ee85750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f3e5750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f82576001600560146101000a81548160ff021916908315150217905550612f66613652565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130385750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561304257600090505b6000811561325557601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130a557506000601054115b1561313f576130d260646130c46010548861385f90919063ffffffff16565b61387590919063ffffffff16565b9050601054601154826130e59190614178565b6130ef9190614201565b601360008282546131009190614356565b92505081905550601054601254826131189190614178565b6131229190614201565b601460008282546131339190614356565b92505081905550613231565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561319a57506000600d54115b15613230576131c760646131b9600d548861385f90919063ffffffff16565b61387590919063ffffffff16565b9050600d54600e54826131da9190614178565b6131e49190614201565b601360008282546131f59190614356565b92505081905550600d54600f548261320d9190614178565b6132179190614201565b601460008282546132289190614356565b925050819055505b5b6000811115613246576132458730836133d1565b5b80856132529190614e05565b94505b6132608787876133d1565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343890614a9f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a890614b31565b60405180910390fd5b6134bc83838361388b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353990614eab565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135d59190614356565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516136399190613e67565b60405180910390a361364c848484613890565b50505050565b600061365d3061179b565b905060006014546013546136719190614356565b90506000808314806136835750600082145b156136905750505061385d565b601460085461369f9190614178565b8311156136b85760146008546136b59190614178565b92505b6000600283601354866136cb9190614178565b6136d59190614201565b6136df9190614201565b905060006136f6828661389590919063ffffffff16565b90506000479050613706826138ab565b600061371b824761389590919063ffffffff16565b90506000613746876137386014548561385f90919063ffffffff16565b61387590919063ffffffff16565b9050600081836137569190614e05565b905060006013819055506000601481905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516137ae90614efc565b60006040518083038185875af1925050503d80600081146137eb576040519150601f19603f3d011682016040523d82523d6000602084013e6137f0565b606091505b5050809750506000861180156138065750600081115b15613853576138158682613af7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260135460405161384a93929190614f11565b60405180910390a15b5050505050505050505b565b6000818361386d9190614178565b905092915050565b600081836138839190614201565b905092915050565b505050565b505050565b600081836138a39190614e05565b905092915050565b6000600267ffffffffffffffff8111156138c8576138c7614f48565b5b6040519080825280602002602001820160405280156138f65781602001602082028036833780820191505090505b509050308160008151811061390e5761390d614f77565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156139ae57600080fd5b505afa1580156139c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139e69190614fbb565b816001815181106139fa576139f9614f77565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a5f307f00000000000000000000000000000000000000000000000000000000000000008461245f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613ac19594939291906150e1565b600060405180830381600087803b158015613adb57600080fd5b505af1158015613aef573d6000803e3d6000fd5b505050505050565b613b22307f00000000000000000000000000000000000000000000000000000000000000008461245f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613b6c611a9c565b426040518863ffffffff1660e01b8152600401613b8e9695949392919061513b565b6060604051808303818588803b158015613ba757600080fd5b505af1158015613bbb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613be0919061519c565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c21578082015181840152602081019050613c06565b83811115613c30576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c5282613be7565b613c5c8185613bf2565b9350613c6c818560208601613c03565b613c7581613c36565b840191505092915050565b60006020820190508181036000830152613c9a8184613c47565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613cd282613ca7565b9050919050565b613ce281613cc7565b8114613ced57600080fd5b50565b600081359050613cff81613cd9565b92915050565b6000819050919050565b613d1881613d05565b8114613d2357600080fd5b50565b600081359050613d3581613d0f565b92915050565b60008060408385031215613d5257613d51613ca2565b5b6000613d6085828601613cf0565b9250506020613d7185828601613d26565b9150509250929050565b60008115159050919050565b613d9081613d7b565b82525050565b6000602082019050613dab6000830184613d87565b92915050565b600060208284031215613dc757613dc6613ca2565b5b6000613dd584828501613cf0565b91505092915050565b6000819050919050565b6000613e03613dfe613df984613ca7565b613dde565b613ca7565b9050919050565b6000613e1582613de8565b9050919050565b6000613e2782613e0a565b9050919050565b613e3781613e1c565b82525050565b6000602082019050613e526000830184613e2e565b92915050565b613e6181613d05565b82525050565b6000602082019050613e7c6000830184613e58565b92915050565b600060208284031215613e9857613e97613ca2565b5b6000613ea684828501613d26565b91505092915050565b600080600060608486031215613ec857613ec7613ca2565b5b6000613ed686828701613cf0565b9350506020613ee786828701613cf0565b9250506040613ef886828701613d26565b9150509250925092565b613f0b81613cc7565b82525050565b6000602082019050613f266000830184613f02565b92915050565b600060ff82169050919050565b613f4281613f2c565b82525050565b6000602082019050613f5d6000830184613f39565b92915050565b60008060408385031215613f7a57613f79613ca2565b5b6000613f8885828601613cf0565b9250506020613f9985828601613cf0565b9150509250929050565b60008060408385031215613fba57613fb9613ca2565b5b6000613fc885828601613d26565b9250506020613fd985828601613d26565b9150509250929050565b613fec81613d7b565b8114613ff757600080fd5b50565b60008135905061400981613fe3565b92915050565b6000806040838503121561402657614025613ca2565b5b600061403485828601613cf0565b925050602061404585828601613ffa565b9150509250929050565b60006020828403121561406557614064613ca2565b5b600061407384828501613ffa565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140c357607f821691505b602082108114156140d7576140d661407c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614113602083613bf2565b915061411e826140dd565b602082019050919050565b6000602082019050818103600083015261414281614106565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061418382613d05565b915061418e83613d05565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141c7576141c6614149565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061420c82613d05565b915061421783613d05565b925082614227576142266141d2565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061428e602f83613bf2565b915061429982614232565b604082019050919050565b600060208201905081810360008301526142bd81614281565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614320602883613bf2565b915061432b826142c4565b604082019050919050565b6000602082019050818103600083015261434f81614313565b9050919050565b600061436182613d05565b915061436c83613d05565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143a1576143a0614149565b5b828201905092915050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b60006143e2601a83613bf2565b91506143ed826143ac565b602082019050919050565b60006020820190508181036000830152614411816143d5565b9050919050565b7f43616e2774207769746864726177206e617469766520746f6b656e7300000000600082015250565b600061444e601c83613bf2565b915061445982614418565b602082019050919050565b6000602082019050818103600083015261447d81614441565b9050919050565b60008151905061449381613d0f565b92915050565b6000602082840312156144af576144ae613ca2565b5b60006144bd84828501614484565b91505092915050565b60006040820190506144db6000830185613f02565b6144e86020830184613e58565b9392505050565b6000815190506144fe81613fe3565b92915050565b60006020828403121561451a57614519613ca2565b5b6000614528848285016144ef565b91505092915050565b7f4275792046656500000000000000000000000000000000000000000000000000600082015250565b6000614567600783613bf2565b915061457282614531565b602082019050919050565b600060208201905081810360008301526145968161455a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006145f9603983613bf2565b91506146048261459d565b604082019050919050565b60006020820190508181036000830152614628816145ec565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061468b602583613bf2565b91506146968261462f565b604082019050919050565b600060208201905081810360008301526146ba8161467e565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061471d602483613bf2565b9150614728826146c1565b604082019050919050565b6000602082019050818103600083015261474c81614710565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006147af603583613bf2565b91506147ba82614753565b604082019050919050565b600060208201905081810360008301526147de816147a2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e382520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614841603483613bf2565b915061484c826147e5565b604082019050919050565b6000602082019050818103600083015261487081614834565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006148d3602683613bf2565b91506148de82614877565b604082019050919050565b60006020820190508181036000830152614902816148c6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614965602483613bf2565b915061497082614909565b604082019050919050565b6000602082019050818103600083015261499481614958565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149f7602283613bf2565b9150614a028261499b565b604082019050919050565b60006020820190508181036000830152614a26816149ea565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a89602583613bf2565b9150614a9482614a2d565b604082019050919050565b60006020820190508181036000830152614ab881614a7c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b1b602383613bf2565b9150614b2682614abf565b604082019050919050565b60006020820190508181036000830152614b4a81614b0e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b87601683613bf2565b9150614b9282614b51565b602082019050919050565b60006020820190508181036000830152614bb681614b7a565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260208201527f6c6f636b7320616c6c6f7765642e000000000000000000000000000000000000604082015250565b6000614c3f604e83613bf2565b9150614c4a82614bbd565b606082019050919050565b60006020820190508181036000830152614c6e81614c32565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614cd1603583613bf2565b9150614cdc82614c75565b604082019050919050565b60006020820190508181036000830152614d0081614cc4565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614d3d601383613bf2565b9150614d4882614d07565b602082019050919050565b60006020820190508181036000830152614d6c81614d30565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614dcf603683613bf2565b9150614dda82614d73565b604082019050919050565b60006020820190508181036000830152614dfe81614dc2565b9050919050565b6000614e1082613d05565b9150614e1b83613d05565b925082821015614e2e57614e2d614149565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614e95602683613bf2565b9150614ea082614e39565b604082019050919050565b60006020820190508181036000830152614ec481614e88565b9050919050565b600081905092915050565b50565b6000614ee6600083614ecb565b9150614ef182614ed6565b600082019050919050565b6000614f0782614ed9565b9150819050919050565b6000606082019050614f266000830186613e58565b614f336020830185613e58565b614f406040830184613e58565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614fb581613cd9565b92915050565b600060208284031215614fd157614fd0613ca2565b5b6000614fdf84828501614fa6565b91505092915050565b6000819050919050565b600061500d61500861500384614fe8565b613dde565b613d05565b9050919050565b61501d81614ff2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61505881613cc7565b82525050565b600061506a838361504f565b60208301905092915050565b6000602082019050919050565b600061508e82615023565b615098818561502e565b93506150a38361503f565b8060005b838110156150d45781516150bb888261505e565b97506150c683615076565b9250506001810190506150a7565b5085935050505092915050565b600060a0820190506150f66000830188613e58565b6151036020830187615014565b81810360408301526151158186615083565b90506151246060830185613f02565b6151316080830184613e58565b9695505050505050565b600060c0820190506151506000830189613f02565b61515d6020830188613e58565b61516a6040830187615014565b6151776060830186615014565b6151846080830185613f02565b61519160a0830184613e58565b979650505050505050565b6000806000606084860312156151b5576151b4613ca2565b5b60006151c386828701614484565b93505060206151d486828701614484565b92505060406151e586828701614484565b915050925092509256fea2646970667358221220fdcf9f934d38e16c06b3e4028e61b55e9a3039409305c4e6d97f5d15f288577464736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80637bce5a0411610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b4f578063f2fde38b14610b7a578063f637434214610ba3578063f8b45b0514610bce576102ef565b8063dd62ed3e14610abc578063e2f4560514610af9578063e884f26014610b24576102ef565b8063c0246668146109ac578063c18bc195146109d5578063c876d0b9146109fe578063c8c8ebe414610a29578063d257b34f14610a54578063d85ba06314610a91576102ef565b806395d89b4111610149578063a457c2d711610123578063a457c2d7146108ca578063a9059cbb14610907578063b62496f514610944578063bbc0c74214610981576102ef565b806395d89b411461084b5780639a7a23d6146108765780639fccce321461089f576102ef565b80637bce5a041461075f5780638a8c523c1461078a5780638da5cb5b146107a15780638ea5220f146107cc57806392136913146107f7578063924de9b714610822576102ef565b80633aeac4e11161024f57806366ca9b831161020857806370a08231116101e257806370a08231146106b7578063715018a6146106f4578063751039fc1461070b5780637571336a14610736576102ef565b806366ca9b83146106385780636a486a8e146106615780636ddd17131461068c576102ef565b80633aeac4e11461053c5780633ccfd60b14610565578063410c5c251461057c57806349bd5a5e146105a55780634a62bb65146105d05780634fbee193146105fb576102ef565b80631a8145bb116102a15780631a8145bb14610418578063203e727e1461044357806323b872dd1461046c57806327c8f835146104a9578063313ce567146104d457806339509351146104ff576102ef565b806306fdde03146102f4578063095ea7b31461031f57806310d5de531461035c5780631694505e1461039957806318160ddd146103c45780631816467f146103ef576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309610bf9565b6040516103169190613c80565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190613d3b565b610c8b565b6040516103539190613d96565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190613db1565b610ca9565b6040516103909190613d96565b60405180910390f35b3480156103a557600080fd5b506103ae610cc9565b6040516103bb9190613e3d565b60405180910390f35b3480156103d057600080fd5b506103d9610ced565b6040516103e69190613e67565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190613db1565b610cf7565b005b34801561042457600080fd5b5061042d610e33565b60405161043a9190613e67565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190613e82565b610e39565b005b34801561047857600080fd5b50610493600480360381019061048e9190613eaf565b610f48565b6040516104a09190613d96565b60405180910390f35b3480156104b557600080fd5b506104be611040565b6040516104cb9190613f11565b60405180910390f35b3480156104e057600080fd5b506104e9611046565b6040516104f69190613f48565b60405180910390f35b34801561050b57600080fd5b5061052660048036038101906105219190613d3b565b61104f565b6040516105339190613d96565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e9190613f63565b6110fb565b005b34801561057157600080fd5b5061057a611376565b005b34801561058857600080fd5b506105a3600480360381019061059e9190613fa3565b611557565b005b3480156105b157600080fd5b506105ba61160b565b6040516105c79190613f11565b60405180910390f35b3480156105dc57600080fd5b506105e561162f565b6040516105f29190613d96565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613db1565b611642565b60405161062f9190613d96565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190613fa3565b611698565b005b34801561066d57600080fd5b50610676611782565b6040516106839190613e67565b60405180910390f35b34801561069857600080fd5b506106a1611788565b6040516106ae9190613d96565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d99190613db1565b61179b565b6040516106eb9190613e67565b60405180910390f35b34801561070057600080fd5b506107096117e3565b005b34801561071757600080fd5b5061072061186b565b60405161072d9190613d96565b60405180910390f35b34801561074257600080fd5b5061075d6004803603810190610758919061400f565b61190b565b005b34801561076b57600080fd5b506107746119e2565b6040516107819190613e67565b60405180910390f35b34801561079657600080fd5b5061079f6119e8565b005b3480156107ad57600080fd5b506107b6611a9c565b6040516107c39190613f11565b60405180910390f35b3480156107d857600080fd5b506107e1611ac6565b6040516107ee9190613f11565b60405180910390f35b34801561080357600080fd5b5061080c611aec565b6040516108199190613e67565b60405180910390f35b34801561082e57600080fd5b506108496004803603810190610844919061404f565b611af2565b005b34801561085757600080fd5b50610860611b8b565b60405161086d9190613c80565b60405180910390f35b34801561088257600080fd5b5061089d6004803603810190610898919061400f565b611c1d565b005b3480156108ab57600080fd5b506108b4611d36565b6040516108c19190613e67565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613d3b565b611d3c565b6040516108fe9190613d96565b60405180910390f35b34801561091357600080fd5b5061092e60048036038101906109299190613d3b565b611e27565b60405161093b9190613d96565b60405180910390f35b34801561095057600080fd5b5061096b60048036038101906109669190613db1565b611e45565b6040516109789190613d96565b60405180910390f35b34801561098d57600080fd5b50610996611e65565b6040516109a39190613d96565b60405180910390f35b3480156109b857600080fd5b506109d360048036038101906109ce919061400f565b611e78565b005b3480156109e157600080fd5b506109fc60048036038101906109f79190613e82565b611f9d565b005b348015610a0a57600080fd5b50610a136120ac565b604051610a209190613d96565b60405180910390f35b348015610a3557600080fd5b50610a3e6120bf565b604051610a4b9190613e67565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613e82565b6120c5565b604051610a889190613d96565b60405180910390f35b348015610a9d57600080fd5b50610aa661221a565b604051610ab39190613e67565b60405180910390f35b348015610ac857600080fd5b50610ae36004803603810190610ade9190613f63565b612220565b604051610af09190613e67565b60405180910390f35b348015610b0557600080fd5b50610b0e6122a7565b604051610b1b9190613e67565b60405180910390f35b348015610b3057600080fd5b50610b396122ad565b604051610b469190613d96565b60405180910390f35b348015610b5b57600080fd5b50610b6461234d565b604051610b719190613e67565b60405180910390f35b348015610b8657600080fd5b50610ba16004803603810190610b9c9190613db1565b612353565b005b348015610baf57600080fd5b50610bb861244b565b604051610bc59190613e67565b60405180910390f35b348015610bda57600080fd5b50610be3612451565b604051610bf09190613e67565b60405180910390f35b606060038054610c08906140ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610c34906140ab565b8015610c815780601f10610c5657610100808354040283529160200191610c81565b820191906000526020600020905b815481529060010190602001808311610c6457829003601f168201915b5050505050905090565b6000610c9f610c98612457565b848461245f565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610cff612457565b73ffffffffffffffffffffffffffffffffffffffff16610d1d611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90614129565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610e41612457565b73ffffffffffffffffffffffffffffffffffffffff16610e5f611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac90614129565b60405180910390fd5b670de0b6b3a76400006103e86001610ecb610ced565b610ed59190614178565b610edf9190614201565b610ee99190614201565b811015610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f22906142a4565b60405180910390fd5b670de0b6b3a764000081610f3f9190614178565b60078190555050565b6000610f5584848461262a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fa0612457565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790614336565b60405180910390fd5b6110348561102c612457565b85840361245f565b60019150509392505050565b61dead81565b60006012905090565b60006110f161105c612457565b84846001600061106a612457565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110ec9190614356565b61245f565b6001905092915050565b611103612457565b73ffffffffffffffffffffffffffffffffffffffff16611121611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e90614129565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de906143f8565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90614464565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112919190613f11565b60206040518083038186803b1580156112a957600080fd5b505afa1580156112bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e19190614499565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b815260040161131e9291906144c6565b602060405180830381600087803b15801561133857600080fd5b505af115801561134c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113709190614504565b50505050565b61137e612457565b73ffffffffffffffffffffffffffffffffffffffff1661139c611a9c565b73ffffffffffffffffffffffffffffffffffffffff16146113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e990614129565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161142d9190613f11565b60206040518083038186803b15801561144557600080fd5b505afa158015611459573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061147d9190614499565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016114ba9291906144c6565b602060405180830381600087803b1580156114d457600080fd5b505af11580156114e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150c9190614504565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611553573d6000803e3d6000fd5b5050565b61155f612457565b73ffffffffffffffffffffffffffffffffffffffff1661157d611a9c565b73ffffffffffffffffffffffffffffffffffffffff16146115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90614129565b60405180910390fd5b81601181905550806012819055506012546011546115f19190614356565b6010819055506064600d54111561160757600080fd5b5050565b7f000000000000000000000000bb6edb6d87049e6fcf3c7d66c3bd8a3a499dd5e481565b600a60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6116a0612457565b73ffffffffffffffffffffffffffffffffffffffff166116be611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b90614129565b60405180910390fd5b81600e8190555080600f81905550600f54600e546117329190614356565b600d81905550600a600d54111561177e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117759061457d565b60405180910390fd5b5050565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117eb612457565b73ffffffffffffffffffffffffffffffffffffffff16611809611a9c565b73ffffffffffffffffffffffffffffffffffffffff161461185f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185690614129565b60405180910390fd5b611869600061326a565b565b6000611875612457565b73ffffffffffffffffffffffffffffffffffffffff16611893611a9c565b73ffffffffffffffffffffffffffffffffffffffff16146118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e090614129565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b611913612457565b73ffffffffffffffffffffffffffffffffffffffff16611931611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90614129565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600f5481565b6119f0612457565b73ffffffffffffffffffffffffffffffffffffffff16611a0e611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90614129565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b611afa612457565b73ffffffffffffffffffffffffffffffffffffffff16611b18611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614611b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6590614129565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611b9a906140ab565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc6906140ab565b8015611c135780601f10611be857610100808354040283529160200191611c13565b820191906000526020600020905b815481529060010190602001808311611bf657829003601f168201915b5050505050905090565b611c25612457565b73ffffffffffffffffffffffffffffffffffffffff16611c43611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9090614129565b60405180910390fd5b7f000000000000000000000000bb6edb6d87049e6fcf3c7d66c3bd8a3a499dd5e473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1f9061460f565b60405180910390fd5b611d328282613330565b5050565b60145481565b60008060016000611d4b612457565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff906146a1565b60405180910390fd5b611e1c611e13612457565b8585840361245f565b600191505092915050565b6000611e3b611e34612457565b848461262a565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611e80612457565b73ffffffffffffffffffffffffffffffffffffffff16611e9e611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb90614129565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f919190613d96565b60405180910390a25050565b611fa5612457565b73ffffffffffffffffffffffffffffffffffffffff16611fc3611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614612019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201090614129565b60405180910390fd5b670de0b6b3a76400006103e8600561202f610ced565b6120399190614178565b6120439190614201565b61204d9190614201565b81101561208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690614733565b60405180910390fd5b670de0b6b3a7640000816120a39190614178565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b60006120cf612457565b73ffffffffffffffffffffffffffffffffffffffff166120ed611a9c565b73ffffffffffffffffffffffffffffffffffffffff1614612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90614129565b60405180910390fd5b620186a06001612151610ced565b61215b9190614178565b6121659190614201565b8210156121a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219e906147c5565b60405180910390fd5b6103e860086121b4610ced565b6121be9190614178565b6121c89190614201565b82111561220a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220190614857565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b60006122b7612457565b73ffffffffffffffffffffffffffffffffffffffff166122d5611a9c565b73ffffffffffffffffffffffffffffffffffffffff161461232b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232290614129565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600e5481565b61235b612457565b73ffffffffffffffffffffffffffffffffffffffff16612379611a9c565b73ffffffffffffffffffffffffffffffffffffffff16146123cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c690614129565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561243f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612436906148e9565b60405180910390fd5b6124488161326a565b50565b60115481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c69061497b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561253f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253690614a0d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161261d9190613e67565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561269a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269190614a9f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561270a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270190614b31565b60405180910390fd5b60008114156127245761271f838360006133d1565b613265565b600a60009054906101000a900460ff1615612df357612741611a9c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127af575061277f611a9c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127e85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612822575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561283b5750600560149054906101000a900460ff16155b15612df257600a60019054906101000a900460ff1661293557601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128f55750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292b90614b9d565b60405180910390fd5b5b600c60009054906101000a900460ff1615612b0957612952611a9c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129d957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a3157507f000000000000000000000000bb6edb6d87049e6fcf3c7d66c3bd8a3a499dd5e473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612b0857436001600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a839190614356565b10612ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aba90614c55565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bac5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c5357600754811115612bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bed90614ce7565b60405180910390fd5b600954612c028361179b565b82612c0d9190614356565b1115612c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4590614d53565b60405180910390fd5b612df1565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cf65750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d4557600754811115612d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3790614de5565b60405180910390fd5b612df0565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612def57600954612da28361179b565b82612dad9190614356565b1115612dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de590614d53565b60405180910390fd5b5b5b5b5b5b6000612dfe3061179b565b905060006008548210159050808015612e235750600a60029054906101000a900460ff165b8015612e3c5750600560149054906101000a900460ff16155b8015612e925750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ee85750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f3e5750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f82576001600560146101000a81548160ff021916908315150217905550612f66613652565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130385750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561304257600090505b6000811561325557601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130a557506000601054115b1561313f576130d260646130c46010548861385f90919063ffffffff16565b61387590919063ffffffff16565b9050601054601154826130e59190614178565b6130ef9190614201565b601360008282546131009190614356565b92505081905550601054601254826131189190614178565b6131229190614201565b601460008282546131339190614356565b92505081905550613231565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561319a57506000600d54115b15613230576131c760646131b9600d548861385f90919063ffffffff16565b61387590919063ffffffff16565b9050600d54600e54826131da9190614178565b6131e49190614201565b601360008282546131f59190614356565b92505081905550600d54600f548261320d9190614178565b6132179190614201565b601460008282546132289190614356565b925050819055505b5b6000811115613246576132458730836133d1565b5b80856132529190614e05565b94505b6132608787876133d1565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343890614a9f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a890614b31565b60405180910390fd5b6134bc83838361388b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353990614eab565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135d59190614356565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516136399190613e67565b60405180910390a361364c848484613890565b50505050565b600061365d3061179b565b905060006014546013546136719190614356565b90506000808314806136835750600082145b156136905750505061385d565b601460085461369f9190614178565b8311156136b85760146008546136b59190614178565b92505b6000600283601354866136cb9190614178565b6136d59190614201565b6136df9190614201565b905060006136f6828661389590919063ffffffff16565b90506000479050613706826138ab565b600061371b824761389590919063ffffffff16565b90506000613746876137386014548561385f90919063ffffffff16565b61387590919063ffffffff16565b9050600081836137569190614e05565b905060006013819055506000601481905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516137ae90614efc565b60006040518083038185875af1925050503d80600081146137eb576040519150601f19603f3d011682016040523d82523d6000602084013e6137f0565b606091505b5050809750506000861180156138065750600081115b15613853576138158682613af7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260135460405161384a93929190614f11565b60405180910390a15b5050505050505050505b565b6000818361386d9190614178565b905092915050565b600081836138839190614201565b905092915050565b505050565b505050565b600081836138a39190614e05565b905092915050565b6000600267ffffffffffffffff8111156138c8576138c7614f48565b5b6040519080825280602002602001820160405280156138f65781602001602082028036833780820191505090505b509050308160008151811061390e5761390d614f77565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156139ae57600080fd5b505afa1580156139c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139e69190614fbb565b816001815181106139fa576139f9614f77565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a5f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461245f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613ac19594939291906150e1565b600060405180830381600087803b158015613adb57600080fd5b505af1158015613aef573d6000803e3d6000fd5b505050505050565b613b22307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461245f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613b6c611a9c565b426040518863ffffffff1660e01b8152600401613b8e9695949392919061513b565b6060604051808303818588803b158015613ba757600080fd5b505af1158015613bbb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613be0919061519c565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c21578082015181840152602081019050613c06565b83811115613c30576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c5282613be7565b613c5c8185613bf2565b9350613c6c818560208601613c03565b613c7581613c36565b840191505092915050565b60006020820190508181036000830152613c9a8184613c47565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613cd282613ca7565b9050919050565b613ce281613cc7565b8114613ced57600080fd5b50565b600081359050613cff81613cd9565b92915050565b6000819050919050565b613d1881613d05565b8114613d2357600080fd5b50565b600081359050613d3581613d0f565b92915050565b60008060408385031215613d5257613d51613ca2565b5b6000613d6085828601613cf0565b9250506020613d7185828601613d26565b9150509250929050565b60008115159050919050565b613d9081613d7b565b82525050565b6000602082019050613dab6000830184613d87565b92915050565b600060208284031215613dc757613dc6613ca2565b5b6000613dd584828501613cf0565b91505092915050565b6000819050919050565b6000613e03613dfe613df984613ca7565b613dde565b613ca7565b9050919050565b6000613e1582613de8565b9050919050565b6000613e2782613e0a565b9050919050565b613e3781613e1c565b82525050565b6000602082019050613e526000830184613e2e565b92915050565b613e6181613d05565b82525050565b6000602082019050613e7c6000830184613e58565b92915050565b600060208284031215613e9857613e97613ca2565b5b6000613ea684828501613d26565b91505092915050565b600080600060608486031215613ec857613ec7613ca2565b5b6000613ed686828701613cf0565b9350506020613ee786828701613cf0565b9250506040613ef886828701613d26565b9150509250925092565b613f0b81613cc7565b82525050565b6000602082019050613f266000830184613f02565b92915050565b600060ff82169050919050565b613f4281613f2c565b82525050565b6000602082019050613f5d6000830184613f39565b92915050565b60008060408385031215613f7a57613f79613ca2565b5b6000613f8885828601613cf0565b9250506020613f9985828601613cf0565b9150509250929050565b60008060408385031215613fba57613fb9613ca2565b5b6000613fc885828601613d26565b9250506020613fd985828601613d26565b9150509250929050565b613fec81613d7b565b8114613ff757600080fd5b50565b60008135905061400981613fe3565b92915050565b6000806040838503121561402657614025613ca2565b5b600061403485828601613cf0565b925050602061404585828601613ffa565b9150509250929050565b60006020828403121561406557614064613ca2565b5b600061407384828501613ffa565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140c357607f821691505b602082108114156140d7576140d661407c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614113602083613bf2565b915061411e826140dd565b602082019050919050565b6000602082019050818103600083015261414281614106565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061418382613d05565b915061418e83613d05565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141c7576141c6614149565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061420c82613d05565b915061421783613d05565b925082614227576142266141d2565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061428e602f83613bf2565b915061429982614232565b604082019050919050565b600060208201905081810360008301526142bd81614281565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614320602883613bf2565b915061432b826142c4565b604082019050919050565b6000602082019050818103600083015261434f81614313565b9050919050565b600061436182613d05565b915061436c83613d05565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143a1576143a0614149565b5b828201905092915050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b60006143e2601a83613bf2565b91506143ed826143ac565b602082019050919050565b60006020820190508181036000830152614411816143d5565b9050919050565b7f43616e2774207769746864726177206e617469766520746f6b656e7300000000600082015250565b600061444e601c83613bf2565b915061445982614418565b602082019050919050565b6000602082019050818103600083015261447d81614441565b9050919050565b60008151905061449381613d0f565b92915050565b6000602082840312156144af576144ae613ca2565b5b60006144bd84828501614484565b91505092915050565b60006040820190506144db6000830185613f02565b6144e86020830184613e58565b9392505050565b6000815190506144fe81613fe3565b92915050565b60006020828403121561451a57614519613ca2565b5b6000614528848285016144ef565b91505092915050565b7f4275792046656500000000000000000000000000000000000000000000000000600082015250565b6000614567600783613bf2565b915061457282614531565b602082019050919050565b600060208201905081810360008301526145968161455a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006145f9603983613bf2565b91506146048261459d565b604082019050919050565b60006020820190508181036000830152614628816145ec565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061468b602583613bf2565b91506146968261462f565b604082019050919050565b600060208201905081810360008301526146ba8161467e565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061471d602483613bf2565b9150614728826146c1565b604082019050919050565b6000602082019050818103600083015261474c81614710565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006147af603583613bf2565b91506147ba82614753565b604082019050919050565b600060208201905081810360008301526147de816147a2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e382520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614841603483613bf2565b915061484c826147e5565b604082019050919050565b6000602082019050818103600083015261487081614834565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006148d3602683613bf2565b91506148de82614877565b604082019050919050565b60006020820190508181036000830152614902816148c6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614965602483613bf2565b915061497082614909565b604082019050919050565b6000602082019050818103600083015261499481614958565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149f7602283613bf2565b9150614a028261499b565b604082019050919050565b60006020820190508181036000830152614a26816149ea565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a89602583613bf2565b9150614a9482614a2d565b604082019050919050565b60006020820190508181036000830152614ab881614a7c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b1b602383613bf2565b9150614b2682614abf565b604082019050919050565b60006020820190508181036000830152614b4a81614b0e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b87601683613bf2565b9150614b9282614b51565b602082019050919050565b60006020820190508181036000830152614bb681614b7a565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260208201527f6c6f636b7320616c6c6f7765642e000000000000000000000000000000000000604082015250565b6000614c3f604e83613bf2565b9150614c4a82614bbd565b606082019050919050565b60006020820190508181036000830152614c6e81614c32565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614cd1603583613bf2565b9150614cdc82614c75565b604082019050919050565b60006020820190508181036000830152614d0081614cc4565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614d3d601383613bf2565b9150614d4882614d07565b602082019050919050565b60006020820190508181036000830152614d6c81614d30565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614dcf603683613bf2565b9150614dda82614d73565b604082019050919050565b60006020820190508181036000830152614dfe81614dc2565b9050919050565b6000614e1082613d05565b9150614e1b83613d05565b925082821015614e2e57614e2d614149565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614e95602683613bf2565b9150614ea082614e39565b604082019050919050565b60006020820190508181036000830152614ec481614e88565b9050919050565b600081905092915050565b50565b6000614ee6600083614ecb565b9150614ef182614ed6565b600082019050919050565b6000614f0782614ed9565b9150819050919050565b6000606082019050614f266000830186613e58565b614f336020830185613e58565b614f406040830184613e58565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614fb581613cd9565b92915050565b600060208284031215614fd157614fd0613ca2565b5b6000614fdf84828501614fa6565b91505092915050565b6000819050919050565b600061500d61500861500384614fe8565b613dde565b613d05565b9050919050565b61501d81614ff2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61505881613cc7565b82525050565b600061506a838361504f565b60208301905092915050565b6000602082019050919050565b600061508e82615023565b615098818561502e565b93506150a38361503f565b8060005b838110156150d45781516150bb888261505e565b97506150c683615076565b9250506001810190506150a7565b5085935050505092915050565b600060a0820190506150f66000830188613e58565b6151036020830187615014565b81810360408301526151158186615083565b90506151246060830185613f02565b6151316080830184613e58565b9695505050505050565b600060c0820190506151506000830189613f02565b61515d6020830188613e58565b61516a6040830187615014565b6151776060830186615014565b6151846080830185613f02565b61519160a0830184613e58565b979650505050505050565b6000806000606084860312156151b5576151b4613ca2565b5b60006151c386828701614484565b93505060206151d486828701614484565b92505060406151e586828701614484565b915050925092509256fea2646970667358221220fdcf9f934d38e16c06b3e4028e61b55e9a3039409305c4e6d97f5d15f288577464736f6c63430008090033

Deployed Bytecode Sourcemap

29455:15527:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8559:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10726:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30662:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29533:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9679:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36917:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30446:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34673:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11377:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29636:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9521:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12278:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44619:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44365:246;;;;;;;;;;;;;:::i;:::-;;35912:299;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29591:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29876:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37082:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35591:313;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30333:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29956:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9850:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2076:103;;;;;;;;;;;;;:::i;:::-;;33777:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35220:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30294:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33613:112;;;;;;;;;;;;;:::i;:::-;;1425:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29728:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30406:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35483:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8778:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36409:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30486:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12996:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10190:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30883:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29916:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36219:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34956:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30174:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29761:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34168:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30223:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10428:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29803:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33959:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30257:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2334:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30368:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29843:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8559:100;8613:13;8646:5;8639:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8559:100;:::o;10726:169::-;10809:4;10826:39;10835:12;:10;:12::i;:::-;10849:7;10858:6;10826:8;:39::i;:::-;10883:4;10876:11;;10726:169;;;;:::o;30662:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;29533:51::-;;;:::o;9679:108::-;9740:7;9767:12;;9760:19;;9679:108;:::o;36917:157::-;1656:12;:10;:12::i;:::-;1645:23;;:7;:5;:7::i;:::-;:23;;;1637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37024:9:::1;;;;;;;;;;;36996:38;;37013:9;36996:38;;;;;;;;;;;;37057:9;37045;;:21;;;;;;;;;;;;;;;;;;36917:157:::0;:::o;30446:33::-;;;;:::o;34673:275::-;1656:12;:10;:12::i;:::-;1645:23;;:7;:5;:7::i;:::-;:23;;;1637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34810:4:::1;34802;34797:1;34781:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34780:26;;;;:::i;:::-;34779:35;;;;:::i;:::-;34769:6;:45;;34747:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;34933:6;34923;:17;;;;:::i;:::-;34900:20;:40;;;;34673:275:::0;:::o;11377:492::-;11517:4;11534:36;11544:6;11552:9;11563:6;11534:9;:36::i;:::-;11583:24;11610:11;:19;11622:6;11610:19;;;;;;;;;;;;;;;:33;11630:12;:10;:12::i;:::-;11610:33;;;;;;;;;;;;;;;;11583:60;;11682:6;11662:16;:26;;11654:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11769:57;11778:6;11786:12;:10;:12::i;:::-;11819:6;11800:16;:25;11769:8;:57::i;:::-;11857:4;11850:11;;;11377:492;;;;;:::o;29636:53::-;29682:6;29636:53;:::o;9521:93::-;9579:5;9604:2;9597:9;;9521:93;:::o;12278:215::-;12366:4;12383:80;12392:12;:10;:12::i;:::-;12406:7;12452:10;12415:11;:25;12427:12;:10;:12::i;:::-;12415:25;;;;;;;;;;;;;;;:34;12441:7;12415:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12383:8;:80::i;:::-;12481:4;12474:11;;12278:215;;;;:::o;44619:358::-;1656:12;:10;:12::i;:::-;1645:23;;:7;:5;:7::i;:::-;:23;;;1637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44727:1:::1;44709:20;;:6;:20;;;;44701:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;44797:4;44779:23;;:6;:23;;;;44771:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44846:24;44880:6;44873:24;;;44906:4;44873:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44846:66;;44930:6;44923:23;;;44947:3;44952:16;44923:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44690:287;44619:358:::0;;:::o;44365:246::-;1656:12;:10;:12::i;:::-;1645:23;;:7;:5;:7::i;:::-;:23;;;1637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44415:15:::1;44448:4;44433:31;;;44473:4;44433:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44415:64;;44505:4;44490:30;;;44521:10;44533:7;44490:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44560:10;44552:28;;:51;44581:21;44552:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;44404:207;44365:246::o:0;35912:299::-;1656:12;:10;:12::i;:::-;1645:23;;:7;:5;:7::i;:::-;:23;;;1637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36046:13:::1;36027:16;:32;;;;36089:13;36070:16;:32;;;;36148:16;;36129;;:35;;;;:::i;:::-;36113:13;:51;;;;36199:3;36183:12;;:19;;36175:28;;;::::0;::::1;;35912:299:::0;;:::o;29591:38::-;;;:::o;29876:33::-;;;;;;;;;;;;;:::o;37082:126::-;37148:4;37172:19;:28;37192:7;37172:28;;;;;;;;;;;;;;;;;;;;;;;;;37165:35;;37082:126;;;:::o;35591:313::-;1656:12;:10;:12::i;:::-;1645:23;;:7;:5;:7::i;:::-;:23;;;1637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35733:13:::1;35715:15;:31;;;;35775:13;35757:15;:31;;;;35832:15;;35814;;:33;;;;:::i;:::-;35799:12;:48;;;;35882:2;35866:12;;:18;;35858:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;35591:313:::0;;:::o;30333:28::-;;;;:::o;29956:31::-;;;;;;;;;;;;;:::o;9850:127::-;9924:7;9951:9;:18;9961:7;9951:18;;;;;;;;;;;;;;;;9944:25;;9850:127;;;:::o;2076:103::-;1656:12;:10;:12::i;:::-;1645:23;;:7;:5;:7::i;:::-;:23;;;1637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2141:30:::1;2168:1;2141:18;:30::i;:::-;2076:103::o:0;33777:121::-;33829:4;1656:12;:10;:12::i;:::-;1645:23;;:7;:5;:7::i;:::-;:23;;;1637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33863:5:::1;33846:14;;:22;;;;;;;;;;;;;;;;;;33886:4;33879:11;;33777:121:::0;:::o;35220:167::-;1656:12;:10;:12::i;:::-;1645:23;;:7;:5;:7::i;:::-;:23;;;1637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35375:4:::1;35333:31;:39;35365:6;35333:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35220:167:::0;;:::o;30294:30::-;;;;:::o;33613:112::-;1656:12;:10;:12::i;:::-;1645:23;;:7;:5;:7::i;:::-;:23;;;1637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33684:4:::1;33668:13;;:20;;;;;;;;;;;;;;;;;;33713:4;33699:11;;:18;;;;;;;;;;;;;;;;;;33613:112::o:0;1425:87::-;1471:7;1498:6;;;;;;;;;;;1491:13;;1425:87;:::o;29728:24::-;;;;;;;;;;;;;:::o;30406:31::-;;;;:::o;35483:100::-;1656:12;:10;:12::i;:::-;1645:23;;:7;:5;:7::i;:::-;:23;;;1637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35568:7:::1;35554:11;;:21;;;;;;;;;;;;;;;;;;35483:100:::0;:::o;8778:104::-;8834:13;8867:7;8860:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8778:104;:::o;36409:304::-;1656:12;:10;:12::i;:::-;1645:23;;:7;:5;:7::i;:::-;:23;;;1637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36553:13:::1;36545:21;;:4;:21;;;;36523:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;36664:41;36693:4;36699:5;36664:28;:41::i;:::-;36409:304:::0;;:::o;30486:27::-;;;;:::o;12996:413::-;13089:4;13106:24;13133:11;:25;13145:12;:10;:12::i;:::-;13133:25;;;;;;;;;;;;;;;:34;13159:7;13133:34;;;;;;;;;;;;;;;;13106:61;;13206:15;13186:16;:35;;13178:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13299:67;13308:12;:10;:12::i;:::-;13322:7;13350:15;13331:16;:34;13299:8;:67::i;:::-;13397:4;13390:11;;;12996:413;;;;:::o;10190:175::-;10276:4;10293:42;10303:12;:10;:12::i;:::-;10317:9;10328:6;10293:9;:42::i;:::-;10353:4;10346:11;;10190:175;;;;:::o;30883:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;29916:33::-;;;;;;;;;;;;;:::o;36219:182::-;1656:12;:10;:12::i;:::-;1645:23;;:7;:5;:7::i;:::-;:23;;;1637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36335:8:::1;36304:19;:28;36324:7;36304:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36375:7;36359:34;;;36384:8;36359:34;;;;;;:::i;:::-;;;;;;;;36219:182:::0;;:::o;34956:256::-;1656:12;:10;:12::i;:::-;1645:23;;:7;:5;:7::i;:::-;:23;;;1637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35096:4:::1;35088;35083:1;35067:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35066:26;;;;:::i;:::-;35065:35;;;;:::i;:::-;35055:6;:45;;35033:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;35197:6;35187;:17;;;;:::i;:::-;35175:9;:29;;;;34956:256:::0;:::o;30174:40::-;;;;;;;;;;;;;:::o;29761:35::-;;;;:::o;34168:497::-;34276:4;1656:12;:10;:12::i;:::-;1645:23;;:7;:5;:7::i;:::-;:23;;;1637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34355:6:::1;34350:1;34334:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34333:28;;;;:::i;:::-;34320:9;:41;;34298:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;34510:4;34505:1;34489:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34488:26;;;;:::i;:::-;34475:9;:39;;34453:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;34626:9;34605:18;:30;;;;34653:4;34646:11;;34168:497:::0;;;:::o;30223:27::-;;;;:::o;10428:151::-;10517:7;10544:11;:18;10556:5;10544:18;;;;;;;;;;;;;;;:27;10563:7;10544:27;;;;;;;;;;;;;;;;10537:34;;10428:151;;;;:::o;29803:33::-;;;;:::o;33959:135::-;34019:4;1656:12;:10;:12::i;:::-;1645:23;;:7;:5;:7::i;:::-;:23;;;1637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34059:5:::1;34036:20;;:28;;;;;;;;;;;;;;;;;;34082:4;34075:11;;33959:135:::0;:::o;30257:30::-;;;;:::o;2334:201::-;1656:12;:10;:12::i;:::-;1645:23;;:7;:5;:7::i;:::-;:23;;;1637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2443:1:::1;2423:22;;:8;:22;;;;2415:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2499:28;2518:8;2499:18;:28::i;:::-;2334:201:::0;:::o;30368:31::-;;;;:::o;29843:24::-;;;;:::o;289:98::-;342:7;369:10;362:17;;289:98;:::o;16680:380::-;16833:1;16816:19;;:5;:19;;;;16808:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16914:1;16895:21;;:7;:21;;;;16887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16998:6;16968:11;:18;16980:5;16968:18;;;;;;;;;;;;;;;:27;16987:7;16968:27;;;;;;;;;;;;;;;:36;;;;17036:7;17020:32;;17029:5;17020:32;;;17045:6;17020:32;;;;;;:::i;:::-;;;;;;;;16680:380;;;:::o;37216:4576::-;37364:1;37348:18;;:4;:18;;;;37340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37441:1;37427:16;;:2;:16;;;;37419:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37510:1;37500:6;:11;37496:93;;;37528:28;37544:4;37550:2;37554:1;37528:15;:28::i;:::-;37571:7;;37496:93;37605:14;;;;;;;;;;;37601:2496;;;37666:7;:5;:7::i;:::-;37658:15;;:4;:15;;;;:49;;;;;37700:7;:5;:7::i;:::-;37694:13;;:2;:13;;;;37658:49;:86;;;;;37742:1;37728:16;;:2;:16;;;;37658:86;:128;;;;;37779:6;37765:21;;:2;:21;;;;37658:128;:158;;;;;37808:8;;;;;;;;;;;37807:9;37658:158;37636:2450;;;37856:13;;;;;;;;;;;37851:223;;37928:19;:25;37948:4;37928:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37957:19;:23;37977:2;37957:23;;;;;;;;;;;;;;;;;;;;;;;;;37928:52;37894:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;37851:223;38230:20;;;;;;;;;;;38226:650;;;38311:7;:5;:7::i;:::-;38305:13;;:2;:13;;;;:72;;;;;38361:15;38347:30;;:2;:30;;;;38305:72;:129;;;;;38420:13;38406:28;;:2;:28;;;;38305:129;38275:582;;;38602:12;38565:1;38523:28;:39;38552:9;38523:39;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:91;38485:267;;;;;;;;;;;;:::i;:::-;;;;;;;;;38821:12;38779:28;:39;38808:9;38779:39;;;;;;;;;;;;;;;:54;;;;38275:582;38226:650;38950:25;:31;38976:4;38950:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;39007:31;:35;39039:2;39007:35;;;;;;;;;;;;;;;;;;;;;;;;;39006:36;38950:92;38924:1147;;;39129:20;;39119:6;:30;;39085:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;39337:9;;39320:13;39330:2;39320:9;:13::i;:::-;39311:6;:22;;;;:::i;:::-;:35;;39277:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38924:1147;;;39515:25;:29;39541:2;39515:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;39570:31;:37;39602:4;39570:37;;;;;;;;;;;;;;;;;;;;;;;;;39569:38;39515:92;39489:582;;;39694:20;;39684:6;:30;;39650:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;39489:582;;;39851:31;:35;39883:2;39851:35;;;;;;;;;;;;;;;;;;;;;;;;;39846:225;;39971:9;;39954:13;39964:2;39954:9;:13::i;:::-;39945:6;:22;;;;:::i;:::-;:35;;39911:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39846:225;39489:582;38924:1147;37636:2450;37601:2496;40109:28;40140:24;40158:4;40140:9;:24::i;:::-;40109:55;;40177:12;40216:18;;40192:20;:42;;40177:57;;40265:7;:35;;;;;40289:11;;;;;;;;;;;40265:35;:61;;;;;40318:8;;;;;;;;;;;40317:9;40265:61;:110;;;;;40344:25;:31;40370:4;40344:31;;;;;;;;;;;;;;;;;;;;;;;;;40343:32;40265:110;:153;;;;;40393:19;:25;40413:4;40393:25;;;;;;;;;;;;;;;;;;;;;;;;;40392:26;40265:153;:194;;;;;40436:19;:23;40456:2;40436:23;;;;;;;;;;;;;;;;;;;;;;;;;40435:24;40265:194;40247:326;;;40497:4;40486:8;;:15;;;;;;;;;;;;;;;;;;40518:10;:8;:10::i;:::-;40556:5;40545:8;;:16;;;;;;;;;;;;;;;;;;40247:326;40585:12;40601:8;;;;;;;;;;;40600:9;40585:24;;40711:19;:25;40731:4;40711:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40740:19;:23;40760:2;40740:23;;;;;;;;;;;;;;;;;;;;;;;;;40711:52;40707:100;;;40790:5;40780:15;;40707:100;40819:12;40924:7;40920:819;;;40976:25;:29;41002:2;40976:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;41025:1;41009:13;;:17;40976:50;40972:618;;;41054:34;41084:3;41054:25;41065:13;;41054:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;41047:41;;41157:13;;41137:16;;41130:4;:23;;;;:::i;:::-;41129:41;;;;:::i;:::-;41107:18;;:63;;;;;;;:::i;:::-;;;;;;;;41233:13;;41213:16;;41206:4;:23;;;;:::i;:::-;41205:41;;;;:::i;:::-;41189:12;;:57;;;;;;;:::i;:::-;;;;;;;;40972:618;;;41308:25;:31;41334:4;41308:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41358:1;41343:12;;:16;41308:51;41304:286;;;41387:33;41416:3;41387:24;41398:12;;41387:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;41380:40;;41488:12;;41469:15;;41462:4;:22;;;;:::i;:::-;41461:39;;;;:::i;:::-;41439:18;;:61;;;;;;;:::i;:::-;;;;;;;;41562:12;;41543:15;;41536:4;:22;;;;:::i;:::-;41535:39;;;;:::i;:::-;41519:12;;:55;;;;;;;:::i;:::-;;;;;;;;41304:286;40972:618;41617:1;41610:4;:8;41606:91;;;41639:42;41655:4;41669;41676;41639:15;:42::i;:::-;41606:91;41723:4;41713:14;;;;;:::i;:::-;;;40920:819;41751:33;41767:4;41773:2;41777:6;41751:15;:33::i;:::-;37329:4463;;;;37216:4576;;;;:::o;2695:191::-;2769:16;2788:6;;;;;;;;;;;2769:25;;2814:8;2805:6;;:17;;;;;;;;;;;;;;;;;;2869:8;2838:40;;2859:8;2838:40;;;;;;;;;;;;2758:128;2695:191;:::o;36721:188::-;36838:5;36804:25;:31;36830:4;36804:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36895:5;36861:40;;36889:4;36861:40;;;;;;;;;;;;36721:188;;:::o;13899:733::-;14057:1;14039:20;;:6;:20;;;;14031:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14141:1;14120:23;;:9;:23;;;;14112:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14196:47;14217:6;14225:9;14236:6;14196:20;:47::i;:::-;14256:21;14280:9;:17;14290:6;14280:17;;;;;;;;;;;;;;;;14256:41;;14333:6;14316:13;:23;;14308:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14454:6;14438:13;:22;14418:9;:17;14428:6;14418:17;;;;;;;;;;;;;;;:42;;;;14506:6;14482:9;:20;14492:9;14482:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14547:9;14530:35;;14539:6;14530:35;;;14558:6;14530:35;;;;;;:::i;:::-;;;;;;;;14578:46;14598:6;14606:9;14617:6;14578:19;:46::i;:::-;14020:612;13899:733;;;:::o;42918:1439::-;42957:23;42983:24;43001:4;42983:9;:24::i;:::-;42957:50;;43018:25;43080:12;;43046:18;;:46;;;;:::i;:::-;43018:74;;43103:12;43151:1;43132:15;:20;:46;;;;43177:1;43156:17;:22;43132:46;43128:85;;;43195:7;;;;;43128:85;43268:2;43247:18;;:23;;;;:::i;:::-;43229:15;:41;43225:115;;;43326:2;43305:18;;:23;;;;:::i;:::-;43287:41;;43225:115;43401:23;43514:1;43481:17;43446:18;;43428:15;:36;;;;:::i;:::-;43427:71;;;;:::i;:::-;:88;;;;:::i;:::-;43401:114;;43526:26;43555:36;43575:15;43555;:19;;:36;;;;:::i;:::-;43526:65;;43604:25;43632:21;43604:49;;43666:36;43683:18;43666:16;:36::i;:::-;43715:18;43736:44;43762:17;43736:21;:25;;:44;;;;:::i;:::-;43715:65;;43793:17;43813:51;43846:17;43813:28;43828:12;;43813:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;43793:71;;43877:23;43916:9;43903:10;:22;;;;:::i;:::-;43877:48;;43959:1;43938:18;:22;;;;43986:1;43971:12;:16;;;;44022:9;;;;;;;;;;;44014:23;;44045:9;44014:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44000:59;;;;;44094:1;44076:15;:19;:42;;;;;44117:1;44099:15;:19;44076:42;44072:278;;;44135:46;44148:15;44165;44135:12;:46::i;:::-;44201:137;44234:18;44271:15;44305:18;;44201:137;;;;;;;;:::i;:::-;;;;;;;;44072:278;42946:1411;;;;;;;;;42918:1439;:::o;21812:98::-;21870:7;21901:1;21897;:5;;;;:::i;:::-;21890:12;;21812:98;;;;:::o;22211:::-;22269:7;22300:1;22296;:5;;;;:::i;:::-;22289:12;;22211:98;;;;:::o;17660:125::-;;;;:::o;18389:124::-;;;;:::o;21455:98::-;21513:7;21544:1;21540;:5;;;;:::i;:::-;21533:12;;21455:98;;;;:::o;41800:589::-;41926:21;41964:1;41950:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41926:40;;41995:4;41977;41982:1;41977:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42021:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42011:4;42016:1;42011:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42056:62;42073:4;42088:15;42106:11;42056:8;:62::i;:::-;42157:15;:66;;;42238:11;42264:1;42308:4;42335;42355:15;42157:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41855:534;41800:589;:::o;42397:513::-;42545:62;42562:4;42577:15;42595:11;42545:8;:62::i;:::-;42650:15;:31;;;42689:9;42722:4;42742:11;42768:1;42811;42854:7;:5;:7::i;:::-;42876:15;42650:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42397:513;;:::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:474::-;6969:6;6977;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7123:117;7279:2;7305:53;7350:7;7341:6;7330:9;7326:22;7305:53;:::i;:::-;7295:63;;7250:118;6901:474;;;;;:::o;7381:::-;7449:6;7457;7506:2;7494:9;7485:7;7481:23;7477:32;7474:119;;;7512:79;;:::i;:::-;7474:119;7632:1;7657:53;7702:7;7693:6;7682:9;7678:22;7657:53;:::i;:::-;7647:63;;7603:117;7759:2;7785:53;7830:7;7821:6;7810:9;7806:22;7785:53;:::i;:::-;7775:63;;7730:118;7381:474;;;;;:::o;7861:116::-;7931:21;7946:5;7931:21;:::i;:::-;7924:5;7921:32;7911:60;;7967:1;7964;7957:12;7911:60;7861:116;:::o;7983:133::-;8026:5;8064:6;8051:20;8042:29;;8080:30;8104:5;8080:30;:::i;:::-;7983:133;;;;:::o;8122:468::-;8187:6;8195;8244:2;8232:9;8223:7;8219:23;8215:32;8212:119;;;8250:79;;:::i;:::-;8212:119;8370:1;8395:53;8440:7;8431:6;8420:9;8416:22;8395:53;:::i;:::-;8385:63;;8341:117;8497:2;8523:50;8565:7;8556:6;8545:9;8541:22;8523:50;:::i;:::-;8513:60;;8468:115;8122:468;;;;;:::o;8596:323::-;8652:6;8701:2;8689:9;8680:7;8676:23;8672:32;8669:119;;;8707:79;;:::i;:::-;8669:119;8827:1;8852:50;8894:7;8885:6;8874:9;8870:22;8852:50;:::i;:::-;8842:60;;8798:114;8596:323;;;;:::o;8925:180::-;8973:77;8970:1;8963:88;9070:4;9067:1;9060:15;9094:4;9091:1;9084:15;9111:320;9155:6;9192:1;9186:4;9182:12;9172:22;;9239:1;9233:4;9229:12;9260:18;9250:81;;9316:4;9308:6;9304:17;9294:27;;9250:81;9378:2;9370:6;9367:14;9347:18;9344:38;9341:84;;;9397:18;;:::i;:::-;9341:84;9162:269;9111:320;;;:::o;9437:182::-;9577:34;9573:1;9565:6;9561:14;9554:58;9437:182;:::o;9625:366::-;9767:3;9788:67;9852:2;9847:3;9788:67;:::i;:::-;9781:74;;9864:93;9953:3;9864:93;:::i;:::-;9982:2;9977:3;9973:12;9966:19;;9625:366;;;:::o;9997:419::-;10163:4;10201:2;10190:9;10186:18;10178:26;;10250:9;10244:4;10240:20;10236:1;10225:9;10221:17;10214:47;10278:131;10404:4;10278:131;:::i;:::-;10270:139;;9997:419;;;:::o;10422:180::-;10470:77;10467:1;10460:88;10567:4;10564:1;10557:15;10591:4;10588:1;10581:15;10608:348;10648:7;10671:20;10689:1;10671:20;:::i;:::-;10666:25;;10705:20;10723:1;10705:20;:::i;:::-;10700:25;;10893:1;10825:66;10821:74;10818:1;10815:81;10810:1;10803:9;10796:17;10792:105;10789:131;;;10900:18;;:::i;:::-;10789:131;10948:1;10945;10941:9;10930:20;;10608:348;;;;:::o;10962:180::-;11010:77;11007:1;11000:88;11107:4;11104:1;11097:15;11131:4;11128:1;11121:15;11148:185;11188:1;11205:20;11223:1;11205:20;:::i;:::-;11200:25;;11239:20;11257:1;11239:20;:::i;:::-;11234:25;;11278:1;11268:35;;11283:18;;:::i;:::-;11268:35;11325:1;11322;11318:9;11313:14;;11148:185;;;;:::o;11339:234::-;11479:34;11475:1;11467:6;11463:14;11456:58;11548:17;11543:2;11535:6;11531:15;11524:42;11339:234;:::o;11579:366::-;11721:3;11742:67;11806:2;11801:3;11742:67;:::i;:::-;11735:74;;11818:93;11907:3;11818:93;:::i;:::-;11936:2;11931:3;11927:12;11920:19;;11579:366;;;:::o;11951:419::-;12117:4;12155:2;12144:9;12140:18;12132:26;;12204:9;12198:4;12194:20;12190:1;12179:9;12175:17;12168:47;12232:131;12358:4;12232:131;:::i;:::-;12224:139;;11951:419;;;:::o;12376:227::-;12516:34;12512:1;12504:6;12500:14;12493:58;12585:10;12580:2;12572:6;12568:15;12561:35;12376:227;:::o;12609:366::-;12751:3;12772:67;12836:2;12831:3;12772:67;:::i;:::-;12765:74;;12848:93;12937:3;12848:93;:::i;:::-;12966:2;12961:3;12957:12;12950:19;;12609:366;;;:::o;12981:419::-;13147:4;13185:2;13174:9;13170:18;13162:26;;13234:9;13228:4;13224:20;13220:1;13209:9;13205:17;13198:47;13262:131;13388:4;13262:131;:::i;:::-;13254:139;;12981:419;;;:::o;13406:305::-;13446:3;13465:20;13483:1;13465:20;:::i;:::-;13460:25;;13499:20;13517:1;13499:20;:::i;:::-;13494:25;;13653:1;13585:66;13581:74;13578:1;13575:81;13572:107;;;13659:18;;:::i;:::-;13572:107;13703:1;13700;13696:9;13689:16;;13406:305;;;;:::o;13717:176::-;13857:28;13853:1;13845:6;13841:14;13834:52;13717:176;:::o;13899:366::-;14041:3;14062:67;14126:2;14121:3;14062:67;:::i;:::-;14055:74;;14138:93;14227:3;14138:93;:::i;:::-;14256:2;14251:3;14247:12;14240:19;;13899:366;;;:::o;14271:419::-;14437:4;14475:2;14464:9;14460:18;14452:26;;14524:9;14518:4;14514:20;14510:1;14499:9;14495:17;14488:47;14552:131;14678:4;14552:131;:::i;:::-;14544:139;;14271:419;;;:::o;14696:178::-;14836:30;14832:1;14824:6;14820:14;14813:54;14696:178;:::o;14880:366::-;15022:3;15043:67;15107:2;15102:3;15043:67;:::i;:::-;15036:74;;15119:93;15208:3;15119:93;:::i;:::-;15237:2;15232:3;15228:12;15221:19;;14880:366;;;:::o;15252:419::-;15418:4;15456:2;15445:9;15441:18;15433:26;;15505:9;15499:4;15495:20;15491:1;15480:9;15476:17;15469:47;15533:131;15659:4;15533:131;:::i;:::-;15525:139;;15252:419;;;:::o;15677:143::-;15734:5;15765:6;15759:13;15750:22;;15781:33;15808:5;15781:33;:::i;:::-;15677:143;;;;:::o;15826:351::-;15896:6;15945:2;15933:9;15924:7;15920:23;15916:32;15913:119;;;15951:79;;:::i;:::-;15913:119;16071:1;16096:64;16152:7;16143:6;16132:9;16128:22;16096:64;:::i;:::-;16086:74;;16042:128;15826:351;;;;:::o;16183:332::-;16304:4;16342:2;16331:9;16327:18;16319:26;;16355:71;16423:1;16412:9;16408:17;16399:6;16355:71;:::i;:::-;16436:72;16504:2;16493:9;16489:18;16480:6;16436:72;:::i;:::-;16183:332;;;;;:::o;16521:137::-;16575:5;16606:6;16600:13;16591:22;;16622:30;16646:5;16622:30;:::i;:::-;16521:137;;;;:::o;16664:345::-;16731:6;16780:2;16768:9;16759:7;16755:23;16751:32;16748:119;;;16786:79;;:::i;:::-;16748:119;16906:1;16931:61;16984:7;16975:6;16964:9;16960:22;16931:61;:::i;:::-;16921:71;;16877:125;16664:345;;;;:::o;17015:157::-;17155:9;17151:1;17143:6;17139:14;17132:33;17015:157;:::o;17178:365::-;17320:3;17341:66;17405:1;17400:3;17341:66;:::i;:::-;17334:73;;17416:93;17505:3;17416:93;:::i;:::-;17534:2;17529:3;17525:12;17518:19;;17178:365;;;:::o;17549:419::-;17715:4;17753:2;17742:9;17738:18;17730:26;;17802:9;17796:4;17792:20;17788:1;17777:9;17773:17;17766:47;17830:131;17956:4;17830:131;:::i;:::-;17822:139;;17549:419;;;:::o;17974:244::-;18114:34;18110:1;18102:6;18098:14;18091:58;18183:27;18178:2;18170:6;18166:15;18159:52;17974:244;:::o;18224:366::-;18366:3;18387:67;18451:2;18446:3;18387:67;:::i;:::-;18380:74;;18463:93;18552:3;18463:93;:::i;:::-;18581:2;18576:3;18572:12;18565:19;;18224:366;;;:::o;18596:419::-;18762:4;18800:2;18789:9;18785:18;18777:26;;18849:9;18843:4;18839:20;18835:1;18824:9;18820:17;18813:47;18877:131;19003:4;18877:131;:::i;:::-;18869:139;;18596:419;;;:::o;19021:224::-;19161:34;19157:1;19149:6;19145:14;19138:58;19230:7;19225:2;19217:6;19213:15;19206:32;19021:224;:::o;19251:366::-;19393:3;19414:67;19478:2;19473:3;19414:67;:::i;:::-;19407:74;;19490:93;19579:3;19490:93;:::i;:::-;19608:2;19603:3;19599:12;19592:19;;19251:366;;;:::o;19623:419::-;19789:4;19827:2;19816:9;19812:18;19804:26;;19876:9;19870:4;19866:20;19862:1;19851:9;19847:17;19840:47;19904:131;20030:4;19904:131;:::i;:::-;19896:139;;19623:419;;;:::o;20048:223::-;20188:34;20184:1;20176:6;20172:14;20165:58;20257:6;20252:2;20244:6;20240:15;20233:31;20048:223;:::o;20277:366::-;20419:3;20440:67;20504:2;20499:3;20440:67;:::i;:::-;20433:74;;20516:93;20605:3;20516:93;:::i;:::-;20634:2;20629:3;20625:12;20618:19;;20277:366;;;:::o;20649:419::-;20815:4;20853:2;20842:9;20838:18;20830:26;;20902:9;20896:4;20892:20;20888:1;20877:9;20873:17;20866:47;20930:131;21056:4;20930:131;:::i;:::-;20922:139;;20649:419;;;:::o;21074:240::-;21214:34;21210:1;21202:6;21198:14;21191:58;21283:23;21278:2;21270:6;21266:15;21259:48;21074:240;:::o;21320:366::-;21462:3;21483:67;21547:2;21542:3;21483:67;:::i;:::-;21476:74;;21559:93;21648:3;21559:93;:::i;:::-;21677:2;21672:3;21668:12;21661:19;;21320:366;;;:::o;21692:419::-;21858:4;21896:2;21885:9;21881:18;21873:26;;21945:9;21939:4;21935:20;21931:1;21920:9;21916:17;21909:47;21973:131;22099:4;21973:131;:::i;:::-;21965:139;;21692:419;;;:::o;22117:239::-;22257:34;22253:1;22245:6;22241:14;22234:58;22326:22;22321:2;22313:6;22309:15;22302:47;22117:239;:::o;22362:366::-;22504:3;22525:67;22589:2;22584:3;22525:67;:::i;:::-;22518:74;;22601:93;22690:3;22601:93;:::i;:::-;22719:2;22714:3;22710:12;22703:19;;22362:366;;;:::o;22734:419::-;22900:4;22938:2;22927:9;22923:18;22915:26;;22987:9;22981:4;22977:20;22973:1;22962:9;22958:17;22951:47;23015:131;23141:4;23015:131;:::i;:::-;23007:139;;22734:419;;;:::o;23159:225::-;23299:34;23295:1;23287:6;23283:14;23276:58;23368:8;23363:2;23355:6;23351:15;23344:33;23159:225;:::o;23390:366::-;23532:3;23553:67;23617:2;23612:3;23553:67;:::i;:::-;23546:74;;23629:93;23718:3;23629:93;:::i;:::-;23747:2;23742:3;23738:12;23731:19;;23390:366;;;:::o;23762:419::-;23928:4;23966:2;23955:9;23951:18;23943:26;;24015:9;24009:4;24005:20;24001:1;23990:9;23986:17;23979:47;24043:131;24169:4;24043:131;:::i;:::-;24035:139;;23762:419;;;:::o;24187:223::-;24327:34;24323:1;24315:6;24311:14;24304:58;24396:6;24391:2;24383:6;24379:15;24372:31;24187:223;:::o;24416:366::-;24558:3;24579:67;24643:2;24638:3;24579:67;:::i;:::-;24572:74;;24655:93;24744:3;24655:93;:::i;:::-;24773:2;24768:3;24764:12;24757:19;;24416:366;;;:::o;24788:419::-;24954:4;24992:2;24981:9;24977:18;24969:26;;25041:9;25035:4;25031:20;25027:1;25016:9;25012:17;25005:47;25069:131;25195:4;25069:131;:::i;:::-;25061:139;;24788:419;;;:::o;25213:221::-;25353:34;25349:1;25341:6;25337:14;25330:58;25422:4;25417:2;25409:6;25405:15;25398:29;25213:221;:::o;25440:366::-;25582:3;25603:67;25667:2;25662:3;25603:67;:::i;:::-;25596:74;;25679:93;25768:3;25679:93;:::i;:::-;25797:2;25792:3;25788:12;25781:19;;25440:366;;;:::o;25812:419::-;25978:4;26016:2;26005:9;26001:18;25993:26;;26065:9;26059:4;26055:20;26051:1;26040:9;26036:17;26029:47;26093:131;26219:4;26093:131;:::i;:::-;26085:139;;25812:419;;;:::o;26237:224::-;26377:34;26373:1;26365:6;26361:14;26354:58;26446:7;26441:2;26433:6;26429:15;26422:32;26237:224;:::o;26467:366::-;26609:3;26630:67;26694:2;26689:3;26630:67;:::i;:::-;26623:74;;26706:93;26795:3;26706:93;:::i;:::-;26824:2;26819:3;26815:12;26808:19;;26467:366;;;:::o;26839:419::-;27005:4;27043:2;27032:9;27028:18;27020:26;;27092:9;27086:4;27082:20;27078:1;27067:9;27063:17;27056:47;27120:131;27246:4;27120:131;:::i;:::-;27112:139;;26839:419;;;:::o;27264:222::-;27404:34;27400:1;27392:6;27388:14;27381:58;27473:5;27468:2;27460:6;27456:15;27449:30;27264:222;:::o;27492:366::-;27634:3;27655:67;27719:2;27714:3;27655:67;:::i;:::-;27648:74;;27731:93;27820:3;27731:93;:::i;:::-;27849:2;27844:3;27840:12;27833:19;;27492:366;;;:::o;27864:419::-;28030:4;28068:2;28057:9;28053:18;28045:26;;28117:9;28111:4;28107:20;28103:1;28092:9;28088:17;28081:47;28145:131;28271:4;28145:131;:::i;:::-;28137:139;;27864:419;;;:::o;28289:172::-;28429:24;28425:1;28417:6;28413:14;28406:48;28289:172;:::o;28467:366::-;28609:3;28630:67;28694:2;28689:3;28630:67;:::i;:::-;28623:74;;28706:93;28795:3;28706:93;:::i;:::-;28824:2;28819:3;28815:12;28808:19;;28467:366;;;:::o;28839:419::-;29005:4;29043:2;29032:9;29028:18;29020:26;;29092:9;29086:4;29082:20;29078:1;29067:9;29063:17;29056:47;29120:131;29246:4;29120:131;:::i;:::-;29112:139;;28839:419;;;:::o;29264:302::-;29404:34;29400:1;29392:6;29388:14;29381:58;29473:34;29468:2;29460:6;29456:15;29449:59;29542:16;29537:2;29529:6;29525:15;29518:41;29264:302;:::o;29572:366::-;29714:3;29735:67;29799:2;29794:3;29735:67;:::i;:::-;29728:74;;29811:93;29900:3;29811:93;:::i;:::-;29929:2;29924:3;29920:12;29913:19;;29572:366;;;:::o;29944:419::-;30110:4;30148:2;30137:9;30133:18;30125:26;;30197:9;30191:4;30187:20;30183:1;30172:9;30168:17;30161:47;30225:131;30351:4;30225:131;:::i;:::-;30217:139;;29944:419;;;:::o;30369:240::-;30509:34;30505:1;30497:6;30493:14;30486:58;30578:23;30573:2;30565:6;30561:15;30554:48;30369:240;:::o;30615:366::-;30757:3;30778:67;30842:2;30837:3;30778:67;:::i;:::-;30771:74;;30854:93;30943:3;30854:93;:::i;:::-;30972:2;30967:3;30963:12;30956:19;;30615:366;;;:::o;30987:419::-;31153:4;31191:2;31180:9;31176:18;31168:26;;31240:9;31234:4;31230:20;31226:1;31215:9;31211:17;31204:47;31268:131;31394:4;31268:131;:::i;:::-;31260:139;;30987:419;;;:::o;31412:169::-;31552:21;31548:1;31540:6;31536:14;31529:45;31412:169;:::o;31587:366::-;31729:3;31750:67;31814:2;31809:3;31750:67;:::i;:::-;31743:74;;31826:93;31915:3;31826:93;:::i;:::-;31944:2;31939:3;31935:12;31928:19;;31587:366;;;:::o;31959:419::-;32125:4;32163:2;32152:9;32148:18;32140:26;;32212:9;32206:4;32202:20;32198:1;32187:9;32183:17;32176:47;32240:131;32366:4;32240:131;:::i;:::-;32232:139;;31959:419;;;:::o;32384:241::-;32524:34;32520:1;32512:6;32508:14;32501:58;32593:24;32588:2;32580:6;32576:15;32569:49;32384:241;:::o;32631:366::-;32773:3;32794:67;32858:2;32853:3;32794:67;:::i;:::-;32787:74;;32870:93;32959:3;32870:93;:::i;:::-;32988:2;32983:3;32979:12;32972:19;;32631:366;;;:::o;33003:419::-;33169:4;33207:2;33196:9;33192:18;33184:26;;33256:9;33250:4;33246:20;33242:1;33231:9;33227:17;33220:47;33284:131;33410:4;33284:131;:::i;:::-;33276:139;;33003:419;;;:::o;33428:191::-;33468:4;33488:20;33506:1;33488:20;:::i;:::-;33483:25;;33522:20;33540:1;33522:20;:::i;:::-;33517:25;;33561:1;33558;33555:8;33552:34;;;33566:18;;:::i;:::-;33552:34;33611:1;33608;33604:9;33596:17;;33428:191;;;;:::o;33625:225::-;33765:34;33761:1;33753:6;33749:14;33742:58;33834:8;33829:2;33821:6;33817:15;33810:33;33625:225;:::o;33856:366::-;33998:3;34019:67;34083:2;34078:3;34019:67;:::i;:::-;34012:74;;34095:93;34184:3;34095:93;:::i;:::-;34213:2;34208:3;34204:12;34197:19;;33856:366;;;:::o;34228:419::-;34394:4;34432:2;34421:9;34417:18;34409:26;;34481:9;34475:4;34471:20;34467:1;34456:9;34452:17;34445:47;34509:131;34635:4;34509:131;:::i;:::-;34501:139;;34228:419;;;:::o;34653:147::-;34754:11;34791:3;34776:18;;34653:147;;;;:::o;34806:114::-;;:::o;34926:398::-;35085:3;35106:83;35187:1;35182:3;35106:83;:::i;:::-;35099:90;;35198:93;35287:3;35198:93;:::i;:::-;35316:1;35311:3;35307:11;35300:18;;34926:398;;;:::o;35330:379::-;35514:3;35536:147;35679:3;35536:147;:::i;:::-;35529:154;;35700:3;35693:10;;35330:379;;;:::o;35715:442::-;35864:4;35902:2;35891:9;35887:18;35879:26;;35915:71;35983:1;35972:9;35968:17;35959:6;35915:71;:::i;:::-;35996:72;36064:2;36053:9;36049:18;36040:6;35996:72;:::i;:::-;36078;36146:2;36135:9;36131:18;36122:6;36078:72;:::i;:::-;35715:442;;;;;;:::o;36163:180::-;36211:77;36208:1;36201:88;36308:4;36305:1;36298:15;36332:4;36329:1;36322:15;36349:180;36397:77;36394:1;36387:88;36494:4;36491:1;36484:15;36518:4;36515:1;36508:15;36535:143;36592:5;36623:6;36617:13;36608:22;;36639:33;36666:5;36639:33;:::i;:::-;36535:143;;;;:::o;36684:351::-;36754:6;36803:2;36791:9;36782:7;36778:23;36774:32;36771:119;;;36809:79;;:::i;:::-;36771:119;36929:1;36954:64;37010:7;37001:6;36990:9;36986:22;36954:64;:::i;:::-;36944:74;;36900:128;36684:351;;;;:::o;37041:85::-;37086:7;37115:5;37104:16;;37041:85;;;:::o;37132:158::-;37190:9;37223:61;37241:42;37250:32;37276:5;37250:32;:::i;:::-;37241:42;:::i;:::-;37223:61;:::i;:::-;37210:74;;37132:158;;;:::o;37296:147::-;37391:45;37430:5;37391:45;:::i;:::-;37386:3;37379:58;37296:147;;:::o;37449:114::-;37516:6;37550:5;37544:12;37534:22;;37449:114;;;:::o;37569:184::-;37668:11;37702:6;37697:3;37690:19;37742:4;37737:3;37733:14;37718:29;;37569:184;;;;:::o;37759:132::-;37826:4;37849:3;37841:11;;37879:4;37874:3;37870:14;37862:22;;37759:132;;;:::o;37897:108::-;37974:24;37992:5;37974:24;:::i;:::-;37969:3;37962:37;37897:108;;:::o;38011:179::-;38080:10;38101:46;38143:3;38135:6;38101:46;:::i;:::-;38179:4;38174:3;38170:14;38156:28;;38011:179;;;;:::o;38196:113::-;38266:4;38298;38293:3;38289:14;38281:22;;38196:113;;;:::o;38345:732::-;38464:3;38493:54;38541:5;38493:54;:::i;:::-;38563:86;38642:6;38637:3;38563:86;:::i;:::-;38556:93;;38673:56;38723:5;38673:56;:::i;:::-;38752:7;38783:1;38768:284;38793:6;38790:1;38787:13;38768:284;;;38869:6;38863:13;38896:63;38955:3;38940:13;38896:63;:::i;:::-;38889:70;;38982:60;39035:6;38982:60;:::i;:::-;38972:70;;38828:224;38815:1;38812;38808:9;38803:14;;38768:284;;;38772:14;39068:3;39061:10;;38469:608;;;38345:732;;;;:::o;39083:831::-;39346:4;39384:3;39373:9;39369:19;39361:27;;39398:71;39466:1;39455:9;39451:17;39442:6;39398:71;:::i;:::-;39479:80;39555:2;39544:9;39540:18;39531:6;39479:80;:::i;:::-;39606:9;39600:4;39596:20;39591:2;39580:9;39576:18;39569:48;39634:108;39737:4;39728:6;39634:108;:::i;:::-;39626:116;;39752:72;39820:2;39809:9;39805:18;39796:6;39752:72;:::i;:::-;39834:73;39902:3;39891:9;39887:19;39878:6;39834:73;:::i;:::-;39083:831;;;;;;;;:::o;39920:807::-;40169:4;40207:3;40196:9;40192:19;40184:27;;40221:71;40289:1;40278:9;40274:17;40265:6;40221:71;:::i;:::-;40302:72;40370:2;40359:9;40355:18;40346:6;40302:72;:::i;:::-;40384:80;40460:2;40449:9;40445:18;40436:6;40384:80;:::i;:::-;40474;40550:2;40539:9;40535:18;40526:6;40474:80;:::i;:::-;40564:73;40632:3;40621:9;40617:19;40608:6;40564:73;:::i;:::-;40647;40715:3;40704:9;40700:19;40691:6;40647:73;:::i;:::-;39920:807;;;;;;;;;:::o;40733:663::-;40821:6;40829;40837;40886:2;40874:9;40865:7;40861:23;40857:32;40854:119;;;40892:79;;:::i;:::-;40854:119;41012:1;41037:64;41093:7;41084:6;41073:9;41069:22;41037:64;:::i;:::-;41027:74;;40983:128;41150:2;41176:64;41232:7;41223:6;41212:9;41208:22;41176:64;:::i;:::-;41166:74;;41121:129;41289:2;41315:64;41371:7;41362:6;41351:9;41347:22;41315:64;:::i;:::-;41305:74;;41260:129;40733:663;;;;;:::o

Swarm Source

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