ETH Price: $2,516.87 (+2.56%)

Token

Golden Owl (Fukurou)
 

Overview

Max Total Supply

100,000,000 Fukurou

Holders

26

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
940,000 Fukurou

Value
$0.00
0x5666ba60d132edf7341166edb2e733d79b4bcde2
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:
Fukurou

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: yakuza/Fukurou.sol

/**
        33333 梟 33333

   3333 The Golden Owl 3333

  Bringing good fortune to those 
           who "see"

*/

pragma solidity ^0.8.15;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.15; */

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

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

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

/* pragma solidity ^0.8.15; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.15; */

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

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

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

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

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

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

/* pragma solidity ^0.8.15; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.15; */

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

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

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

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

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

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

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

/* pragma solidity 0.8.15; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

/* pragma solidity 0.8.15; */
/* 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;
}

/* pragma solidity 0.8.15; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.15; */

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

contract Fukurou 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 charityWallet;
    address public marketingWallet;
    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 = true;

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

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

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("Golden Owl", "Fukurou") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 3;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 3;

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

        uint256 totalSupply = 100000000 * 1e18;

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

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

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

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

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
		excludeFromFees(address(marketingWallet), true);
		
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
		excludeFromMaxTransaction(address(marketingWallet), 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() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }
	
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600a81526020017f476f6c64656e204f776c000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f46756b75726f75000000000000000000000000000000000000000000000000008152508160039081620000fb919062000dbd565b5080600490816200010d919062000dbd565b50505062000130620001246200060460201b60201c565b6200060c60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200015c816001620006d260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000202919062000f0e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000290919062000f0e565b6040518363ffffffff1660e01b8152600401620002af92919062000f51565b6020604051808303816000875af1158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f5919062000f0e565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033d60a0516001620006d260201b60201c565b6200035260a0516001620007bc60201b60201c565b600060039050600080600390506000600390506000806003905060006a52b7d2dcc80cd2e400000090506a01a784379d99db420000006009819055506a01a784379d99db42000000600b81905550612710600a82620003b2919062000fad565b620003be91906200103d565b600a81905550866010819055508560118190555084601281905550601254601154601054620003ee919062001075565b620003fa919062001075565b600f819055508360148190555082601581905550816016819055506016546015546014546200042a919062001075565b62000436919062001075565b6013819055507357a86c63d9b36bec985f039e77adccab0ebf7c6c600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073cc28ed8578248df93fe04b59554e69255d26fe39600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000508620004fa6200085d60201b60201c565b60016200088760201b60201c565b6200051b3060016200088760201b60201c565b6200053061dead60016200088760201b60201c565b62000565600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200088760201b60201c565b62000587620005796200085d60201b60201c565b6001620006d260201b60201c565b6200059a306001620006d260201b60201c565b620005af61dead6001620006d260201b60201c565b620005e4600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006d260201b60201c565b620005f63382620009c160201b60201c565b50505050505050506200122f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006e26200060460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007086200085d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000761576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007589062001133565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008976200060460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008bd6200085d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000916576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090d9062001133565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009b5919062001172565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a33576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a2a90620011df565b60405180910390fd5b62000a476000838362000b3960201b60201c565b806002600082825462000a5b919062001075565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ab2919062001075565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b19919062001212565b60405180910390a362000b356000838362000b3e60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bc557607f821691505b60208210810362000bdb5762000bda62000b7d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c457fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c06565b62000c51868362000c06565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c9e62000c9862000c928462000c69565b62000c73565b62000c69565b9050919050565b6000819050919050565b62000cba8362000c7d565b62000cd262000cc98262000ca5565b84845462000c13565b825550505050565b600090565b62000ce962000cda565b62000cf681848462000caf565b505050565b5b8181101562000d1e5762000d1260008262000cdf565b60018101905062000cfc565b5050565b601f82111562000d6d5762000d378162000be1565b62000d428462000bf6565b8101602085101562000d52578190505b62000d6a62000d618562000bf6565b83018262000cfb565b50505b505050565b600082821c905092915050565b600062000d926000198460080262000d72565b1980831691505092915050565b600062000dad838362000d7f565b9150826002028217905092915050565b62000dc88262000b43565b67ffffffffffffffff81111562000de45762000de362000b4e565b5b62000df0825462000bac565b62000dfd82828562000d22565b600060209050601f83116001811462000e35576000841562000e20578287015190505b62000e2c858262000d9f565b86555062000e9c565b601f19841662000e458662000be1565b60005b8281101562000e6f5784890151825560018201915060208501945060208101905062000e48565b8683101562000e8f578489015162000e8b601f89168262000d7f565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ed68262000ea9565b9050919050565b62000ee88162000ec9565b811462000ef457600080fd5b50565b60008151905062000f088162000edd565b92915050565b60006020828403121562000f275762000f2662000ea4565b5b600062000f378482850162000ef7565b91505092915050565b62000f4b8162000ec9565b82525050565b600060408201905062000f68600083018562000f40565b62000f77602083018462000f40565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fba8262000c69565b915062000fc78362000c69565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562001003576200100262000f7e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200104a8262000c69565b9150620010578362000c69565b9250826200106a57620010696200100e565b5b828204905092915050565b6000620010828262000c69565b91506200108f8362000c69565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620010c757620010c662000f7e565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200111b602083620010d2565b91506200112882620010e3565b602082019050919050565b600060208201905081810360008301526200114e816200110c565b9050919050565b60008115159050919050565b6200116c8162001155565b82525050565b600060208201905062001189600083018462001161565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620011c7601f83620010d2565b9150620011d4826200118f565b602082019050919050565b60006020820190508181036000830152620011fa81620011b8565b9050919050565b6200120c8162000c69565b82525050565b600060208201905062001229600083018462001201565b92915050565b60805160a051614a726200128d60003960008181610fe3015281816115d3015261231f015260008181610ce7015281816122c7015281816133b701528181613498015281816134bf0152818161355b01526135820152614a726000f3fe6080604052600436106102e85760003560e01c80638da5cb5b11610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b6b578063f2fde38b14610b96578063f637434214610bbf578063f8b45b0514610bea576102ef565b8063dd62ed3e14610ad8578063e2f4560514610b15578063e884f26014610b40576102ef565b8063c0246668146109c8578063c18bc195146109f1578063c876d0b914610a1a578063c8c8ebe414610a45578063d257b34f14610a70578063d85ba06314610aad576102ef565b80639c3b4fdc11610149578063a457c2d711610123578063a457c2d7146108e6578063a9059cbb14610923578063b62496f514610960578063bbc0c7421461099d576102ef565b80639c3b4fdc146108655780639fccce3214610890578063a0d82dc5146108bb576102ef565b80638da5cb5b146107675780638ea5220f1461079257806392136913146107bd578063924de9b7146107e857806395d89b41146108115780639a7a23d61461083c576102ef565b806349bd5a5e1161024f578063715018a61161020857806375f0a874116101e257806375f0a874146106cf5780637b208769146106fa5780637bce5a04146107255780638a8c523c14610750576102ef565b8063715018a614610664578063751039fc1461067b5780637571336a146106a6576102ef565b806349bd5a5e1461053e5780634a62bb65146105695780634fbee193146105945780636a486a8e146105d15780636ddd1713146105fc57806370a0823114610627576102ef565b80631f3fed8f116102a15780631f3fed8f1461041a578063203e727e1461044557806323b872dd1461046e57806327c8f835146104ab578063313ce567146104d65780633950935114610501576102ef565b806306fdde03146102f4578063095ea7b31461031f57806310d5de531461035c5780631694505e1461039957806318160ddd146103c45780631a8145bb146103ef576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309610c15565b60405161031691906136ea565b60405180910390f35b34801561032b57600080fd5b50610346600480360381019061034191906137a5565b610ca7565b6040516103539190613800565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e919061381b565b610cc5565b6040516103909190613800565b60405180910390f35b3480156103a557600080fd5b506103ae610ce5565b6040516103bb91906138a7565b60405180910390f35b3480156103d057600080fd5b506103d9610d09565b6040516103e691906138d1565b60405180910390f35b3480156103fb57600080fd5b50610404610d13565b60405161041191906138d1565b60405180910390f35b34801561042657600080fd5b5061042f610d19565b60405161043c91906138d1565b60405180910390f35b34801561045157600080fd5b5061046c600480360381019061046791906138ec565b610d1f565b005b34801561047a57600080fd5b5061049560048036038101906104909190613919565b610e2e565b6040516104a29190613800565b60405180910390f35b3480156104b757600080fd5b506104c0610f26565b6040516104cd919061397b565b60405180910390f35b3480156104e257600080fd5b506104eb610f2c565b6040516104f891906139b2565b60405180910390f35b34801561050d57600080fd5b50610528600480360381019061052391906137a5565b610f35565b6040516105359190613800565b60405180910390f35b34801561054a57600080fd5b50610553610fe1565b604051610560919061397b565b60405180910390f35b34801561057557600080fd5b5061057e611005565b60405161058b9190613800565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b6919061381b565b611018565b6040516105c89190613800565b60405180910390f35b3480156105dd57600080fd5b506105e661106e565b6040516105f391906138d1565b60405180910390f35b34801561060857600080fd5b50610611611074565b60405161061e9190613800565b60405180910390f35b34801561063357600080fd5b5061064e6004803603810190610649919061381b565b611087565b60405161065b91906138d1565b60405180910390f35b34801561067057600080fd5b506106796110cf565b005b34801561068757600080fd5b50610690611157565b60405161069d9190613800565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c891906139f9565b6111f7565b005b3480156106db57600080fd5b506106e46112ce565b6040516106f1919061397b565b60405180910390f35b34801561070657600080fd5b5061070f6112f4565b60405161071c919061397b565b60405180910390f35b34801561073157600080fd5b5061073a61131a565b60405161074791906138d1565b60405180910390f35b34801561075c57600080fd5b50610765611320565b005b34801561077357600080fd5b5061077c6113d4565b604051610789919061397b565b60405180910390f35b34801561079e57600080fd5b506107a76113fe565b6040516107b4919061397b565b60405180910390f35b3480156107c957600080fd5b506107d2611424565b6040516107df91906138d1565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190613a39565b61142a565b005b34801561081d57600080fd5b506108266114c3565b60405161083391906136ea565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e91906139f9565b611555565b005b34801561087157600080fd5b5061087a61166d565b60405161088791906138d1565b60405180910390f35b34801561089c57600080fd5b506108a5611673565b6040516108b291906138d1565b60405180910390f35b3480156108c757600080fd5b506108d0611679565b6040516108dd91906138d1565b60405180910390f35b3480156108f257600080fd5b5061090d600480360381019061090891906137a5565b61167f565b60405161091a9190613800565b60405180910390f35b34801561092f57600080fd5b5061094a600480360381019061094591906137a5565b61176a565b6040516109579190613800565b60405180910390f35b34801561096c57600080fd5b506109876004803603810190610982919061381b565b611788565b6040516109949190613800565b60405180910390f35b3480156109a957600080fd5b506109b26117a8565b6040516109bf9190613800565b60405180910390f35b3480156109d457600080fd5b506109ef60048036038101906109ea91906139f9565b6117bb565b005b3480156109fd57600080fd5b50610a186004803603810190610a1391906138ec565b6118e0565b005b348015610a2657600080fd5b50610a2f6119ef565b604051610a3c9190613800565b60405180910390f35b348015610a5157600080fd5b50610a5a611a02565b604051610a6791906138d1565b60405180910390f35b348015610a7c57600080fd5b50610a976004803603810190610a9291906138ec565b611a08565b604051610aa49190613800565b60405180910390f35b348015610ab957600080fd5b50610ac2611b5d565b604051610acf91906138d1565b60405180910390f35b348015610ae457600080fd5b50610aff6004803603810190610afa9190613a66565b611b63565b604051610b0c91906138d1565b60405180910390f35b348015610b2157600080fd5b50610b2a611bea565b604051610b3791906138d1565b60405180910390f35b348015610b4c57600080fd5b50610b55611bf0565b604051610b629190613800565b60405180910390f35b348015610b7757600080fd5b50610b80611c90565b604051610b8d91906138d1565b60405180910390f35b348015610ba257600080fd5b50610bbd6004803603810190610bb8919061381b565b611c96565b005b348015610bcb57600080fd5b50610bd4611d8d565b604051610be191906138d1565b60405180910390f35b348015610bf657600080fd5b50610bff611d93565b604051610c0c91906138d1565b60405180910390f35b606060038054610c2490613ad5565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5090613ad5565b8015610c9d5780601f10610c7257610100808354040283529160200191610c9d565b820191906000526020600020905b815481529060010190602001808311610c8057829003601f168201915b5050505050905090565b6000610cbb610cb4611d99565b8484611da1565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60185481565b60175481565b610d27611d99565b73ffffffffffffffffffffffffffffffffffffffff16610d456113d4565b73ffffffffffffffffffffffffffffffffffffffff1614610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290613b52565b60405180910390fd5b670de0b6b3a76400006103e86001610db1610d09565b610dbb9190613ba1565b610dc59190613c2a565b610dcf9190613c2a565b811015610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613ccd565b60405180910390fd5b670de0b6b3a764000081610e259190613ba1565b60098190555050565b6000610e3b848484611f6a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e86611d99565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd90613d5f565b60405180910390fd5b610f1a85610f12611d99565b858403611da1565b60019150509392505050565b61dead81565b60006012905090565b6000610fd7610f42611d99565b848460016000610f50611d99565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fd29190613d7f565b611da1565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110d7611d99565b73ffffffffffffffffffffffffffffffffffffffff166110f56113d4565b73ffffffffffffffffffffffffffffffffffffffff161461114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290613b52565b60405180910390fd5b6111556000612c01565b565b6000611161611d99565b73ffffffffffffffffffffffffffffffffffffffff1661117f6113d4565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90613b52565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6111ff611d99565b73ffffffffffffffffffffffffffffffffffffffff1661121d6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a90613b52565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b611328611d99565b73ffffffffffffffffffffffffffffffffffffffff166113466113d4565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613b52565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b611432611d99565b73ffffffffffffffffffffffffffffffffffffffff166114506113d4565b73ffffffffffffffffffffffffffffffffffffffff16146114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90613b52565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b6060600480546114d290613ad5565b80601f01602080910402602001604051908101604052809291908181526020018280546114fe90613ad5565b801561154b5780601f106115205761010080835404028352916020019161154b565b820191906000526020600020905b81548152906001019060200180831161152e57829003601f168201915b5050505050905090565b61155d611d99565b73ffffffffffffffffffffffffffffffffffffffff1661157b6113d4565b73ffffffffffffffffffffffffffffffffffffffff16146115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c890613b52565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361165f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165690613e47565b60405180910390fd5b6116698282612cc7565b5050565b60125481565b60195481565b60165481565b6000806001600061168e611d99565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613ed9565b60405180910390fd5b61175f611756611d99565b85858403611da1565b600191505092915050565b600061177e611777611d99565b8484611f6a565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b6117c3611d99565b73ffffffffffffffffffffffffffffffffffffffff166117e16113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e90613b52565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516118d49190613800565b60405180910390a25050565b6118e8611d99565b73ffffffffffffffffffffffffffffffffffffffff166119066113d4565b73ffffffffffffffffffffffffffffffffffffffff161461195c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195390613b52565b60405180910390fd5b670de0b6b3a76400006103e86005611972610d09565b61197c9190613ba1565b6119869190613c2a565b6119909190613c2a565b8110156119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990613f6b565b60405180910390fd5b670de0b6b3a7640000816119e69190613ba1565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611a12611d99565b73ffffffffffffffffffffffffffffffffffffffff16611a306113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d90613b52565b60405180910390fd5b620186a06001611a94610d09565b611a9e9190613ba1565b611aa89190613c2a565b821015611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae190613ffd565b60405180910390fd5b6103e86005611af7610d09565b611b019190613ba1565b611b0b9190613c2a565b821115611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b449061408f565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6000611bfa611d99565b73ffffffffffffffffffffffffffffffffffffffff16611c186113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6590613b52565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60115481565b611c9e611d99565b73ffffffffffffffffffffffffffffffffffffffff16611cbc6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0990613b52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7890614121565b60405180910390fd5b611d8a81612c01565b50565b60155481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e07906141b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7690614245565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611f5d91906138d1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd0906142d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90614369565b60405180910390fd5b600081036120615761205c83836000612d68565b612bfc565b600c60009054906101000a900460ff16156127245761207e6113d4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156120ec57506120bc6113d4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121255750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561215f575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121785750600560149054906101000a900460ff16155b1561272357600c60019054906101000a900460ff1661227257601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122325750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612271576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612268906143d5565b60405180910390fd5b5b600e60009054906101000a900460ff161561243a5761228f6113d4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561231657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561236e57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156124395743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb9061448d565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124dd5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561258457600954811115612527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251e9061451f565b60405180910390fd5b600b5461253383611087565b8261253e9190613d7f565b111561257f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125769061458b565b60405180910390fd5b612722565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126275750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561267657600954811115612671576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126689061461d565b60405180910390fd5b612721565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661272057600b546126d383611087565b826126de9190613d7f565b111561271f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127169061458b565b60405180910390fd5b5b5b5b5b5b600061272f30611087565b90506000600a5482101590508080156127545750600c60029054906101000a900460ff165b801561276d5750600560149054906101000a900460ff16155b80156127c35750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128195750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561286f5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128b3576001600560146101000a81548160ff021916908315150217905550612897612fe7565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129695750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561297357600090505b60008115612bec57601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129d657506000601354115b15612aa357612a0360646129f5601354886132cc90919063ffffffff16565b6132e290919063ffffffff16565b905060135460155482612a169190613ba1565b612a209190613c2a565b60186000828254612a319190613d7f565b9250508190555060135460165482612a499190613ba1565b612a539190613c2a565b60196000828254612a649190613d7f565b9250508190555060135460145482612a7c9190613ba1565b612a869190613c2a565b60176000828254612a979190613d7f565b92505081905550612bc8565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612afe57506000600f54115b15612bc757612b2b6064612b1d600f54886132cc90919063ffffffff16565b6132e290919063ffffffff16565b9050600f5460115482612b3e9190613ba1565b612b489190613c2a565b60186000828254612b599190613d7f565b92505081905550600f5460125482612b719190613ba1565b612b7b9190613c2a565b60196000828254612b8c9190613d7f565b92505081905550600f5460105482612ba49190613ba1565b612bae9190613c2a565b60176000828254612bbf9190613d7f565b925050819055505b5b6000811115612bdd57612bdc873083612d68565b5b8085612be9919061463d565b94505b612bf7878787612d68565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dce906142d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3d90614369565b60405180910390fd5b612e518383836132f8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ece906146e3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f6a9190613d7f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612fce91906138d1565b60405180910390a3612fe18484846132fd565b50505050565b6000612ff230611087565b905060006019546017546018546130099190613d7f565b6130139190613d7f565b90506000808314806130255750600082145b15613032575050506132ca565b6014600a546130419190613ba1565b83111561305a576014600a546130579190613ba1565b92505b60006002836018548661306d9190613ba1565b6130779190613c2a565b6130819190613c2a565b90506000613098828661330290919063ffffffff16565b905060004790506130a882613318565b60006130bd824761330290919063ffffffff16565b905060006130e8876130da601754856132cc90919063ffffffff16565b6132e290919063ffffffff16565b9050600061311388613105601954866132cc90919063ffffffff16565b6132e290919063ffffffff16565b90506000818385613124919061463d565b61312e919061463d565b9050600060188190555060006017819055506000601981905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161318e90614734565b60006040518083038185875af1925050503d80600081146131cb576040519150601f19603f3d011682016040523d82523d6000602084013e6131d0565b606091505b5050809850506000871180156131e65750600081115b15613231576131f58782613555565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828960405161322893929190614749565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161327790614734565b60006040518083038185875af1925050503d80600081146132b4576040519150601f19603f3d011682016040523d82523d6000602084013e6132b9565b606091505b505080985050505050505050505050505b565b600081836132da9190613ba1565b905092915050565b600081836132f09190613c2a565b905092915050565b505050565b505050565b60008183613310919061463d565b905092915050565b6000600267ffffffffffffffff81111561333557613334614780565b5b6040519080825280602002602001820160405280156133635781602001602082028036833780820191505090505b509050308160008151811061337b5761337a6147af565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613420573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061344491906147f3565b81600181518110613458576134576147af565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506134bd307f000000000000000000000000000000000000000000000000000000000000000084611da1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161351f959493929190614919565b600060405180830381600087803b15801561353957600080fd5b505af115801561354d573d6000803e3d6000fd5b505050505050565b613580307f000000000000000000000000000000000000000000000000000000000000000084611da1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161360796959493929190614973565b60606040518083038185885af1158015613625573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061364a91906149e9565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561368b578082015181840152602081019050613670565b8381111561369a576000848401525b50505050565b6000601f19601f8301169050919050565b60006136bc82613651565b6136c6818561365c565b93506136d681856020860161366d565b6136df816136a0565b840191505092915050565b6000602082019050818103600083015261370481846136b1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061373c82613711565b9050919050565b61374c81613731565b811461375757600080fd5b50565b60008135905061376981613743565b92915050565b6000819050919050565b6137828161376f565b811461378d57600080fd5b50565b60008135905061379f81613779565b92915050565b600080604083850312156137bc576137bb61370c565b5b60006137ca8582860161375a565b92505060206137db85828601613790565b9150509250929050565b60008115159050919050565b6137fa816137e5565b82525050565b600060208201905061381560008301846137f1565b92915050565b6000602082840312156138315761383061370c565b5b600061383f8482850161375a565b91505092915050565b6000819050919050565b600061386d61386861386384613711565b613848565b613711565b9050919050565b600061387f82613852565b9050919050565b600061389182613874565b9050919050565b6138a181613886565b82525050565b60006020820190506138bc6000830184613898565b92915050565b6138cb8161376f565b82525050565b60006020820190506138e660008301846138c2565b92915050565b6000602082840312156139025761390161370c565b5b600061391084828501613790565b91505092915050565b6000806000606084860312156139325761393161370c565b5b60006139408682870161375a565b93505060206139518682870161375a565b925050604061396286828701613790565b9150509250925092565b61397581613731565b82525050565b6000602082019050613990600083018461396c565b92915050565b600060ff82169050919050565b6139ac81613996565b82525050565b60006020820190506139c760008301846139a3565b92915050565b6139d6816137e5565b81146139e157600080fd5b50565b6000813590506139f3816139cd565b92915050565b60008060408385031215613a1057613a0f61370c565b5b6000613a1e8582860161375a565b9250506020613a2f858286016139e4565b9150509250929050565b600060208284031215613a4f57613a4e61370c565b5b6000613a5d848285016139e4565b91505092915050565b60008060408385031215613a7d57613a7c61370c565b5b6000613a8b8582860161375a565b9250506020613a9c8582860161375a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613aed57607f821691505b602082108103613b0057613aff613aa6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b3c60208361365c565b9150613b4782613b06565b602082019050919050565b60006020820190508181036000830152613b6b81613b2f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bac8261376f565b9150613bb78361376f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bf057613bef613b72565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c358261376f565b9150613c408361376f565b925082613c5057613c4f613bfb565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613cb7602f8361365c565b9150613cc282613c5b565b604082019050919050565b60006020820190508181036000830152613ce681613caa565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613d4960288361365c565b9150613d5482613ced565b604082019050919050565b60006020820190508181036000830152613d7881613d3c565b9050919050565b6000613d8a8261376f565b9150613d958361376f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dca57613dc9613b72565b5b828201905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613e3160398361365c565b9150613e3c82613dd5565b604082019050919050565b60006020820190508181036000830152613e6081613e24565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613ec360258361365c565b9150613ece82613e67565b604082019050919050565b60006020820190508181036000830152613ef281613eb6565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613f5560248361365c565b9150613f6082613ef9565b604082019050919050565b60006020820190508181036000830152613f8481613f48565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613fe760358361365c565b9150613ff282613f8b565b604082019050919050565b6000602082019050818103600083015261401681613fda565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061407960348361365c565b91506140848261401d565b604082019050919050565b600060208201905081810360008301526140a88161406c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061410b60268361365c565b9150614116826140af565b604082019050919050565b6000602082019050818103600083015261413a816140fe565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061419d60248361365c565b91506141a882614141565b604082019050919050565b600060208201905081810360008301526141cc81614190565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061422f60228361365c565b915061423a826141d3565b604082019050919050565b6000602082019050818103600083015261425e81614222565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142c160258361365c565b91506142cc82614265565b604082019050919050565b600060208201905081810360008301526142f0816142b4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061435360238361365c565b915061435e826142f7565b604082019050919050565b6000602082019050818103600083015261438281614346565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006143bf60168361365c565b91506143ca82614389565b602082019050919050565b600060208201905081810360008301526143ee816143b2565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061447760498361365c565b9150614482826143f5565b606082019050919050565b600060208201905081810360008301526144a68161446a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061450960358361365c565b9150614514826144ad565b604082019050919050565b60006020820190508181036000830152614538816144fc565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061457560138361365c565b91506145808261453f565b602082019050919050565b600060208201905081810360008301526145a481614568565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061460760368361365c565b9150614612826145ab565b604082019050919050565b60006020820190508181036000830152614636816145fa565b9050919050565b60006146488261376f565b91506146538361376f565b92508282101561466657614665613b72565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006146cd60268361365c565b91506146d882614671565b604082019050919050565b600060208201905081810360008301526146fc816146c0565b9050919050565b600081905092915050565b50565b600061471e600083614703565b91506147298261470e565b600082019050919050565b600061473f82614711565b9150819050919050565b600060608201905061475e60008301866138c2565b61476b60208301856138c2565b61477860408301846138c2565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506147ed81613743565b92915050565b6000602082840312156148095761480861370c565b5b6000614817848285016147de565b91505092915050565b6000819050919050565b600061484561484061483b84614820565b613848565b61376f565b9050919050565b6148558161482a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61489081613731565b82525050565b60006148a28383614887565b60208301905092915050565b6000602082019050919050565b60006148c68261485b565b6148d08185614866565b93506148db83614877565b8060005b8381101561490c5781516148f38882614896565b97506148fe836148ae565b9250506001810190506148df565b5085935050505092915050565b600060a08201905061492e60008301886138c2565b61493b602083018761484c565b818103604083015261494d81866148bb565b905061495c606083018561396c565b61496960808301846138c2565b9695505050505050565b600060c082019050614988600083018961396c565b61499560208301886138c2565b6149a2604083018761484c565b6149af606083018661484c565b6149bc608083018561396c565b6149c960a08301846138c2565b979650505050505050565b6000815190506149e381613779565b92915050565b600080600060608486031215614a0257614a0161370c565b5b6000614a10868287016149d4565b9350506020614a21868287016149d4565b9250506040614a32868287016149d4565b915050925092509256fea2646970667358221220b404c9c1d4e0527f3ecfdd83d1f85f4ac000eac36b1884227971608f3b5f160164736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80638da5cb5b11610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b6b578063f2fde38b14610b96578063f637434214610bbf578063f8b45b0514610bea576102ef565b8063dd62ed3e14610ad8578063e2f4560514610b15578063e884f26014610b40576102ef565b8063c0246668146109c8578063c18bc195146109f1578063c876d0b914610a1a578063c8c8ebe414610a45578063d257b34f14610a70578063d85ba06314610aad576102ef565b80639c3b4fdc11610149578063a457c2d711610123578063a457c2d7146108e6578063a9059cbb14610923578063b62496f514610960578063bbc0c7421461099d576102ef565b80639c3b4fdc146108655780639fccce3214610890578063a0d82dc5146108bb576102ef565b80638da5cb5b146107675780638ea5220f1461079257806392136913146107bd578063924de9b7146107e857806395d89b41146108115780639a7a23d61461083c576102ef565b806349bd5a5e1161024f578063715018a61161020857806375f0a874116101e257806375f0a874146106cf5780637b208769146106fa5780637bce5a04146107255780638a8c523c14610750576102ef565b8063715018a614610664578063751039fc1461067b5780637571336a146106a6576102ef565b806349bd5a5e1461053e5780634a62bb65146105695780634fbee193146105945780636a486a8e146105d15780636ddd1713146105fc57806370a0823114610627576102ef565b80631f3fed8f116102a15780631f3fed8f1461041a578063203e727e1461044557806323b872dd1461046e57806327c8f835146104ab578063313ce567146104d65780633950935114610501576102ef565b806306fdde03146102f4578063095ea7b31461031f57806310d5de531461035c5780631694505e1461039957806318160ddd146103c45780631a8145bb146103ef576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309610c15565b60405161031691906136ea565b60405180910390f35b34801561032b57600080fd5b50610346600480360381019061034191906137a5565b610ca7565b6040516103539190613800565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e919061381b565b610cc5565b6040516103909190613800565b60405180910390f35b3480156103a557600080fd5b506103ae610ce5565b6040516103bb91906138a7565b60405180910390f35b3480156103d057600080fd5b506103d9610d09565b6040516103e691906138d1565b60405180910390f35b3480156103fb57600080fd5b50610404610d13565b60405161041191906138d1565b60405180910390f35b34801561042657600080fd5b5061042f610d19565b60405161043c91906138d1565b60405180910390f35b34801561045157600080fd5b5061046c600480360381019061046791906138ec565b610d1f565b005b34801561047a57600080fd5b5061049560048036038101906104909190613919565b610e2e565b6040516104a29190613800565b60405180910390f35b3480156104b757600080fd5b506104c0610f26565b6040516104cd919061397b565b60405180910390f35b3480156104e257600080fd5b506104eb610f2c565b6040516104f891906139b2565b60405180910390f35b34801561050d57600080fd5b50610528600480360381019061052391906137a5565b610f35565b6040516105359190613800565b60405180910390f35b34801561054a57600080fd5b50610553610fe1565b604051610560919061397b565b60405180910390f35b34801561057557600080fd5b5061057e611005565b60405161058b9190613800565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b6919061381b565b611018565b6040516105c89190613800565b60405180910390f35b3480156105dd57600080fd5b506105e661106e565b6040516105f391906138d1565b60405180910390f35b34801561060857600080fd5b50610611611074565b60405161061e9190613800565b60405180910390f35b34801561063357600080fd5b5061064e6004803603810190610649919061381b565b611087565b60405161065b91906138d1565b60405180910390f35b34801561067057600080fd5b506106796110cf565b005b34801561068757600080fd5b50610690611157565b60405161069d9190613800565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c891906139f9565b6111f7565b005b3480156106db57600080fd5b506106e46112ce565b6040516106f1919061397b565b60405180910390f35b34801561070657600080fd5b5061070f6112f4565b60405161071c919061397b565b60405180910390f35b34801561073157600080fd5b5061073a61131a565b60405161074791906138d1565b60405180910390f35b34801561075c57600080fd5b50610765611320565b005b34801561077357600080fd5b5061077c6113d4565b604051610789919061397b565b60405180910390f35b34801561079e57600080fd5b506107a76113fe565b6040516107b4919061397b565b60405180910390f35b3480156107c957600080fd5b506107d2611424565b6040516107df91906138d1565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190613a39565b61142a565b005b34801561081d57600080fd5b506108266114c3565b60405161083391906136ea565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e91906139f9565b611555565b005b34801561087157600080fd5b5061087a61166d565b60405161088791906138d1565b60405180910390f35b34801561089c57600080fd5b506108a5611673565b6040516108b291906138d1565b60405180910390f35b3480156108c757600080fd5b506108d0611679565b6040516108dd91906138d1565b60405180910390f35b3480156108f257600080fd5b5061090d600480360381019061090891906137a5565b61167f565b60405161091a9190613800565b60405180910390f35b34801561092f57600080fd5b5061094a600480360381019061094591906137a5565b61176a565b6040516109579190613800565b60405180910390f35b34801561096c57600080fd5b506109876004803603810190610982919061381b565b611788565b6040516109949190613800565b60405180910390f35b3480156109a957600080fd5b506109b26117a8565b6040516109bf9190613800565b60405180910390f35b3480156109d457600080fd5b506109ef60048036038101906109ea91906139f9565b6117bb565b005b3480156109fd57600080fd5b50610a186004803603810190610a1391906138ec565b6118e0565b005b348015610a2657600080fd5b50610a2f6119ef565b604051610a3c9190613800565b60405180910390f35b348015610a5157600080fd5b50610a5a611a02565b604051610a6791906138d1565b60405180910390f35b348015610a7c57600080fd5b50610a976004803603810190610a9291906138ec565b611a08565b604051610aa49190613800565b60405180910390f35b348015610ab957600080fd5b50610ac2611b5d565b604051610acf91906138d1565b60405180910390f35b348015610ae457600080fd5b50610aff6004803603810190610afa9190613a66565b611b63565b604051610b0c91906138d1565b60405180910390f35b348015610b2157600080fd5b50610b2a611bea565b604051610b3791906138d1565b60405180910390f35b348015610b4c57600080fd5b50610b55611bf0565b604051610b629190613800565b60405180910390f35b348015610b7757600080fd5b50610b80611c90565b604051610b8d91906138d1565b60405180910390f35b348015610ba257600080fd5b50610bbd6004803603810190610bb8919061381b565b611c96565b005b348015610bcb57600080fd5b50610bd4611d8d565b604051610be191906138d1565b60405180910390f35b348015610bf657600080fd5b50610bff611d93565b604051610c0c91906138d1565b60405180910390f35b606060038054610c2490613ad5565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5090613ad5565b8015610c9d5780601f10610c7257610100808354040283529160200191610c9d565b820191906000526020600020905b815481529060010190602001808311610c8057829003601f168201915b5050505050905090565b6000610cbb610cb4611d99565b8484611da1565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60185481565b60175481565b610d27611d99565b73ffffffffffffffffffffffffffffffffffffffff16610d456113d4565b73ffffffffffffffffffffffffffffffffffffffff1614610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290613b52565b60405180910390fd5b670de0b6b3a76400006103e86001610db1610d09565b610dbb9190613ba1565b610dc59190613c2a565b610dcf9190613c2a565b811015610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613ccd565b60405180910390fd5b670de0b6b3a764000081610e259190613ba1565b60098190555050565b6000610e3b848484611f6a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e86611d99565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd90613d5f565b60405180910390fd5b610f1a85610f12611d99565b858403611da1565b60019150509392505050565b61dead81565b60006012905090565b6000610fd7610f42611d99565b848460016000610f50611d99565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fd29190613d7f565b611da1565b6001905092915050565b7f000000000000000000000000dbab3a1b5482e3066e7dfecbbea070e785e4e25e81565b600c60009054906101000a900460ff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110d7611d99565b73ffffffffffffffffffffffffffffffffffffffff166110f56113d4565b73ffffffffffffffffffffffffffffffffffffffff161461114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290613b52565b60405180910390fd5b6111556000612c01565b565b6000611161611d99565b73ffffffffffffffffffffffffffffffffffffffff1661117f6113d4565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90613b52565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6111ff611d99565b73ffffffffffffffffffffffffffffffffffffffff1661121d6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a90613b52565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b611328611d99565b73ffffffffffffffffffffffffffffffffffffffff166113466113d4565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613b52565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b611432611d99565b73ffffffffffffffffffffffffffffffffffffffff166114506113d4565b73ffffffffffffffffffffffffffffffffffffffff16146114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90613b52565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b6060600480546114d290613ad5565b80601f01602080910402602001604051908101604052809291908181526020018280546114fe90613ad5565b801561154b5780601f106115205761010080835404028352916020019161154b565b820191906000526020600020905b81548152906001019060200180831161152e57829003601f168201915b5050505050905090565b61155d611d99565b73ffffffffffffffffffffffffffffffffffffffff1661157b6113d4565b73ffffffffffffffffffffffffffffffffffffffff16146115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c890613b52565b60405180910390fd5b7f000000000000000000000000dbab3a1b5482e3066e7dfecbbea070e785e4e25e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361165f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165690613e47565b60405180910390fd5b6116698282612cc7565b5050565b60125481565b60195481565b60165481565b6000806001600061168e611d99565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613ed9565b60405180910390fd5b61175f611756611d99565b85858403611da1565b600191505092915050565b600061177e611777611d99565b8484611f6a565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b6117c3611d99565b73ffffffffffffffffffffffffffffffffffffffff166117e16113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e90613b52565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516118d49190613800565b60405180910390a25050565b6118e8611d99565b73ffffffffffffffffffffffffffffffffffffffff166119066113d4565b73ffffffffffffffffffffffffffffffffffffffff161461195c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195390613b52565b60405180910390fd5b670de0b6b3a76400006103e86005611972610d09565b61197c9190613ba1565b6119869190613c2a565b6119909190613c2a565b8110156119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990613f6b565b60405180910390fd5b670de0b6b3a7640000816119e69190613ba1565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611a12611d99565b73ffffffffffffffffffffffffffffffffffffffff16611a306113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d90613b52565b60405180910390fd5b620186a06001611a94610d09565b611a9e9190613ba1565b611aa89190613c2a565b821015611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae190613ffd565b60405180910390fd5b6103e86005611af7610d09565b611b019190613ba1565b611b0b9190613c2a565b821115611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b449061408f565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6000611bfa611d99565b73ffffffffffffffffffffffffffffffffffffffff16611c186113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6590613b52565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60115481565b611c9e611d99565b73ffffffffffffffffffffffffffffffffffffffff16611cbc6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0990613b52565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7890614121565b60405180910390fd5b611d8a81612c01565b50565b60155481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e07906141b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7690614245565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611f5d91906138d1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd0906142d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90614369565b60405180910390fd5b600081036120615761205c83836000612d68565b612bfc565b600c60009054906101000a900460ff16156127245761207e6113d4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156120ec57506120bc6113d4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121255750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561215f575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121785750600560149054906101000a900460ff16155b1561272357600c60019054906101000a900460ff1661227257601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122325750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612271576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612268906143d5565b60405180910390fd5b5b600e60009054906101000a900460ff161561243a5761228f6113d4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561231657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561236e57507f000000000000000000000000dbab3a1b5482e3066e7dfecbbea070e785e4e25e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156124395743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb9061448d565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124dd5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561258457600954811115612527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251e9061451f565b60405180910390fd5b600b5461253383611087565b8261253e9190613d7f565b111561257f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125769061458b565b60405180910390fd5b612722565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126275750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561267657600954811115612671576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126689061461d565b60405180910390fd5b612721565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661272057600b546126d383611087565b826126de9190613d7f565b111561271f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127169061458b565b60405180910390fd5b5b5b5b5b5b600061272f30611087565b90506000600a5482101590508080156127545750600c60029054906101000a900460ff165b801561276d5750600560149054906101000a900460ff16155b80156127c35750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128195750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561286f5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128b3576001600560146101000a81548160ff021916908315150217905550612897612fe7565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129695750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561297357600090505b60008115612bec57601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129d657506000601354115b15612aa357612a0360646129f5601354886132cc90919063ffffffff16565b6132e290919063ffffffff16565b905060135460155482612a169190613ba1565b612a209190613c2a565b60186000828254612a319190613d7f565b9250508190555060135460165482612a499190613ba1565b612a539190613c2a565b60196000828254612a649190613d7f565b9250508190555060135460145482612a7c9190613ba1565b612a869190613c2a565b60176000828254612a979190613d7f565b92505081905550612bc8565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612afe57506000600f54115b15612bc757612b2b6064612b1d600f54886132cc90919063ffffffff16565b6132e290919063ffffffff16565b9050600f5460115482612b3e9190613ba1565b612b489190613c2a565b60186000828254612b599190613d7f565b92505081905550600f5460125482612b719190613ba1565b612b7b9190613c2a565b60196000828254612b8c9190613d7f565b92505081905550600f5460105482612ba49190613ba1565b612bae9190613c2a565b60176000828254612bbf9190613d7f565b925050819055505b5b6000811115612bdd57612bdc873083612d68565b5b8085612be9919061463d565b94505b612bf7878787612d68565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dce906142d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3d90614369565b60405180910390fd5b612e518383836132f8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ece906146e3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f6a9190613d7f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612fce91906138d1565b60405180910390a3612fe18484846132fd565b50505050565b6000612ff230611087565b905060006019546017546018546130099190613d7f565b6130139190613d7f565b90506000808314806130255750600082145b15613032575050506132ca565b6014600a546130419190613ba1565b83111561305a576014600a546130579190613ba1565b92505b60006002836018548661306d9190613ba1565b6130779190613c2a565b6130819190613c2a565b90506000613098828661330290919063ffffffff16565b905060004790506130a882613318565b60006130bd824761330290919063ffffffff16565b905060006130e8876130da601754856132cc90919063ffffffff16565b6132e290919063ffffffff16565b9050600061311388613105601954866132cc90919063ffffffff16565b6132e290919063ffffffff16565b90506000818385613124919061463d565b61312e919061463d565b9050600060188190555060006017819055506000601981905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161318e90614734565b60006040518083038185875af1925050503d80600081146131cb576040519150601f19603f3d011682016040523d82523d6000602084013e6131d0565b606091505b5050809850506000871180156131e65750600081115b15613231576131f58782613555565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828960405161322893929190614749565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161327790614734565b60006040518083038185875af1925050503d80600081146132b4576040519150601f19603f3d011682016040523d82523d6000602084013e6132b9565b606091505b505080985050505050505050505050505b565b600081836132da9190613ba1565b905092915050565b600081836132f09190613c2a565b905092915050565b505050565b505050565b60008183613310919061463d565b905092915050565b6000600267ffffffffffffffff81111561333557613334614780565b5b6040519080825280602002602001820160405280156133635781602001602082028036833780820191505090505b509050308160008151811061337b5761337a6147af565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613420573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061344491906147f3565b81600181518110613458576134576147af565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506134bd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611da1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161351f959493929190614919565b600060405180830381600087803b15801561353957600080fd5b505af115801561354d573d6000803e3d6000fd5b505050505050565b613580307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611da1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161360796959493929190614973565b60606040518083038185885af1158015613625573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061364a91906149e9565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561368b578082015181840152602081019050613670565b8381111561369a576000848401525b50505050565b6000601f19601f8301169050919050565b60006136bc82613651565b6136c6818561365c565b93506136d681856020860161366d565b6136df816136a0565b840191505092915050565b6000602082019050818103600083015261370481846136b1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061373c82613711565b9050919050565b61374c81613731565b811461375757600080fd5b50565b60008135905061376981613743565b92915050565b6000819050919050565b6137828161376f565b811461378d57600080fd5b50565b60008135905061379f81613779565b92915050565b600080604083850312156137bc576137bb61370c565b5b60006137ca8582860161375a565b92505060206137db85828601613790565b9150509250929050565b60008115159050919050565b6137fa816137e5565b82525050565b600060208201905061381560008301846137f1565b92915050565b6000602082840312156138315761383061370c565b5b600061383f8482850161375a565b91505092915050565b6000819050919050565b600061386d61386861386384613711565b613848565b613711565b9050919050565b600061387f82613852565b9050919050565b600061389182613874565b9050919050565b6138a181613886565b82525050565b60006020820190506138bc6000830184613898565b92915050565b6138cb8161376f565b82525050565b60006020820190506138e660008301846138c2565b92915050565b6000602082840312156139025761390161370c565b5b600061391084828501613790565b91505092915050565b6000806000606084860312156139325761393161370c565b5b60006139408682870161375a565b93505060206139518682870161375a565b925050604061396286828701613790565b9150509250925092565b61397581613731565b82525050565b6000602082019050613990600083018461396c565b92915050565b600060ff82169050919050565b6139ac81613996565b82525050565b60006020820190506139c760008301846139a3565b92915050565b6139d6816137e5565b81146139e157600080fd5b50565b6000813590506139f3816139cd565b92915050565b60008060408385031215613a1057613a0f61370c565b5b6000613a1e8582860161375a565b9250506020613a2f858286016139e4565b9150509250929050565b600060208284031215613a4f57613a4e61370c565b5b6000613a5d848285016139e4565b91505092915050565b60008060408385031215613a7d57613a7c61370c565b5b6000613a8b8582860161375a565b9250506020613a9c8582860161375a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613aed57607f821691505b602082108103613b0057613aff613aa6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b3c60208361365c565b9150613b4782613b06565b602082019050919050565b60006020820190508181036000830152613b6b81613b2f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bac8261376f565b9150613bb78361376f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bf057613bef613b72565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c358261376f565b9150613c408361376f565b925082613c5057613c4f613bfb565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613cb7602f8361365c565b9150613cc282613c5b565b604082019050919050565b60006020820190508181036000830152613ce681613caa565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613d4960288361365c565b9150613d5482613ced565b604082019050919050565b60006020820190508181036000830152613d7881613d3c565b9050919050565b6000613d8a8261376f565b9150613d958361376f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dca57613dc9613b72565b5b828201905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613e3160398361365c565b9150613e3c82613dd5565b604082019050919050565b60006020820190508181036000830152613e6081613e24565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613ec360258361365c565b9150613ece82613e67565b604082019050919050565b60006020820190508181036000830152613ef281613eb6565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613f5560248361365c565b9150613f6082613ef9565b604082019050919050565b60006020820190508181036000830152613f8481613f48565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613fe760358361365c565b9150613ff282613f8b565b604082019050919050565b6000602082019050818103600083015261401681613fda565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061407960348361365c565b91506140848261401d565b604082019050919050565b600060208201905081810360008301526140a88161406c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061410b60268361365c565b9150614116826140af565b604082019050919050565b6000602082019050818103600083015261413a816140fe565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061419d60248361365c565b91506141a882614141565b604082019050919050565b600060208201905081810360008301526141cc81614190565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061422f60228361365c565b915061423a826141d3565b604082019050919050565b6000602082019050818103600083015261425e81614222565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142c160258361365c565b91506142cc82614265565b604082019050919050565b600060208201905081810360008301526142f0816142b4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061435360238361365c565b915061435e826142f7565b604082019050919050565b6000602082019050818103600083015261438281614346565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006143bf60168361365c565b91506143ca82614389565b602082019050919050565b600060208201905081810360008301526143ee816143b2565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061447760498361365c565b9150614482826143f5565b606082019050919050565b600060208201905081810360008301526144a68161446a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061450960358361365c565b9150614514826144ad565b604082019050919050565b60006020820190508181036000830152614538816144fc565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061457560138361365c565b91506145808261453f565b602082019050919050565b600060208201905081810360008301526145a481614568565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061460760368361365c565b9150614612826145ab565b604082019050919050565b60006020820190508181036000830152614636816145fa565b9050919050565b60006146488261376f565b91506146538361376f565b92508282101561466657614665613b72565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006146cd60268361365c565b91506146d882614671565b604082019050919050565b600060208201905081810360008301526146fc816146c0565b9050919050565b600081905092915050565b50565b600061471e600083614703565b91506147298261470e565b600082019050919050565b600061473f82614711565b9150819050919050565b600060608201905061475e60008301866138c2565b61476b60208301856138c2565b61477860408301846138c2565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506147ed81613743565b92915050565b6000602082840312156148095761480861370c565b5b6000614817848285016147de565b91505092915050565b6000819050919050565b600061484561484061483b84614820565b613848565b61376f565b9050919050565b6148558161482a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61489081613731565b82525050565b60006148a28383614887565b60208301905092915050565b6000602082019050919050565b60006148c68261485b565b6148d08185614866565b93506148db83614877565b8060005b8381101561490c5781516148f38882614896565b97506148fe836148ae565b9250506001810190506148df565b5085935050505092915050565b600060a08201905061492e60008301886138c2565b61493b602083018761484c565b818103604083015261494d81866148bb565b905061495c606083018561396c565b61496960808301846138c2565b9695505050505050565b600060c082019050614988600083018961396c565b61499560208301886138c2565b6149a2604083018761484c565b6149af606083018661484c565b6149bc608083018561396c565b6149c960a08301846138c2565b979650505050505050565b6000815190506149e381613779565b92915050565b600080600060608486031215614a0257614a0161370c565b5b6000614a10868287016149d4565b9350506020614a21868287016149d4565b9250506040614a32868287016149d4565b915050925092509256fea2646970667358221220b404c9c1d4e0527f3ecfdd83d1f85f4ac000eac36b1884227971608f3b5f160164736f6c634300080f0033

Deployed Bytecode Sourcemap

32768:14858:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9695:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11862:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34142:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32845:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10815:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33926:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33886;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38378:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12513:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32948:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10657:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13414:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32903:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33257:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39995:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33741:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33337:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10986:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2927:103;;;;;;;;;;;;;:::i;:::-;;37486:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38926:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33072:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33037:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33634:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37322:112;;;;;;;;;;;;;:::i;:::-;;2276:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33109:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33776:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39189:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9914:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39487:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33708:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33966:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33852:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14132:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11326:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34363:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33297:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39297:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38661:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33555:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33142:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37873:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33603:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11564:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33184:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37668:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33671:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3185:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33814:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33224:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9695:100;9749:13;9782:5;9775:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9695:100;:::o;11862:169::-;11945:4;11962:39;11971:12;:10;:12::i;:::-;11985:7;11994:6;11962:8;:39::i;:::-;12019:4;12012:11;;11862:169;;;;:::o;34142:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32845:51::-;;;:::o;10815:108::-;10876:7;10903:12;;10896:19;;10815:108;:::o;33926:33::-;;;;:::o;33886:::-;;;;:::o;38378:275::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38515:4:::1;38507;38502:1;38486:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38485:26;;;;:::i;:::-;38484:35;;;;:::i;:::-;38474:6;:45;;38452:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38638:6;38628;:17;;;;:::i;:::-;38605:20;:40;;;;38378:275:::0;:::o;12513:492::-;12653:4;12670:36;12680:6;12688:9;12699:6;12670:9;:36::i;:::-;12719:24;12746:11;:19;12758:6;12746:19;;;;;;;;;;;;;;;:33;12766:12;:10;:12::i;:::-;12746:33;;;;;;;;;;;;;;;;12719:60;;12818:6;12798:16;:26;;12790:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12905:57;12914:6;12922:12;:10;:12::i;:::-;12955:6;12936:16;:25;12905:8;:57::i;:::-;12993:4;12986:11;;;12513:492;;;;;:::o;32948:53::-;32994:6;32948:53;:::o;10657:93::-;10715:5;10740:2;10733:9;;10657:93;:::o;13414:215::-;13502:4;13519:80;13528:12;:10;:12::i;:::-;13542:7;13588:10;13551:11;:25;13563:12;:10;:12::i;:::-;13551:25;;;;;;;;;;;;;;;:34;13577:7;13551:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13519:8;:80::i;:::-;13617:4;13610:11;;13414:215;;;;:::o;32903:38::-;;;:::o;33257:33::-;;;;;;;;;;;;;:::o;39995:126::-;40061:4;40085:19;:28;40105:7;40085:28;;;;;;;;;;;;;;;;;;;;;;;;;40078:35;;39995:126;;;:::o;33741:28::-;;;;:::o;33337:31::-;;;;;;;;;;;;;:::o;10986:127::-;11060:7;11087:9;:18;11097:7;11087:18;;;;;;;;;;;;;;;;11080:25;;10986:127;;;:::o;2927:103::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2992:30:::1;3019:1;2992:18;:30::i;:::-;2927:103::o:0;37486:121::-;37538:4;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37572:5:::1;37555:14;;:22;;;;;;;;;;;;;;;;;;37595:4;37588:11;;37486:121:::0;:::o;38926:167::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39081:4:::1;39039:31;:39;39071:6;39039:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38926:167:::0;;:::o;33072:30::-;;;;;;;;;;;;;:::o;33037:28::-;;;;;;;;;;;;;:::o;33634:30::-;;;;:::o;37322:112::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37393:4:::1;37377:13;;:20;;;;;;;;;;;;;;;;;;37422:4;37408:11;;:18;;;;;;;;;;;;;;;;;;37322:112::o:0;2276:87::-;2322:7;2349:6;;;;;;;;;;;2342:13;;2276:87;:::o;33109:24::-;;;;;;;;;;;;;:::o;33776:31::-;;;;:::o;39189:100::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39274:7:::1;39260:11;;:21;;;;;;;;;;;;;;;;;;39189:100:::0;:::o;9914:104::-;9970:13;10003:7;9996:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9914:104;:::o;39487:304::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39631:13:::1;39623:21;;:4;:21;;::::0;39601:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;39742:41;39771:4;39777:5;39742:28;:41::i;:::-;39487:304:::0;;:::o;33708:24::-;;;;:::o;33966:27::-;;;;:::o;33852:25::-;;;;:::o;14132:413::-;14225:4;14242:24;14269:11;:25;14281:12;:10;:12::i;:::-;14269:25;;;;;;;;;;;;;;;:34;14295:7;14269:34;;;;;;;;;;;;;;;;14242:61;;14342:15;14322:16;:35;;14314:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14435:67;14444:12;:10;:12::i;:::-;14458:7;14486:15;14467:16;:34;14435:8;:67::i;:::-;14533:4;14526:11;;;14132:413;;;;:::o;11326:175::-;11412:4;11429:42;11439:12;:10;:12::i;:::-;11453:9;11464:6;11429:9;:42::i;:::-;11489:4;11482:11;;11326:175;;;;:::o;34363:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33297:33::-;;;;;;;;;;;;;:::o;39297:182::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39413:8:::1;39382:19;:28;39402:7;39382:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39453:7;39437:34;;;39462:8;39437:34;;;;;;:::i;:::-;;;;;;;;39297:182:::0;;:::o;38661:256::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38801:4:::1;38793;38788:1;38772:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38771:26;;;;:::i;:::-;38770:35;;;;:::i;:::-;38760:6;:45;;38738:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;38902:6;38892;:17;;;;:::i;:::-;38880:9;:29;;;;38661:256:::0;:::o;33555:39::-;;;;;;;;;;;;;:::o;33142:35::-;;;;:::o;37873:497::-;37981:4;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38060:6:::1;38055:1;38039:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38038:28;;;;:::i;:::-;38025:9;:41;;38003:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38215:4;38210:1;38194:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38193:26;;;;:::i;:::-;38180:9;:39;;38158:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38331:9;38310:18;:30;;;;38358:4;38351:11;;37873:497:::0;;;:::o;33603:27::-;;;;:::o;11564:151::-;11653:7;11680:11;:18;11692:5;11680:18;;;;;;;;;;;;;;;:27;11699:7;11680:27;;;;;;;;;;;;;;;;11673:34;;11564:151;;;;:::o;33184:33::-;;;;:::o;37668:135::-;37728:4;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37768:5:::1;37745:20;;:28;;;;;;;;;;;;;;;;;;37791:4;37784:11;;37668:135:::0;:::o;33671:30::-;;;;:::o;3185:201::-;2507:12;:10;:12::i;:::-;2496:23;;:7;:5;:7::i;:::-;:23;;;2488:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3294:1:::1;3274:22;;:8;:22;;::::0;3266:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3350:28;3369:8;3350:18;:28::i;:::-;3185:201:::0;:::o;33814:31::-;;;;:::o;33224:24::-;;;;:::o;948:98::-;1001:7;1028:10;1021:17;;948:98;:::o;17816:380::-;17969:1;17952:19;;:5;:19;;;17944:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18050:1;18031:21;;:7;:21;;;18023:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18134:6;18104:11;:18;18116:5;18104:18;;;;;;;;;;;;;;;:27;18123:7;18104:27;;;;;;;;;;;;;;;:36;;;;18172:7;18156:32;;18165:5;18156:32;;;18181:6;18156:32;;;;;;:::i;:::-;;;;;;;;17816:380;;;:::o;40129:4717::-;40277:1;40261:18;;:4;:18;;;40253:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40354:1;40340:16;;:2;:16;;;40332:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40423:1;40413:6;:11;40409:93;;40441:28;40457:4;40463:2;40467:1;40441:15;:28::i;:::-;40484:7;;40409:93;40518:14;;;;;;;;;;;40514:2487;;;40579:7;:5;:7::i;:::-;40571:15;;:4;:15;;;;:49;;;;;40613:7;:5;:7::i;:::-;40607:13;;:2;:13;;;;40571:49;:86;;;;;40655:1;40641:16;;:2;:16;;;;40571:86;:128;;;;;40692:6;40678:21;;:2;:21;;;;40571:128;:158;;;;;40721:8;;;;;;;;;;;40720:9;40571:158;40549:2441;;;40769:13;;;;;;;;;;;40764:223;;40841:19;:25;40861:4;40841:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40870:19;:23;40890:2;40870:23;;;;;;;;;;;;;;;;;;;;;;;;;40841:52;40807:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;40764:223;41143:20;;;;;;;;;;;41139:641;;;41224:7;:5;:7::i;:::-;41218:13;;:2;:13;;;;:72;;;;;41274:15;41260:30;;:2;:30;;;;41218:72;:129;;;;;41333:13;41319:28;;:2;:28;;;;41218:129;41188:573;;;41511:12;41436:28;:39;41465:9;41436:39;;;;;;;;;;;;;;;;:87;41398:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;41725:12;41683:28;:39;41712:9;41683:39;;;;;;;;;;;;;;;:54;;;;41188:573;41139:641;41854:25;:31;41880:4;41854:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;41911:31;:35;41943:2;41911:35;;;;;;;;;;;;;;;;;;;;;;;;;41910:36;41854:92;41828:1147;;;42033:20;;42023:6;:30;;41989:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;42241:9;;42224:13;42234:2;42224:9;:13::i;:::-;42215:6;:22;;;;:::i;:::-;:35;;42181:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41828:1147;;;42419:25;:29;42445:2;42419:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42474:31;:37;42506:4;42474:37;;;;;;;;;;;;;;;;;;;;;;;;;42473:38;42419:92;42393:582;;;42598:20;;42588:6;:30;;42554:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;42393:582;;;42755:31;:35;42787:2;42755:35;;;;;;;;;;;;;;;;;;;;;;;;;42750:225;;42875:9;;42858:13;42868:2;42858:9;:13::i;:::-;42849:6;:22;;;;:::i;:::-;:35;;42815:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42750:225;42393:582;41828:1147;40549:2441;40514:2487;43013:28;43044:24;43062:4;43044:9;:24::i;:::-;43013:55;;43081:12;43120:18;;43096:20;:42;;43081:57;;43169:7;:35;;;;;43193:11;;;;;;;;;;;43169:35;:61;;;;;43222:8;;;;;;;;;;;43221:9;43169:61;:110;;;;;43248:25;:31;43274:4;43248:31;;;;;;;;;;;;;;;;;;;;;;;;;43247:32;43169:110;:153;;;;;43297:19;:25;43317:4;43297:25;;;;;;;;;;;;;;;;;;;;;;;;;43296:26;43169:153;:194;;;;;43340:19;:23;43360:2;43340:23;;;;;;;;;;;;;;;;;;;;;;;;;43339:24;43169:194;43151:326;;;43401:4;43390:8;;:15;;;;;;;;;;;;;;;;;;43422:10;:8;:10::i;:::-;43460:5;43449:8;;:16;;;;;;;;;;;;;;;;;;43151:326;43489:12;43505:8;;;;;;;;;;;43504:9;43489:24;;43615:19;:25;43635:4;43615:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43644:19;:23;43664:2;43644:23;;;;;;;;;;;;;;;;;;;;;;;;;43615:52;43611:100;;;43694:5;43684:15;;43611:100;43723:12;43828:7;43824:969;;;43880:25;:29;43906:2;43880:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;43929:1;43913:13;;:17;43880:50;43876:768;;;43958:34;43988:3;43958:25;43969:13;;43958:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;43951:41;;44061:13;;44041:16;;44034:4;:23;;;;:::i;:::-;44033:41;;;;:::i;:::-;44011:18;;:63;;;;;;;:::i;:::-;;;;;;;;44131:13;;44117:10;;44110:4;:17;;;;:::i;:::-;44109:35;;;;:::i;:::-;44093:12;;:51;;;;;;;:::i;:::-;;;;;;;;44213:13;;44193:16;;44186:4;:23;;;;:::i;:::-;44185:41;;;;:::i;:::-;44163:18;;:63;;;;;;;:::i;:::-;;;;;;;;43876:768;;;44288:25;:31;44314:4;44288:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;44338:1;44323:12;;:16;44288:51;44284:360;;;44367:33;44396:3;44367:24;44378:12;;44367:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;44360:40;;44468:12;;44449:15;;44442:4;:22;;;;:::i;:::-;44441:39;;;;:::i;:::-;44419:18;;:61;;;;;;;:::i;:::-;;;;;;;;44536:12;;44523:9;;44516:4;:16;;;;:::i;:::-;44515:33;;;;:::i;:::-;44499:12;;:49;;;;;;;:::i;:::-;;;;;;;;44616:12;;44597:15;;44590:4;:22;;;;:::i;:::-;44589:39;;;;:::i;:::-;44567:18;;:61;;;;;;;:::i;:::-;;;;;;;;44284:360;43876:768;44671:1;44664:4;:8;44660:91;;;44693:42;44709:4;44723;44730;44693:15;:42::i;:::-;44660:91;44777:4;44767:14;;;;;:::i;:::-;;;43824:969;44805:33;44821:4;44827:2;44831:6;44805:15;:33::i;:::-;40242:4604;;;;40129:4717;;;;:::o;3546:191::-;3620:16;3639:6;;;;;;;;;;;3620:25;;3665:8;3656:6;;:17;;;;;;;;;;;;;;;;;;3720:8;3689:40;;3710:8;3689:40;;;;;;;;;;;;3609:128;3546:191;:::o;39799:188::-;39916:5;39882:25;:31;39908:4;39882:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39973:5;39939:40;;39967:4;39939:40;;;;;;;;;;;;39799:188;;:::o;15035:733::-;15193:1;15175:20;;:6;:20;;;15167:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15277:1;15256:23;;:9;:23;;;15248:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15332:47;15353:6;15361:9;15372:6;15332:20;:47::i;:::-;15392:21;15416:9;:17;15426:6;15416:17;;;;;;;;;;;;;;;;15392:41;;15469:6;15452:13;:23;;15444:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15590:6;15574:13;:22;15554:9;:17;15564:6;15554:17;;;;;;;;;;;;;;;:42;;;;15642:6;15618:9;:20;15628:9;15618:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15683:9;15666:35;;15675:6;15666:35;;;15694:6;15666:35;;;;;;:::i;:::-;;;;;;;;15714:46;15734:6;15742:9;15753:6;15714:19;:46::i;:::-;15156:612;15035:733;;;:::o;45974:1647::-;46013:23;46039:24;46057:4;46039:9;:24::i;:::-;46013:50;;46074:25;46144:12;;46123:18;;46102;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;46074:82;;46167:12;46215:1;46196:15;:20;:46;;;;46241:1;46220:17;:22;46196:46;46192:85;;;46259:7;;;;;46192:85;46332:2;46311:18;;:23;;;;:::i;:::-;46293:15;:41;46289:115;;;46390:2;46369:18;;:23;;;;:::i;:::-;46351:41;;46289:115;46465:23;46552:1;46532:17;46510:18;;46492:15;:36;;;;:::i;:::-;46491:58;;;;:::i;:::-;:62;;;;:::i;:::-;46465:88;;46564:26;46593:36;46613:15;46593;:19;;:36;;;;:::i;:::-;46564:65;;46642:25;46670:21;46642:49;;46704:36;46721:18;46704:16;:36::i;:::-;46753:18;46774:44;46800:17;46774:21;:25;;:44;;;;:::i;:::-;46753:65;;46831:23;46857:57;46896:17;46857:34;46872:18;;46857:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;46831:83;;46925:17;46945:51;46978:17;46945:28;46960:12;;46945:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;46925:71;;47009:23;47066:9;47048:15;47035:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;47009:66;;47103:1;47082:18;:22;;;;47136:1;47115:18;:22;;;;47163:1;47148:12;:16;;;;47199:9;;;;;;;;;;;47191:23;;47222:9;47191:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47177:59;;;;;47271:1;47253:15;:19;:42;;;;;47294:1;47276:15;:19;47253:42;47249:275;;;47312:46;47325:15;47342;47312:12;:46::i;:::-;47378:134;47411:18;47448:15;47482;47378:134;;;;;;;;:::i;:::-;;;;;;;;47249:275;47558:15;;;;;;;;;;;47550:29;;47587:21;47550:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47536:77;;;;;46002:1619;;;;;;;;;;45974:1647;:::o;23270:98::-;23328:7;23359:1;23355;:5;;;;:::i;:::-;23348:12;;23270:98;;;;:::o;23669:::-;23727:7;23758:1;23754;:5;;;;:::i;:::-;23747:12;;23669:98;;;;:::o;18796:125::-;;;;:::o;19525:124::-;;;;:::o;22913:98::-;22971:7;23002:1;22998;:5;;;;:::i;:::-;22991:12;;22913:98;;;;:::o;44854:589::-;44980:21;45018:1;45004:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44980:40;;45049:4;45031;45036:1;45031:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;45075:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45065:4;45070:1;45065:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;45110:62;45127:4;45142:15;45160:11;45110:8;:62::i;:::-;45211:15;:66;;;45292:11;45318:1;45362:4;45389;45409:15;45211:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44909:534;44854:589;:::o;45451:515::-;45599:62;45616:4;45631:15;45649:11;45599:8;:62::i;:::-;45704:15;:31;;;45743:9;45776:4;45796:11;45822:1;45865;45908:9;;;;;;;;;;;45932:15;45704:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45451:515;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:468::-;7227:6;7235;7284:2;7272:9;7263:7;7259:23;7255:32;7252:119;;;7290:79;;:::i;:::-;7252:119;7410:1;7435:53;7480:7;7471:6;7460:9;7456:22;7435:53;:::i;:::-;7425:63;;7381:117;7537:2;7563:50;7605:7;7596:6;7585:9;7581:22;7563:50;:::i;:::-;7553:60;;7508:115;7162:468;;;;;:::o;7636:323::-;7692:6;7741:2;7729:9;7720:7;7716:23;7712:32;7709:119;;;7747:79;;:::i;:::-;7709:119;7867:1;7892:50;7934:7;7925:6;7914:9;7910:22;7892:50;:::i;:::-;7882:60;;7838:114;7636:323;;;;:::o;7965:474::-;8033:6;8041;8090:2;8078:9;8069:7;8065:23;8061:32;8058:119;;;8096:79;;:::i;:::-;8058:119;8216:1;8241:53;8286:7;8277:6;8266:9;8262:22;8241:53;:::i;:::-;8231:63;;8187:117;8343:2;8369:53;8414:7;8405:6;8394:9;8390:22;8369:53;:::i;:::-;8359:63;;8314:118;7965:474;;;;;:::o;8445:180::-;8493:77;8490:1;8483:88;8590:4;8587:1;8580:15;8614:4;8611:1;8604:15;8631:320;8675:6;8712:1;8706:4;8702:12;8692:22;;8759:1;8753:4;8749:12;8780:18;8770:81;;8836:4;8828:6;8824:17;8814:27;;8770:81;8898:2;8890:6;8887:14;8867:18;8864:38;8861:84;;8917:18;;:::i;:::-;8861:84;8682:269;8631:320;;;:::o;8957:182::-;9097:34;9093:1;9085:6;9081:14;9074:58;8957:182;:::o;9145:366::-;9287:3;9308:67;9372:2;9367:3;9308:67;:::i;:::-;9301:74;;9384:93;9473:3;9384:93;:::i;:::-;9502:2;9497:3;9493:12;9486:19;;9145:366;;;:::o;9517:419::-;9683:4;9721:2;9710:9;9706:18;9698:26;;9770:9;9764:4;9760:20;9756:1;9745:9;9741:17;9734:47;9798:131;9924:4;9798:131;:::i;:::-;9790:139;;9517:419;;;:::o;9942:180::-;9990:77;9987:1;9980:88;10087:4;10084:1;10077:15;10111:4;10108:1;10101:15;10128:348;10168:7;10191:20;10209:1;10191:20;:::i;:::-;10186:25;;10225:20;10243:1;10225:20;:::i;:::-;10220:25;;10413:1;10345:66;10341:74;10338:1;10335:81;10330:1;10323:9;10316:17;10312:105;10309:131;;;10420:18;;:::i;:::-;10309:131;10468:1;10465;10461:9;10450:20;;10128:348;;;;:::o;10482:180::-;10530:77;10527:1;10520:88;10627:4;10624:1;10617:15;10651:4;10648:1;10641:15;10668:185;10708:1;10725:20;10743:1;10725:20;:::i;:::-;10720:25;;10759:20;10777:1;10759:20;:::i;:::-;10754:25;;10798:1;10788:35;;10803:18;;:::i;:::-;10788:35;10845:1;10842;10838:9;10833:14;;10668:185;;;;:::o;10859:234::-;10999:34;10995:1;10987:6;10983:14;10976:58;11068:17;11063:2;11055:6;11051:15;11044:42;10859:234;:::o;11099:366::-;11241:3;11262:67;11326:2;11321:3;11262:67;:::i;:::-;11255:74;;11338:93;11427:3;11338:93;:::i;:::-;11456:2;11451:3;11447:12;11440:19;;11099:366;;;:::o;11471:419::-;11637:4;11675:2;11664:9;11660:18;11652:26;;11724:9;11718:4;11714:20;11710:1;11699:9;11695:17;11688:47;11752:131;11878:4;11752:131;:::i;:::-;11744:139;;11471:419;;;:::o;11896:227::-;12036:34;12032:1;12024:6;12020:14;12013:58;12105:10;12100:2;12092:6;12088:15;12081:35;11896:227;:::o;12129:366::-;12271:3;12292:67;12356:2;12351:3;12292:67;:::i;:::-;12285:74;;12368:93;12457:3;12368:93;:::i;:::-;12486:2;12481:3;12477:12;12470:19;;12129:366;;;:::o;12501:419::-;12667:4;12705:2;12694:9;12690:18;12682:26;;12754:9;12748:4;12744:20;12740:1;12729:9;12725:17;12718:47;12782:131;12908:4;12782:131;:::i;:::-;12774:139;;12501:419;;;:::o;12926:305::-;12966:3;12985:20;13003:1;12985:20;:::i;:::-;12980:25;;13019:20;13037:1;13019:20;:::i;:::-;13014:25;;13173:1;13105:66;13101:74;13098:1;13095:81;13092:107;;;13179:18;;:::i;:::-;13092:107;13223:1;13220;13216:9;13209:16;;12926:305;;;;:::o;13237:244::-;13377:34;13373:1;13365:6;13361:14;13354:58;13446:27;13441:2;13433:6;13429:15;13422:52;13237:244;:::o;13487:366::-;13629:3;13650:67;13714:2;13709:3;13650:67;:::i;:::-;13643:74;;13726:93;13815:3;13726:93;:::i;:::-;13844:2;13839:3;13835:12;13828:19;;13487:366;;;:::o;13859:419::-;14025:4;14063:2;14052:9;14048:18;14040:26;;14112:9;14106:4;14102:20;14098:1;14087:9;14083:17;14076:47;14140:131;14266:4;14140:131;:::i;:::-;14132:139;;13859:419;;;:::o;14284:224::-;14424:34;14420:1;14412:6;14408:14;14401:58;14493:7;14488:2;14480:6;14476:15;14469:32;14284:224;:::o;14514:366::-;14656:3;14677:67;14741:2;14736:3;14677:67;:::i;:::-;14670:74;;14753:93;14842:3;14753:93;:::i;:::-;14871:2;14866:3;14862:12;14855:19;;14514:366;;;:::o;14886:419::-;15052:4;15090:2;15079:9;15075:18;15067:26;;15139:9;15133:4;15129:20;15125:1;15114:9;15110:17;15103:47;15167:131;15293:4;15167:131;:::i;:::-;15159:139;;14886:419;;;:::o;15311:223::-;15451:34;15447:1;15439:6;15435:14;15428:58;15520:6;15515:2;15507:6;15503:15;15496:31;15311:223;:::o;15540:366::-;15682:3;15703:67;15767:2;15762:3;15703:67;:::i;:::-;15696:74;;15779:93;15868:3;15779:93;:::i;:::-;15897:2;15892:3;15888:12;15881:19;;15540:366;;;:::o;15912:419::-;16078:4;16116:2;16105:9;16101:18;16093:26;;16165:9;16159:4;16155:20;16151:1;16140:9;16136:17;16129:47;16193:131;16319:4;16193:131;:::i;:::-;16185:139;;15912:419;;;:::o;16337:240::-;16477:34;16473:1;16465:6;16461:14;16454:58;16546:23;16541:2;16533:6;16529:15;16522:48;16337:240;:::o;16583:366::-;16725:3;16746:67;16810:2;16805:3;16746:67;:::i;:::-;16739:74;;16822:93;16911:3;16822:93;:::i;:::-;16940:2;16935:3;16931:12;16924:19;;16583:366;;;:::o;16955:419::-;17121:4;17159:2;17148:9;17144:18;17136:26;;17208:9;17202:4;17198:20;17194:1;17183:9;17179:17;17172:47;17236:131;17362:4;17236:131;:::i;:::-;17228:139;;16955:419;;;:::o;17380:239::-;17520:34;17516:1;17508:6;17504:14;17497:58;17589:22;17584:2;17576:6;17572:15;17565:47;17380:239;:::o;17625:366::-;17767:3;17788:67;17852:2;17847:3;17788:67;:::i;:::-;17781:74;;17864:93;17953:3;17864:93;:::i;:::-;17982:2;17977:3;17973:12;17966:19;;17625:366;;;:::o;17997:419::-;18163:4;18201:2;18190:9;18186:18;18178:26;;18250:9;18244:4;18240:20;18236:1;18225:9;18221:17;18214:47;18278:131;18404:4;18278:131;:::i;:::-;18270:139;;17997:419;;;:::o;18422:225::-;18562:34;18558:1;18550:6;18546:14;18539:58;18631:8;18626:2;18618:6;18614:15;18607:33;18422:225;:::o;18653:366::-;18795:3;18816:67;18880:2;18875:3;18816:67;:::i;:::-;18809:74;;18892:93;18981:3;18892:93;:::i;:::-;19010:2;19005:3;19001:12;18994:19;;18653:366;;;:::o;19025:419::-;19191:4;19229:2;19218:9;19214:18;19206:26;;19278:9;19272:4;19268:20;19264:1;19253:9;19249:17;19242:47;19306:131;19432:4;19306:131;:::i;:::-;19298:139;;19025:419;;;:::o;19450:223::-;19590:34;19586:1;19578:6;19574:14;19567:58;19659:6;19654:2;19646:6;19642:15;19635:31;19450:223;:::o;19679:366::-;19821:3;19842:67;19906:2;19901:3;19842:67;:::i;:::-;19835:74;;19918:93;20007:3;19918:93;:::i;:::-;20036:2;20031:3;20027:12;20020:19;;19679:366;;;:::o;20051:419::-;20217:4;20255:2;20244:9;20240:18;20232:26;;20304:9;20298:4;20294:20;20290:1;20279:9;20275:17;20268:47;20332:131;20458:4;20332:131;:::i;:::-;20324:139;;20051:419;;;:::o;20476:221::-;20616:34;20612:1;20604:6;20600:14;20593:58;20685:4;20680:2;20672:6;20668:15;20661:29;20476:221;:::o;20703:366::-;20845:3;20866:67;20930:2;20925:3;20866:67;:::i;:::-;20859:74;;20942:93;21031:3;20942:93;:::i;:::-;21060:2;21055:3;21051:12;21044:19;;20703:366;;;:::o;21075:419::-;21241:4;21279:2;21268:9;21264:18;21256:26;;21328:9;21322:4;21318:20;21314:1;21303:9;21299:17;21292:47;21356:131;21482:4;21356:131;:::i;:::-;21348:139;;21075:419;;;:::o;21500:224::-;21640:34;21636:1;21628:6;21624:14;21617:58;21709:7;21704:2;21696:6;21692:15;21685:32;21500:224;:::o;21730:366::-;21872:3;21893:67;21957:2;21952:3;21893:67;:::i;:::-;21886:74;;21969:93;22058:3;21969:93;:::i;:::-;22087:2;22082:3;22078:12;22071:19;;21730:366;;;:::o;22102:419::-;22268:4;22306:2;22295:9;22291:18;22283:26;;22355:9;22349:4;22345:20;22341:1;22330:9;22326:17;22319:47;22383:131;22509:4;22383:131;:::i;:::-;22375:139;;22102:419;;;:::o;22527:222::-;22667:34;22663:1;22655:6;22651:14;22644:58;22736:5;22731:2;22723:6;22719:15;22712:30;22527:222;:::o;22755:366::-;22897:3;22918:67;22982:2;22977:3;22918:67;:::i;:::-;22911:74;;22994:93;23083:3;22994:93;:::i;:::-;23112:2;23107:3;23103:12;23096:19;;22755:366;;;:::o;23127:419::-;23293:4;23331:2;23320:9;23316:18;23308:26;;23380:9;23374:4;23370:20;23366:1;23355:9;23351:17;23344:47;23408:131;23534:4;23408:131;:::i;:::-;23400:139;;23127:419;;;:::o;23552:172::-;23692:24;23688:1;23680:6;23676:14;23669:48;23552:172;:::o;23730:366::-;23872:3;23893:67;23957:2;23952:3;23893:67;:::i;:::-;23886:74;;23969:93;24058:3;23969:93;:::i;:::-;24087:2;24082:3;24078:12;24071:19;;23730:366;;;:::o;24102:419::-;24268:4;24306:2;24295:9;24291:18;24283:26;;24355:9;24349:4;24345:20;24341:1;24330:9;24326:17;24319:47;24383:131;24509:4;24383:131;:::i;:::-;24375:139;;24102:419;;;:::o;24527:297::-;24667:34;24663:1;24655:6;24651:14;24644:58;24736:34;24731:2;24723:6;24719:15;24712:59;24805:11;24800:2;24792:6;24788:15;24781:36;24527:297;:::o;24830:366::-;24972:3;24993:67;25057:2;25052:3;24993:67;:::i;:::-;24986:74;;25069:93;25158:3;25069:93;:::i;:::-;25187:2;25182:3;25178:12;25171:19;;24830:366;;;:::o;25202:419::-;25368:4;25406:2;25395:9;25391:18;25383:26;;25455:9;25449:4;25445:20;25441:1;25430:9;25426:17;25419:47;25483:131;25609:4;25483:131;:::i;:::-;25475:139;;25202:419;;;:::o;25627:240::-;25767:34;25763:1;25755:6;25751:14;25744:58;25836:23;25831:2;25823:6;25819:15;25812:48;25627:240;:::o;25873:366::-;26015:3;26036:67;26100:2;26095:3;26036:67;:::i;:::-;26029:74;;26112:93;26201:3;26112:93;:::i;:::-;26230:2;26225:3;26221:12;26214:19;;25873:366;;;:::o;26245:419::-;26411:4;26449:2;26438:9;26434:18;26426:26;;26498:9;26492:4;26488:20;26484:1;26473:9;26469:17;26462:47;26526:131;26652:4;26526:131;:::i;:::-;26518:139;;26245:419;;;:::o;26670:169::-;26810:21;26806:1;26798:6;26794:14;26787:45;26670:169;:::o;26845:366::-;26987:3;27008:67;27072:2;27067:3;27008:67;:::i;:::-;27001:74;;27084:93;27173:3;27084:93;:::i;:::-;27202:2;27197:3;27193:12;27186:19;;26845:366;;;:::o;27217:419::-;27383:4;27421:2;27410:9;27406:18;27398:26;;27470:9;27464:4;27460:20;27456:1;27445:9;27441:17;27434:47;27498:131;27624:4;27498:131;:::i;:::-;27490:139;;27217:419;;;:::o;27642:241::-;27782:34;27778:1;27770:6;27766:14;27759:58;27851:24;27846:2;27838:6;27834:15;27827:49;27642:241;:::o;27889:366::-;28031:3;28052:67;28116:2;28111:3;28052:67;:::i;:::-;28045:74;;28128:93;28217:3;28128:93;:::i;:::-;28246:2;28241:3;28237:12;28230:19;;27889:366;;;:::o;28261:419::-;28427:4;28465:2;28454:9;28450:18;28442:26;;28514:9;28508:4;28504:20;28500:1;28489:9;28485:17;28478:47;28542:131;28668:4;28542:131;:::i;:::-;28534:139;;28261:419;;;:::o;28686:191::-;28726:4;28746:20;28764:1;28746:20;:::i;:::-;28741:25;;28780:20;28798:1;28780:20;:::i;:::-;28775:25;;28819:1;28816;28813:8;28810:34;;;28824:18;;:::i;:::-;28810:34;28869:1;28866;28862:9;28854:17;;28686:191;;;;:::o;28883:225::-;29023:34;29019:1;29011:6;29007:14;29000:58;29092:8;29087:2;29079:6;29075:15;29068:33;28883:225;:::o;29114:366::-;29256:3;29277:67;29341:2;29336:3;29277:67;:::i;:::-;29270:74;;29353:93;29442:3;29353:93;:::i;:::-;29471:2;29466:3;29462:12;29455:19;;29114:366;;;:::o;29486:419::-;29652:4;29690:2;29679:9;29675:18;29667:26;;29739:9;29733:4;29729:20;29725:1;29714:9;29710:17;29703:47;29767:131;29893:4;29767:131;:::i;:::-;29759:139;;29486:419;;;:::o;29911:147::-;30012:11;30049:3;30034:18;;29911:147;;;;:::o;30064:114::-;;:::o;30184:398::-;30343:3;30364:83;30445:1;30440:3;30364:83;:::i;:::-;30357:90;;30456:93;30545:3;30456:93;:::i;:::-;30574:1;30569:3;30565:11;30558:18;;30184:398;;;:::o;30588:379::-;30772:3;30794:147;30937:3;30794:147;:::i;:::-;30787:154;;30958:3;30951:10;;30588:379;;;:::o;30973:442::-;31122:4;31160:2;31149:9;31145:18;31137:26;;31173:71;31241:1;31230:9;31226:17;31217:6;31173:71;:::i;:::-;31254:72;31322:2;31311:9;31307:18;31298:6;31254:72;:::i;:::-;31336;31404:2;31393:9;31389:18;31380:6;31336:72;:::i;:::-;30973:442;;;;;;:::o;31421:180::-;31469:77;31466:1;31459:88;31566:4;31563:1;31556:15;31590:4;31587:1;31580:15;31607:180;31655:77;31652:1;31645:88;31752:4;31749:1;31742:15;31776:4;31773:1;31766:15;31793:143;31850:5;31881:6;31875:13;31866:22;;31897:33;31924:5;31897:33;:::i;:::-;31793:143;;;;:::o;31942:351::-;32012:6;32061:2;32049:9;32040:7;32036:23;32032:32;32029:119;;;32067:79;;:::i;:::-;32029:119;32187:1;32212:64;32268:7;32259:6;32248:9;32244:22;32212:64;:::i;:::-;32202:74;;32158:128;31942:351;;;;:::o;32299:85::-;32344:7;32373:5;32362:16;;32299:85;;;:::o;32390:158::-;32448:9;32481:61;32499:42;32508:32;32534:5;32508:32;:::i;:::-;32499:42;:::i;:::-;32481:61;:::i;:::-;32468:74;;32390:158;;;:::o;32554:147::-;32649:45;32688:5;32649:45;:::i;:::-;32644:3;32637:58;32554:147;;:::o;32707:114::-;32774:6;32808:5;32802:12;32792:22;;32707:114;;;:::o;32827:184::-;32926:11;32960:6;32955:3;32948:19;33000:4;32995:3;32991:14;32976:29;;32827:184;;;;:::o;33017:132::-;33084:4;33107:3;33099:11;;33137:4;33132:3;33128:14;33120:22;;33017:132;;;:::o;33155:108::-;33232:24;33250:5;33232:24;:::i;:::-;33227:3;33220:37;33155:108;;:::o;33269:179::-;33338:10;33359:46;33401:3;33393:6;33359:46;:::i;:::-;33437:4;33432:3;33428:14;33414:28;;33269:179;;;;:::o;33454:113::-;33524:4;33556;33551:3;33547:14;33539:22;;33454:113;;;:::o;33603:732::-;33722:3;33751:54;33799:5;33751:54;:::i;:::-;33821:86;33900:6;33895:3;33821:86;:::i;:::-;33814:93;;33931:56;33981:5;33931:56;:::i;:::-;34010:7;34041:1;34026:284;34051:6;34048:1;34045:13;34026:284;;;34127:6;34121:13;34154:63;34213:3;34198:13;34154:63;:::i;:::-;34147:70;;34240:60;34293:6;34240:60;:::i;:::-;34230:70;;34086:224;34073:1;34070;34066:9;34061:14;;34026:284;;;34030:14;34326:3;34319:10;;33727:608;;;33603:732;;;;:::o;34341:831::-;34604:4;34642:3;34631:9;34627:19;34619:27;;34656:71;34724:1;34713:9;34709:17;34700:6;34656:71;:::i;:::-;34737:80;34813:2;34802:9;34798:18;34789:6;34737:80;:::i;:::-;34864:9;34858:4;34854:20;34849:2;34838:9;34834:18;34827:48;34892:108;34995:4;34986:6;34892:108;:::i;:::-;34884:116;;35010:72;35078:2;35067:9;35063:18;35054:6;35010:72;:::i;:::-;35092:73;35160:3;35149:9;35145:19;35136:6;35092:73;:::i;:::-;34341:831;;;;;;;;:::o;35178:807::-;35427:4;35465:3;35454:9;35450:19;35442:27;;35479:71;35547:1;35536:9;35532:17;35523:6;35479:71;:::i;:::-;35560:72;35628:2;35617:9;35613:18;35604:6;35560:72;:::i;:::-;35642:80;35718:2;35707:9;35703:18;35694:6;35642:80;:::i;:::-;35732;35808:2;35797:9;35793:18;35784:6;35732:80;:::i;:::-;35822:73;35890:3;35879:9;35875:19;35866:6;35822:73;:::i;:::-;35905;35973:3;35962:9;35958:19;35949:6;35905:73;:::i;:::-;35178:807;;;;;;;;;:::o;35991:143::-;36048:5;36079:6;36073:13;36064:22;;36095:33;36122:5;36095:33;:::i;:::-;35991:143;;;;:::o;36140:663::-;36228:6;36236;36244;36293:2;36281:9;36272:7;36268:23;36264:32;36261:119;;;36299:79;;:::i;:::-;36261:119;36419:1;36444:64;36500:7;36491:6;36480:9;36476:22;36444:64;:::i;:::-;36434:74;;36390:128;36557:2;36583:64;36639:7;36630:6;36619:9;36615:22;36583:64;:::i;:::-;36573:74;;36528:129;36696:2;36722:64;36778:7;36769:6;36758:9;36754:22;36722:64;:::i;:::-;36712:74;;36667:129;36140:663;;;;;:::o

Swarm Source

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