ETH Price: $3,196.39 (+1.93%)

Token

AnonymousCryptoholicsClub (ACC☠️)
 

Overview

Max Total Supply

1,000,000,000 ACC☠️

Holders

54

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
19,008,000 ACC☠️

Value
$0.00
0xa2254Ad801A1436Fb47e256a91c22EAD087CE577
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:
ACC

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-04
*/

// File: acc.sol

/**
$☠️ACC - Anonymous Cryptoholics Club - First meeting 04/10/22 


https://www.anonymouscrytoholics.club/
https://twitter.com/anonymouscceth

*/
// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

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

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

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

    bool private swapping;

    address public devWallet;
    address public lpWallet = deadAddress;

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

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

    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    uint256 public buyTotalFees = buyLiquidityFee + buyDevFee;

    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
    uint256 public sellTotalFees = sellLiquidityFee + sellDevFee;

	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("AnonymousCryptoholicsClub", unicode"ACC☠️") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 4;

        uint256 _sellLiquidityFee = 1;
        uint256 _sellDevFee = 3;

        uint256 totalSupply = 1 * 1e9 * 1e18;

        maxTransactionAmount = 2 * 1e7 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 2 * 1e7 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 20) / 10000; // 0.2% swap wallet

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

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

        devWallet = address(0x6D9a01aae9e50F0814a329C81bDEC287EA7c0C05); // 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(devWallet), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(address(devWallet), 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;
    }

    // edit fees, cannot exceed 98% buys/sells
    function setFees(uint256 newBuyLiquidityFee, uint256 newBuyDevFee, uint256 newSellLiquidityFee, uint256 newSellDevFee) external onlyOwner {
        buyLiquidityFee = newBuyLiquidityFee;
        buyDevFee = newBuyDevFee;
        sellLiquidityFee = newSellLiquidityFee;
        sellDevFee = newSellDevFee;

        buyTotalFees = buyLiquidityFee + buyDevFee;
        sellTotalFees = sellLiquidityFee + sellDevFee;

        require(buyTotalFees <= 98, "fee too high");
        require(sellTotalFees <= 98, "fee too high");
    }

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

                //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;                
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / 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
            lpWallet,
            block.timestamp
        );
    }

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
	
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDev;

        tokensForLiquidity = 0;
        tokensForDev = 0;

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

        (success, ) = address(devWallet).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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"lpWallet","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":"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":[{"internalType":"uint256","name":"newBuyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"newBuyDevFee","type":"uint256"},{"internalType":"uint256","name":"newSellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"newSellDevFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405261dead600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff021916908315150217905550600d54600c54620000aa919062000c04565b600e55601054600f54620000bf919062000c04565b601155348015620000cf57600080fd5b506040518060400160405280601981526020017f416e6f6e796d6f757343727970746f686f6c696373436c7562000000000000008152506040518060400160405280600981526020017f414343e298a0efb88f000000000000000000000000000000000000000000000081525081600390805190602001906200015492919062000b1b565b5080600490805190602001906200016d92919062000b1b565b5050506200019062000184620005db60201b60201c565b620005e360201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001bc816001620006a960201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000262919062000ccb565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002ca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f0919062000ccb565b6040518363ffffffff1660e01b81526004016200030f92919062000d0e565b6020604051808303816000875af11580156200032f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000355919062000ccb565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200039d60a0516001620006a960201b60201c565b620003b260a05160016200079360201b60201c565b6000806004905060006001905060006003905060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a819055506127106014826200040c919062000d3b565b62000418919062000dcb565b60098190555084600c8190555083600d81905550600d54600c546200043e919062000c04565b600e8190555082600f8190555081601081905550601054600f5462000464919062000c04565b601181905550736d9a01aae9e50f0814a329c81bdec287ea7c0c05600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004e1620004d36200083460201b60201c565b60016200085e60201b60201c565b620004f43060016200085e60201b60201c565b6200050961dead60016200085e60201b60201c565b6200053e600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200085e60201b60201c565b62000560620005526200083460201b60201c565b6001620006a960201b60201c565b62000573306001620006a960201b60201c565b6200058861dead6001620006a960201b60201c565b620005bd600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006a960201b60201c565b620005cf33826200099860201b60201c565b50505050505062000fc5565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006b9620005db60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006df6200083460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000738576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200072f9062000e64565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200086e620005db60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008946200083460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008e49062000e64565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200098c919062000ea3565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a029062000f10565b60405180910390fd5b62000a1f6000838362000b1160201b60201c565b806002600082825462000a33919062000c04565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a8a919062000c04565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000af1919062000f43565b60405180910390a362000b0d6000838362000b1660201b60201c565b5050565b505050565b505050565b82805462000b299062000f8f565b90600052602060002090601f01602090048101928262000b4d576000855562000b99565b82601f1062000b6857805160ff191683800117855562000b99565b8280016001018555821562000b99579182015b8281111562000b9857825182559160200191906001019062000b7b565b5b50905062000ba8919062000bac565b5090565b5b8082111562000bc757600081600090555060010162000bad565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c118262000bcb565b915062000c1e8362000bcb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c565762000c5562000bd5565b5b828201905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c938262000c66565b9050919050565b62000ca58162000c86565b811462000cb157600080fd5b50565b60008151905062000cc58162000c9a565b92915050565b60006020828403121562000ce45762000ce362000c61565b5b600062000cf48482850162000cb4565b91505092915050565b62000d088162000c86565b82525050565b600060408201905062000d25600083018562000cfd565b62000d34602083018462000cfd565b9392505050565b600062000d488262000bcb565b915062000d558362000bcb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d915762000d9062000bd5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000dd88262000bcb565b915062000de58362000bcb565b92508262000df85762000df762000d9c565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e4c60208362000e03565b915062000e598262000e14565b602082019050919050565b6000602082019050818103600083015262000e7f8162000e3d565b9050919050565b60008115159050919050565b62000e9d8162000e86565b82525050565b600060208201905062000eba600083018462000e92565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ef8601f8362000e03565b915062000f058262000ec0565b602082019050919050565b6000602082019050818103600083015262000f2b8162000ee9565b9050919050565b62000f3d8162000bcb565b82525050565b600060208201905062000f5a600083018462000f32565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fa857607f821691505b6020821081141562000fbf5762000fbe62000f60565b5b50919050565b60805160a0516143126200101560003960008181610d26015261143a015260008181610b3f01528181612d5f01528181612e4001528181612e6701528181612f030152612f2a01526143126000f3fe60806040526004361061026b5760003560e01c80638da5cb5b11610144578063bbc0c742116100b6578063dd62ed3e1161007a578063dd62ed3e1461095b578063e2f4560514610998578063f11a24d3146109c3578063f2fde38b146109ee578063f637434214610a17578063f8b45b0514610a4257610272565b8063bbc0c74214610874578063c02466681461089f578063c8c8ebe4146108c8578063d257b34f146108f3578063d85ba0631461093057610272565b80639c3b4fdc116101085780639c3b4fdc1461073c5780639fccce3214610767578063a0d82dc514610792578063a457c2d7146107bd578063a9059cbb146107fa578063b62496f51461083757610272565b80638da5cb5b146106695780638ea5220f14610694578063924de9b7146106bf57806395d89b41146106e85780639a7a23d61461071357610272565b80634a62bb65116101dd5780636fcba377116101a15780636fcba3771461058157806370a08231146105aa578063715018a6146105e7578063751039fc146105fe5780637571336a146106295780638a8c523c1461065257610272565b80634a62bb65146104985780634fbee193146104c35780636303516c146105005780636a486a8e1461052b5780636ddd17131461055657610272565b80631a8145bb1161022f5780631a8145bb1461037257806323b872dd1461039d57806327c8f835146103da578063313ce56714610405578063395093511461043057806349bd5a5e1461046d57610272565b806306fdde0314610277578063095ea7b3146102a257806310d5de53146102df5780631694505e1461031c57806318160ddd1461034757610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a6d565b6040516102999190613092565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c4919061314d565b610aff565b6040516102d691906131a8565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906131c3565b610b1d565b60405161031391906131a8565b60405180910390f35b34801561032857600080fd5b50610331610b3d565b60405161033e919061324f565b60405180910390f35b34801561035357600080fd5b5061035c610b61565b6040516103699190613279565b60405180910390f35b34801561037e57600080fd5b50610387610b6b565b6040516103949190613279565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf9190613294565b610b71565b6040516103d191906131a8565b60405180910390f35b3480156103e657600080fd5b506103ef610c69565b6040516103fc91906132f6565b60405180910390f35b34801561041157600080fd5b5061041a610c6f565b604051610427919061332d565b60405180910390f35b34801561043c57600080fd5b506104576004803603810190610452919061314d565b610c78565b60405161046491906131a8565b60405180910390f35b34801561047957600080fd5b50610482610d24565b60405161048f91906132f6565b60405180910390f35b3480156104a457600080fd5b506104ad610d48565b6040516104ba91906131a8565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e591906131c3565b610d5b565b6040516104f791906131a8565b60405180910390f35b34801561050c57600080fd5b50610515610db1565b60405161052291906132f6565b60405180910390f35b34801561053757600080fd5b50610540610dd7565b60405161054d9190613279565b60405180910390f35b34801561056257600080fd5b5061056b610ddd565b60405161057891906131a8565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613348565b610df0565b005b3480156105b657600080fd5b506105d160048036038101906105cc91906131c3565b610f46565b6040516105de9190613279565b60405180910390f35b3480156105f357600080fd5b506105fc610f8e565b005b34801561060a57600080fd5b50610613611016565b60405161062091906131a8565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b91906133db565b6110b6565b005b34801561065e57600080fd5b5061066761118d565b005b34801561067557600080fd5b5061067e611241565b60405161068b91906132f6565b60405180910390f35b3480156106a057600080fd5b506106a961126b565b6040516106b691906132f6565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e1919061341b565b611291565b005b3480156106f457600080fd5b506106fd61132a565b60405161070a9190613092565b60405180910390f35b34801561071f57600080fd5b5061073a600480360381019061073591906133db565b6113bc565b005b34801561074857600080fd5b506107516114d5565b60405161075e9190613279565b60405180910390f35b34801561077357600080fd5b5061077c6114db565b6040516107899190613279565b60405180910390f35b34801561079e57600080fd5b506107a76114e1565b6040516107b49190613279565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df919061314d565b6114e7565b6040516107f191906131a8565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c919061314d565b6115d2565b60405161082e91906131a8565b60405180910390f35b34801561084357600080fd5b5061085e600480360381019061085991906131c3565b6115f0565b60405161086b91906131a8565b60405180910390f35b34801561088057600080fd5b50610889611610565b60405161089691906131a8565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c191906133db565b611623565b005b3480156108d457600080fd5b506108dd611748565b6040516108ea9190613279565b60405180910390f35b3480156108ff57600080fd5b5061091a60048036038101906109159190613448565b61174e565b60405161092791906131a8565b60405180910390f35b34801561093c57600080fd5b506109456118a3565b6040516109529190613279565b60405180910390f35b34801561096757600080fd5b50610982600480360381019061097d9190613475565b6118a9565b60405161098f9190613279565b60405180910390f35b3480156109a457600080fd5b506109ad611930565b6040516109ba9190613279565b60405180910390f35b3480156109cf57600080fd5b506109d8611936565b6040516109e59190613279565b60405180910390f35b3480156109fa57600080fd5b50610a156004803603810190610a1091906131c3565b61193c565b005b348015610a2357600080fd5b50610a2c611a34565b604051610a399190613279565b60405180910390f35b348015610a4e57600080fd5b50610a57611a3a565b604051610a649190613279565b60405180910390f35b606060038054610a7c906134e4565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa8906134e4565b8015610af55780601f10610aca57610100808354040283529160200191610af5565b820191906000526020600020905b815481529060010190602001808311610ad857829003601f168201915b5050505050905090565b6000610b13610b0c611a40565b8484611a48565b6001905092915050565b60156020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60125481565b6000610b7e848484611c13565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bc9611a40565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090613588565b60405180910390fd5b610c5d85610c55611a40565b858403611a48565b60019150509392505050565b61dead81565b60006012905090565b6000610d1a610c85611a40565b848460016000610c93611a40565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d1591906135d7565b611a48565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600b60029054906101000a900460ff1681565b610df8611a40565b73ffffffffffffffffffffffffffffffffffffffff16610e16611241565b73ffffffffffffffffffffffffffffffffffffffff1614610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6390613679565b60405180910390fd5b83600c8190555082600d8190555081600f8190555080601081905550600d54600c54610e9891906135d7565b600e81905550601054600f54610eae91906135d7565b6011819055506062600e541115610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef1906136e5565b60405180910390fd5b60626011541115610f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f37906136e5565b60405180910390fd5b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f96611a40565b73ffffffffffffffffffffffffffffffffffffffff16610fb4611241565b73ffffffffffffffffffffffffffffffffffffffff161461100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190613679565b60405180910390fd5b611014600061267f565b565b6000611020611a40565b73ffffffffffffffffffffffffffffffffffffffff1661103e611241565b73ffffffffffffffffffffffffffffffffffffffff1614611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90613679565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6110be611a40565b73ffffffffffffffffffffffffffffffffffffffff166110dc611241565b73ffffffffffffffffffffffffffffffffffffffff1614611132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112990613679565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611195611a40565b73ffffffffffffffffffffffffffffffffffffffff166111b3611241565b73ffffffffffffffffffffffffffffffffffffffff1614611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090613679565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611299611a40565b73ffffffffffffffffffffffffffffffffffffffff166112b7611241565b73ffffffffffffffffffffffffffffffffffffffff161461130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490613679565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611339906134e4565b80601f0160208091040260200160405190810160405280929190818152602001828054611365906134e4565b80156113b25780601f10611387576101008083540402835291602001916113b2565b820191906000526020600020905b81548152906001019060200180831161139557829003601f168201915b5050505050905090565b6113c4611a40565b73ffffffffffffffffffffffffffffffffffffffff166113e2611241565b73ffffffffffffffffffffffffffffffffffffffff1614611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90613679565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613777565b60405180910390fd5b6114d18282612745565b5050565b600d5481565b60135481565b60105481565b600080600160006114f6611a40565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90613809565b60405180910390fd5b6115c76115be611a40565b85858403611a48565b600191505092915050565b60006115e66115df611a40565b8484611c13565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b61162b611a40565b73ffffffffffffffffffffffffffffffffffffffff16611649611241565b73ffffffffffffffffffffffffffffffffffffffff161461169f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169690613679565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161173c91906131a8565b60405180910390a25050565b60085481565b6000611758611a40565b73ffffffffffffffffffffffffffffffffffffffff16611776611241565b73ffffffffffffffffffffffffffffffffffffffff16146117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c390613679565b60405180910390fd5b620186a060016117da610b61565b6117e49190613829565b6117ee91906138b2565b821015611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790613955565b60405180910390fd5b6103e8600561183d610b61565b6118479190613829565b61185191906138b2565b821115611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188a906139e7565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600c5481565b611944611a40565b73ffffffffffffffffffffffffffffffffffffffff16611962611241565b73ffffffffffffffffffffffffffffffffffffffff16146119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90613679565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f90613a79565b60405180910390fd5b611a318161267f565b50565b600f5481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90613b0b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90613b9d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c069190613279565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7a90613c2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cea90613cc1565b60405180910390fd5b6000811415611d0d57611d08838360006127e6565b61267a565b600b60009054906101000a900460ff161561220857611d2a611241565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d985750611d68611241565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611dd15750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e0b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e245750600560149054906101000a900460ff16155b1561220757600b60019054906101000a900460ff16611f1e57601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ede5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1490613d2d565b60405180910390fd5b5b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611fc15750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120685760085481111561200b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200290613dbf565b60405180910390fd5b600a5461201783610f46565b8261202291906135d7565b1115612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a90613e2b565b60405180910390fd5b612206565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561210b5750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561215a57600854811115612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90613ebd565b60405180910390fd5b612205565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661220457600a546121b783610f46565b826121c291906135d7565b1115612203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fa90613e2b565b60405180910390fd5b5b5b5b5b5b600061221330610f46565b9050600060095482101590508080156122385750600b60029054906101000a900460ff165b80156122515750600560149054906101000a900460ff16155b80156122a75750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122fd5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123535750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612397576001600560146101000a81548160ff02191690831515021790555061237b612a67565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061244d5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561245757600090505b6000811561266a57601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124ba57506000601154115b15612554576124e760646124d960115488612c7490919063ffffffff16565b612c8a90919063ffffffff16565b9050601154600f54826124fa9190613829565b61250491906138b2565b6012600082825461251591906135d7565b925050819055506011546010548261252d9190613829565b61253791906138b2565b6013600082825461254891906135d7565b92505081905550612646565b601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125af57506000600e54115b15612645576125dc60646125ce600e5488612c7490919063ffffffff16565b612c8a90919063ffffffff16565b9050600e54600c54826125ef9190613829565b6125f991906138b2565b6012600082825461260a91906135d7565b92505081905550600e54600d54826126229190613829565b61262c91906138b2565b6013600082825461263d91906135d7565b925050819055505b5b600081111561265b5761265a8730836127e6565b5b80856126679190613edd565b94505b6126758787876127e6565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d90613c2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bd90613cc1565b60405180910390fd5b6128d1838383612ca0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294e90613f83565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129ea91906135d7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a4e9190613279565b60405180910390a3612a61848484612ca5565b50505050565b6000612a7230610f46565b90506000601354601254612a8691906135d7565b9050600080831480612a985750600082145b15612aa557505050612c72565b6014600954612ab49190613829565b831115612acd576014600954612aca9190613829565b92505b600060028360125486612ae09190613829565b612aea91906138b2565b612af491906138b2565b90506000612b0b8286612caa90919063ffffffff16565b90506000479050612b1b82612cc0565b6000612b308247612caa90919063ffffffff16565b90506000612b5b87612b4d60135485612c7490919063ffffffff16565b612c8a90919063ffffffff16565b905060008183612b6b9190613edd565b905060006012819055506000601381905550600086118015612b8d5750600081115b15612bda57612b9c8682612efd565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601254604051612bd193929190613fa3565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612c209061400b565b60006040518083038185875af1925050503d8060008114612c5d576040519150601f19603f3d011682016040523d82523d6000602084013e612c62565b606091505b5050809750505050505050505050505b565b60008183612c829190613829565b905092915050565b60008183612c9891906138b2565b905092915050565b505050565b505050565b60008183612cb89190613edd565b905092915050565b6000600267ffffffffffffffff811115612cdd57612cdc614020565b5b604051908082528060200260200182016040528015612d0b5781602001602082028036833780820191505090505b5090503081600081518110612d2357612d2261404f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612dc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dec9190614093565b81600181518110612e0057612dff61404f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612e65307f000000000000000000000000000000000000000000000000000000000000000084611a48565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612ec79594939291906141b9565b600060405180830381600087803b158015612ee157600080fd5b505af1158015612ef5573d6000803e3d6000fd5b505050505050565b612f28307f000000000000000000000000000000000000000000000000000000000000000084611a48565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612faf96959493929190614213565b60606040518083038185885af1158015612fcd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612ff29190614289565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613033578082015181840152602081019050613018565b83811115613042576000848401525b50505050565b6000601f19601f8301169050919050565b600061306482612ff9565b61306e8185613004565b935061307e818560208601613015565b61308781613048565b840191505092915050565b600060208201905081810360008301526130ac8184613059565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130e4826130b9565b9050919050565b6130f4816130d9565b81146130ff57600080fd5b50565b600081359050613111816130eb565b92915050565b6000819050919050565b61312a81613117565b811461313557600080fd5b50565b60008135905061314781613121565b92915050565b60008060408385031215613164576131636130b4565b5b600061317285828601613102565b925050602061318385828601613138565b9150509250929050565b60008115159050919050565b6131a28161318d565b82525050565b60006020820190506131bd6000830184613199565b92915050565b6000602082840312156131d9576131d86130b4565b5b60006131e784828501613102565b91505092915050565b6000819050919050565b600061321561321061320b846130b9565b6131f0565b6130b9565b9050919050565b6000613227826131fa565b9050919050565b60006132398261321c565b9050919050565b6132498161322e565b82525050565b60006020820190506132646000830184613240565b92915050565b61327381613117565b82525050565b600060208201905061328e600083018461326a565b92915050565b6000806000606084860312156132ad576132ac6130b4565b5b60006132bb86828701613102565b93505060206132cc86828701613102565b92505060406132dd86828701613138565b9150509250925092565b6132f0816130d9565b82525050565b600060208201905061330b60008301846132e7565b92915050565b600060ff82169050919050565b61332781613311565b82525050565b6000602082019050613342600083018461331e565b92915050565b60008060008060808587031215613362576133616130b4565b5b600061337087828801613138565b945050602061338187828801613138565b935050604061339287828801613138565b92505060606133a387828801613138565b91505092959194509250565b6133b88161318d565b81146133c357600080fd5b50565b6000813590506133d5816133af565b92915050565b600080604083850312156133f2576133f16130b4565b5b600061340085828601613102565b9250506020613411858286016133c6565b9150509250929050565b600060208284031215613431576134306130b4565b5b600061343f848285016133c6565b91505092915050565b60006020828403121561345e5761345d6130b4565b5b600061346c84828501613138565b91505092915050565b6000806040838503121561348c5761348b6130b4565b5b600061349a85828601613102565b92505060206134ab85828601613102565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134fc57607f821691505b602082108114156135105761350f6134b5565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613572602883613004565b915061357d82613516565b604082019050919050565b600060208201905081810360008301526135a181613565565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135e282613117565b91506135ed83613117565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613622576136216135a8565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613663602083613004565b915061366e8261362d565b602082019050919050565b6000602082019050818103600083015261369281613656565b9050919050565b7f66656520746f6f20686967680000000000000000000000000000000000000000600082015250565b60006136cf600c83613004565b91506136da82613699565b602082019050919050565b600060208201905081810360008301526136fe816136c2565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613761603983613004565b915061376c82613705565b604082019050919050565b6000602082019050818103600083015261379081613754565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006137f3602583613004565b91506137fe82613797565b604082019050919050565b60006020820190508181036000830152613822816137e6565b9050919050565b600061383482613117565b915061383f83613117565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613878576138776135a8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138bd82613117565b91506138c883613117565b9250826138d8576138d7613883565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061393f603583613004565b915061394a826138e3565b604082019050919050565b6000602082019050818103600083015261396e81613932565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006139d1603483613004565b91506139dc82613975565b604082019050919050565b60006020820190508181036000830152613a00816139c4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a63602683613004565b9150613a6e82613a07565b604082019050919050565b60006020820190508181036000830152613a9281613a56565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613af5602483613004565b9150613b0082613a99565b604082019050919050565b60006020820190508181036000830152613b2481613ae8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b87602283613004565b9150613b9282613b2b565b604082019050919050565b60006020820190508181036000830152613bb681613b7a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c19602583613004565b9150613c2482613bbd565b604082019050919050565b60006020820190508181036000830152613c4881613c0c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613cab602383613004565b9150613cb682613c4f565b604082019050919050565b60006020820190508181036000830152613cda81613c9e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613d17601683613004565b9150613d2282613ce1565b602082019050919050565b60006020820190508181036000830152613d4681613d0a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613da9603583613004565b9150613db482613d4d565b604082019050919050565b60006020820190508181036000830152613dd881613d9c565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613e15601383613004565b9150613e2082613ddf565b602082019050919050565b60006020820190508181036000830152613e4481613e08565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613ea7603683613004565b9150613eb282613e4b565b604082019050919050565b60006020820190508181036000830152613ed681613e9a565b9050919050565b6000613ee882613117565b9150613ef383613117565b925082821015613f0657613f056135a8565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613f6d602683613004565b9150613f7882613f11565b604082019050919050565b60006020820190508181036000830152613f9c81613f60565b9050919050565b6000606082019050613fb8600083018661326a565b613fc5602083018561326a565b613fd2604083018461326a565b949350505050565b600081905092915050565b50565b6000613ff5600083613fda565b915061400082613fe5565b600082019050919050565b600061401682613fe8565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061408d816130eb565b92915050565b6000602082840312156140a9576140a86130b4565b5b60006140b78482850161407e565b91505092915050565b6000819050919050565b60006140e56140e06140db846140c0565b6131f0565b613117565b9050919050565b6140f5816140ca565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614130816130d9565b82525050565b60006141428383614127565b60208301905092915050565b6000602082019050919050565b6000614166826140fb565b6141708185614106565b935061417b83614117565b8060005b838110156141ac5781516141938882614136565b975061419e8361414e565b92505060018101905061417f565b5085935050505092915050565b600060a0820190506141ce600083018861326a565b6141db60208301876140ec565b81810360408301526141ed818661415b565b90506141fc60608301856132e7565b614209608083018461326a565b9695505050505050565b600060c08201905061422860008301896132e7565b614235602083018861326a565b61424260408301876140ec565b61424f60608301866140ec565b61425c60808301856132e7565b61426960a083018461326a565b979650505050505050565b60008151905061428381613121565b92915050565b6000806000606084860312156142a2576142a16130b4565b5b60006142b086828701614274565b93505060206142c186828701614274565b92505060406142d286828701614274565b915050925092509256fea26469706673582212200f5898ba514c3f3a5272a0641d7f952af11a9b22e0b55c9c9547267db356759164736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061026b5760003560e01c80638da5cb5b11610144578063bbc0c742116100b6578063dd62ed3e1161007a578063dd62ed3e1461095b578063e2f4560514610998578063f11a24d3146109c3578063f2fde38b146109ee578063f637434214610a17578063f8b45b0514610a4257610272565b8063bbc0c74214610874578063c02466681461089f578063c8c8ebe4146108c8578063d257b34f146108f3578063d85ba0631461093057610272565b80639c3b4fdc116101085780639c3b4fdc1461073c5780639fccce3214610767578063a0d82dc514610792578063a457c2d7146107bd578063a9059cbb146107fa578063b62496f51461083757610272565b80638da5cb5b146106695780638ea5220f14610694578063924de9b7146106bf57806395d89b41146106e85780639a7a23d61461071357610272565b80634a62bb65116101dd5780636fcba377116101a15780636fcba3771461058157806370a08231146105aa578063715018a6146105e7578063751039fc146105fe5780637571336a146106295780638a8c523c1461065257610272565b80634a62bb65146104985780634fbee193146104c35780636303516c146105005780636a486a8e1461052b5780636ddd17131461055657610272565b80631a8145bb1161022f5780631a8145bb1461037257806323b872dd1461039d57806327c8f835146103da578063313ce56714610405578063395093511461043057806349bd5a5e1461046d57610272565b806306fdde0314610277578063095ea7b3146102a257806310d5de53146102df5780631694505e1461031c57806318160ddd1461034757610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a6d565b6040516102999190613092565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c4919061314d565b610aff565b6040516102d691906131a8565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906131c3565b610b1d565b60405161031391906131a8565b60405180910390f35b34801561032857600080fd5b50610331610b3d565b60405161033e919061324f565b60405180910390f35b34801561035357600080fd5b5061035c610b61565b6040516103699190613279565b60405180910390f35b34801561037e57600080fd5b50610387610b6b565b6040516103949190613279565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf9190613294565b610b71565b6040516103d191906131a8565b60405180910390f35b3480156103e657600080fd5b506103ef610c69565b6040516103fc91906132f6565b60405180910390f35b34801561041157600080fd5b5061041a610c6f565b604051610427919061332d565b60405180910390f35b34801561043c57600080fd5b506104576004803603810190610452919061314d565b610c78565b60405161046491906131a8565b60405180910390f35b34801561047957600080fd5b50610482610d24565b60405161048f91906132f6565b60405180910390f35b3480156104a457600080fd5b506104ad610d48565b6040516104ba91906131a8565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e591906131c3565b610d5b565b6040516104f791906131a8565b60405180910390f35b34801561050c57600080fd5b50610515610db1565b60405161052291906132f6565b60405180910390f35b34801561053757600080fd5b50610540610dd7565b60405161054d9190613279565b60405180910390f35b34801561056257600080fd5b5061056b610ddd565b60405161057891906131a8565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613348565b610df0565b005b3480156105b657600080fd5b506105d160048036038101906105cc91906131c3565b610f46565b6040516105de9190613279565b60405180910390f35b3480156105f357600080fd5b506105fc610f8e565b005b34801561060a57600080fd5b50610613611016565b60405161062091906131a8565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b91906133db565b6110b6565b005b34801561065e57600080fd5b5061066761118d565b005b34801561067557600080fd5b5061067e611241565b60405161068b91906132f6565b60405180910390f35b3480156106a057600080fd5b506106a961126b565b6040516106b691906132f6565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e1919061341b565b611291565b005b3480156106f457600080fd5b506106fd61132a565b60405161070a9190613092565b60405180910390f35b34801561071f57600080fd5b5061073a600480360381019061073591906133db565b6113bc565b005b34801561074857600080fd5b506107516114d5565b60405161075e9190613279565b60405180910390f35b34801561077357600080fd5b5061077c6114db565b6040516107899190613279565b60405180910390f35b34801561079e57600080fd5b506107a76114e1565b6040516107b49190613279565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df919061314d565b6114e7565b6040516107f191906131a8565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c919061314d565b6115d2565b60405161082e91906131a8565b60405180910390f35b34801561084357600080fd5b5061085e600480360381019061085991906131c3565b6115f0565b60405161086b91906131a8565b60405180910390f35b34801561088057600080fd5b50610889611610565b60405161089691906131a8565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c191906133db565b611623565b005b3480156108d457600080fd5b506108dd611748565b6040516108ea9190613279565b60405180910390f35b3480156108ff57600080fd5b5061091a60048036038101906109159190613448565b61174e565b60405161092791906131a8565b60405180910390f35b34801561093c57600080fd5b506109456118a3565b6040516109529190613279565b60405180910390f35b34801561096757600080fd5b50610982600480360381019061097d9190613475565b6118a9565b60405161098f9190613279565b60405180910390f35b3480156109a457600080fd5b506109ad611930565b6040516109ba9190613279565b60405180910390f35b3480156109cf57600080fd5b506109d8611936565b6040516109e59190613279565b60405180910390f35b3480156109fa57600080fd5b50610a156004803603810190610a1091906131c3565b61193c565b005b348015610a2357600080fd5b50610a2c611a34565b604051610a399190613279565b60405180910390f35b348015610a4e57600080fd5b50610a57611a3a565b604051610a649190613279565b60405180910390f35b606060038054610a7c906134e4565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa8906134e4565b8015610af55780601f10610aca57610100808354040283529160200191610af5565b820191906000526020600020905b815481529060010190602001808311610ad857829003601f168201915b5050505050905090565b6000610b13610b0c611a40565b8484611a48565b6001905092915050565b60156020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60125481565b6000610b7e848484611c13565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bc9611a40565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090613588565b60405180910390fd5b610c5d85610c55611a40565b858403611a48565b60019150509392505050565b61dead81565b60006012905090565b6000610d1a610c85611a40565b848460016000610c93611a40565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d1591906135d7565b611a48565b6001905092915050565b7f000000000000000000000000d646abcc89c0d57ae002789cba3628f979ec1fe281565b600b60009054906101000a900460ff1681565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600b60029054906101000a900460ff1681565b610df8611a40565b73ffffffffffffffffffffffffffffffffffffffff16610e16611241565b73ffffffffffffffffffffffffffffffffffffffff1614610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6390613679565b60405180910390fd5b83600c8190555082600d8190555081600f8190555080601081905550600d54600c54610e9891906135d7565b600e81905550601054600f54610eae91906135d7565b6011819055506062600e541115610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef1906136e5565b60405180910390fd5b60626011541115610f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f37906136e5565b60405180910390fd5b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f96611a40565b73ffffffffffffffffffffffffffffffffffffffff16610fb4611241565b73ffffffffffffffffffffffffffffffffffffffff161461100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190613679565b60405180910390fd5b611014600061267f565b565b6000611020611a40565b73ffffffffffffffffffffffffffffffffffffffff1661103e611241565b73ffffffffffffffffffffffffffffffffffffffff1614611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90613679565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6110be611a40565b73ffffffffffffffffffffffffffffffffffffffff166110dc611241565b73ffffffffffffffffffffffffffffffffffffffff1614611132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112990613679565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611195611a40565b73ffffffffffffffffffffffffffffffffffffffff166111b3611241565b73ffffffffffffffffffffffffffffffffffffffff1614611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090613679565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611299611a40565b73ffffffffffffffffffffffffffffffffffffffff166112b7611241565b73ffffffffffffffffffffffffffffffffffffffff161461130d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130490613679565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611339906134e4565b80601f0160208091040260200160405190810160405280929190818152602001828054611365906134e4565b80156113b25780601f10611387576101008083540402835291602001916113b2565b820191906000526020600020905b81548152906001019060200180831161139557829003601f168201915b5050505050905090565b6113c4611a40565b73ffffffffffffffffffffffffffffffffffffffff166113e2611241565b73ffffffffffffffffffffffffffffffffffffffff1614611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90613679565b60405180910390fd5b7f000000000000000000000000d646abcc89c0d57ae002789cba3628f979ec1fe273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613777565b60405180910390fd5b6114d18282612745565b5050565b600d5481565b60135481565b60105481565b600080600160006114f6611a40565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90613809565b60405180910390fd5b6115c76115be611a40565b85858403611a48565b600191505092915050565b60006115e66115df611a40565b8484611c13565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b61162b611a40565b73ffffffffffffffffffffffffffffffffffffffff16611649611241565b73ffffffffffffffffffffffffffffffffffffffff161461169f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169690613679565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161173c91906131a8565b60405180910390a25050565b60085481565b6000611758611a40565b73ffffffffffffffffffffffffffffffffffffffff16611776611241565b73ffffffffffffffffffffffffffffffffffffffff16146117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c390613679565b60405180910390fd5b620186a060016117da610b61565b6117e49190613829565b6117ee91906138b2565b821015611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790613955565b60405180910390fd5b6103e8600561183d610b61565b6118479190613829565b61185191906138b2565b821115611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188a906139e7565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600c5481565b611944611a40565b73ffffffffffffffffffffffffffffffffffffffff16611962611241565b73ffffffffffffffffffffffffffffffffffffffff16146119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90613679565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f90613a79565b60405180910390fd5b611a318161267f565b50565b600f5481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90613b0b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90613b9d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c069190613279565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7a90613c2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cea90613cc1565b60405180910390fd5b6000811415611d0d57611d08838360006127e6565b61267a565b600b60009054906101000a900460ff161561220857611d2a611241565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d985750611d68611241565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611dd15750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e0b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e245750600560149054906101000a900460ff16155b1561220757600b60019054906101000a900460ff16611f1e57601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ede5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1490613d2d565b60405180910390fd5b5b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611fc15750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120685760085481111561200b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200290613dbf565b60405180910390fd5b600a5461201783610f46565b8261202291906135d7565b1115612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a90613e2b565b60405180910390fd5b612206565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561210b5750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561215a57600854811115612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90613ebd565b60405180910390fd5b612205565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661220457600a546121b783610f46565b826121c291906135d7565b1115612203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fa90613e2b565b60405180910390fd5b5b5b5b5b5b600061221330610f46565b9050600060095482101590508080156122385750600b60029054906101000a900460ff165b80156122515750600560149054906101000a900460ff16155b80156122a75750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122fd5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123535750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612397576001600560146101000a81548160ff02191690831515021790555061237b612a67565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061244d5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561245757600090505b6000811561266a57601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124ba57506000601154115b15612554576124e760646124d960115488612c7490919063ffffffff16565b612c8a90919063ffffffff16565b9050601154600f54826124fa9190613829565b61250491906138b2565b6012600082825461251591906135d7565b925050819055506011546010548261252d9190613829565b61253791906138b2565b6013600082825461254891906135d7565b92505081905550612646565b601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125af57506000600e54115b15612645576125dc60646125ce600e5488612c7490919063ffffffff16565b612c8a90919063ffffffff16565b9050600e54600c54826125ef9190613829565b6125f991906138b2565b6012600082825461260a91906135d7565b92505081905550600e54600d54826126229190613829565b61262c91906138b2565b6013600082825461263d91906135d7565b925050819055505b5b600081111561265b5761265a8730836127e6565b5b80856126679190613edd565b94505b6126758787876127e6565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d90613c2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bd90613cc1565b60405180910390fd5b6128d1838383612ca0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294e90613f83565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129ea91906135d7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a4e9190613279565b60405180910390a3612a61848484612ca5565b50505050565b6000612a7230610f46565b90506000601354601254612a8691906135d7565b9050600080831480612a985750600082145b15612aa557505050612c72565b6014600954612ab49190613829565b831115612acd576014600954612aca9190613829565b92505b600060028360125486612ae09190613829565b612aea91906138b2565b612af491906138b2565b90506000612b0b8286612caa90919063ffffffff16565b90506000479050612b1b82612cc0565b6000612b308247612caa90919063ffffffff16565b90506000612b5b87612b4d60135485612c7490919063ffffffff16565b612c8a90919063ffffffff16565b905060008183612b6b9190613edd565b905060006012819055506000601381905550600086118015612b8d5750600081115b15612bda57612b9c8682612efd565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601254604051612bd193929190613fa3565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612c209061400b565b60006040518083038185875af1925050503d8060008114612c5d576040519150601f19603f3d011682016040523d82523d6000602084013e612c62565b606091505b5050809750505050505050505050505b565b60008183612c829190613829565b905092915050565b60008183612c9891906138b2565b905092915050565b505050565b505050565b60008183612cb89190613edd565b905092915050565b6000600267ffffffffffffffff811115612cdd57612cdc614020565b5b604051908082528060200260200182016040528015612d0b5781602001602082028036833780820191505090505b5090503081600081518110612d2357612d2261404f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612dc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dec9190614093565b81600181518110612e0057612dff61404f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612e65307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a48565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612ec79594939291906141b9565b600060405180830381600087803b158015612ee157600080fd5b505af1158015612ef5573d6000803e3d6000fd5b505050505050565b612f28307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a48565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612faf96959493929190614213565b60606040518083038185885af1158015612fcd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612ff29190614289565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613033578082015181840152602081019050613018565b83811115613042576000848401525b50505050565b6000601f19601f8301169050919050565b600061306482612ff9565b61306e8185613004565b935061307e818560208601613015565b61308781613048565b840191505092915050565b600060208201905081810360008301526130ac8184613059565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130e4826130b9565b9050919050565b6130f4816130d9565b81146130ff57600080fd5b50565b600081359050613111816130eb565b92915050565b6000819050919050565b61312a81613117565b811461313557600080fd5b50565b60008135905061314781613121565b92915050565b60008060408385031215613164576131636130b4565b5b600061317285828601613102565b925050602061318385828601613138565b9150509250929050565b60008115159050919050565b6131a28161318d565b82525050565b60006020820190506131bd6000830184613199565b92915050565b6000602082840312156131d9576131d86130b4565b5b60006131e784828501613102565b91505092915050565b6000819050919050565b600061321561321061320b846130b9565b6131f0565b6130b9565b9050919050565b6000613227826131fa565b9050919050565b60006132398261321c565b9050919050565b6132498161322e565b82525050565b60006020820190506132646000830184613240565b92915050565b61327381613117565b82525050565b600060208201905061328e600083018461326a565b92915050565b6000806000606084860312156132ad576132ac6130b4565b5b60006132bb86828701613102565b93505060206132cc86828701613102565b92505060406132dd86828701613138565b9150509250925092565b6132f0816130d9565b82525050565b600060208201905061330b60008301846132e7565b92915050565b600060ff82169050919050565b61332781613311565b82525050565b6000602082019050613342600083018461331e565b92915050565b60008060008060808587031215613362576133616130b4565b5b600061337087828801613138565b945050602061338187828801613138565b935050604061339287828801613138565b92505060606133a387828801613138565b91505092959194509250565b6133b88161318d565b81146133c357600080fd5b50565b6000813590506133d5816133af565b92915050565b600080604083850312156133f2576133f16130b4565b5b600061340085828601613102565b9250506020613411858286016133c6565b9150509250929050565b600060208284031215613431576134306130b4565b5b600061343f848285016133c6565b91505092915050565b60006020828403121561345e5761345d6130b4565b5b600061346c84828501613138565b91505092915050565b6000806040838503121561348c5761348b6130b4565b5b600061349a85828601613102565b92505060206134ab85828601613102565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134fc57607f821691505b602082108114156135105761350f6134b5565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613572602883613004565b915061357d82613516565b604082019050919050565b600060208201905081810360008301526135a181613565565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135e282613117565b91506135ed83613117565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613622576136216135a8565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613663602083613004565b915061366e8261362d565b602082019050919050565b6000602082019050818103600083015261369281613656565b9050919050565b7f66656520746f6f20686967680000000000000000000000000000000000000000600082015250565b60006136cf600c83613004565b91506136da82613699565b602082019050919050565b600060208201905081810360008301526136fe816136c2565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613761603983613004565b915061376c82613705565b604082019050919050565b6000602082019050818103600083015261379081613754565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006137f3602583613004565b91506137fe82613797565b604082019050919050565b60006020820190508181036000830152613822816137e6565b9050919050565b600061383482613117565b915061383f83613117565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613878576138776135a8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138bd82613117565b91506138c883613117565b9250826138d8576138d7613883565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061393f603583613004565b915061394a826138e3565b604082019050919050565b6000602082019050818103600083015261396e81613932565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006139d1603483613004565b91506139dc82613975565b604082019050919050565b60006020820190508181036000830152613a00816139c4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a63602683613004565b9150613a6e82613a07565b604082019050919050565b60006020820190508181036000830152613a9281613a56565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613af5602483613004565b9150613b0082613a99565b604082019050919050565b60006020820190508181036000830152613b2481613ae8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b87602283613004565b9150613b9282613b2b565b604082019050919050565b60006020820190508181036000830152613bb681613b7a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c19602583613004565b9150613c2482613bbd565b604082019050919050565b60006020820190508181036000830152613c4881613c0c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613cab602383613004565b9150613cb682613c4f565b604082019050919050565b60006020820190508181036000830152613cda81613c9e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613d17601683613004565b9150613d2282613ce1565b602082019050919050565b60006020820190508181036000830152613d4681613d0a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613da9603583613004565b9150613db482613d4d565b604082019050919050565b60006020820190508181036000830152613dd881613d9c565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613e15601383613004565b9150613e2082613ddf565b602082019050919050565b60006020820190508181036000830152613e4481613e08565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613ea7603683613004565b9150613eb282613e4b565b604082019050919050565b60006020820190508181036000830152613ed681613e9a565b9050919050565b6000613ee882613117565b9150613ef383613117565b925082821015613f0657613f056135a8565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613f6d602683613004565b9150613f7882613f11565b604082019050919050565b60006020820190508181036000830152613f9c81613f60565b9050919050565b6000606082019050613fb8600083018661326a565b613fc5602083018561326a565b613fd2604083018461326a565b949350505050565b600081905092915050565b50565b6000613ff5600083613fda565b915061400082613fe5565b600082019050919050565b600061401682613fe8565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061408d816130eb565b92915050565b6000602082840312156140a9576140a86130b4565b5b60006140b78482850161407e565b91505092915050565b6000819050919050565b60006140e56140e06140db846140c0565b6131f0565b613117565b9050919050565b6140f5816140ca565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614130816130d9565b82525050565b60006141428383614127565b60208301905092915050565b6000602082019050919050565b6000614166826140fb565b6141708185614106565b935061417b83614117565b8060005b838110156141ac5781516141938882614136565b975061419e8361414e565b92505060018101905061417f565b5085935050505092915050565b600060a0820190506141ce600083018861326a565b6141db60208301876140ec565b81810360408301526141ed818661415b565b90506141fc60608301856132e7565b614209608083018461326a565b9695505050505050565b600060c08201905061422860008301896132e7565b614235602083018861326a565b61424260408301876140ec565b61424f60608301866140ec565b61425c60808301856132e7565b61426960a083018461326a565b979650505050505050565b60008151905061428381613121565b92915050565b6000806000606084860312156142a2576142a16130b4565b5b60006142b086828701614274565b93505060206142c186828701614274565b92505060406142d286828701614274565b915050925092509256fea26469706673582212200f5898ba514c3f3a5272a0641d7f952af11a9b22e0b55c9c9547267db356759164736f6c634300080a0033

Deployed Bytecode Sourcemap

32806:12936:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9734:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11901:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33872:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32879:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10854:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33656:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12552:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32982:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10696:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13453:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32937:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33266:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39285:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33105:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33590:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33346:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37104:536;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11025:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2969:103;;;;;;;;;;;;;:::i;:::-;;36927:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38216:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36763:112;;;;;;;;;;;;;:::i;:::-;;2318:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33074:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38479:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9953:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38777:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33423:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33696:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33558:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14171:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11365:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34093:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33306:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38587:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33151:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37710:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33454:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11603:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33193:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33386:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3227:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33520:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33233:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9734:100;9788:13;9821:5;9814:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9734:100;:::o;11901:169::-;11984:4;12001:39;12010:12;:10;:12::i;:::-;12024:7;12033:6;12001:8;:39::i;:::-;12058:4;12051:11;;11901:169;;;;:::o;33872:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32879:51::-;;;:::o;10854:108::-;10915:7;10942:12;;10935:19;;10854:108;:::o;33656:33::-;;;;:::o;12552:492::-;12692:4;12709:36;12719:6;12727:9;12738:6;12709:9;:36::i;:::-;12758:24;12785:11;:19;12797:6;12785:19;;;;;;;;;;;;;;;:33;12805:12;:10;:12::i;:::-;12785:33;;;;;;;;;;;;;;;;12758:60;;12857:6;12837:16;:26;;12829:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12944:57;12953:6;12961:12;:10;:12::i;:::-;12994:6;12975:16;:25;12944:8;:57::i;:::-;13032:4;13025:11;;;12552:492;;;;;:::o;32982:53::-;33028:6;32982:53;:::o;10696:93::-;10754:5;10779:2;10772:9;;10696:93;:::o;13453:215::-;13541:4;13558:80;13567:12;:10;:12::i;:::-;13581:7;13627:10;13590:11;:25;13602:12;:10;:12::i;:::-;13590:25;;;;;;;;;;;;;;;:34;13616:7;13590:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13558:8;:80::i;:::-;13656:4;13649:11;;13453:215;;;;:::o;32937:38::-;;;:::o;33266:33::-;;;;;;;;;;;;;:::o;39285:126::-;39351:4;39375:19;:28;39395:7;39375:28;;;;;;;;;;;;;;;;;;;;;;;;;39368:35;;39285:126;;;:::o;33105:37::-;;;;;;;;;;;;;:::o;33590:60::-;;;;:::o;33346:31::-;;;;;;;;;;;;;:::o;37104:536::-;2549:12;:10;:12::i;:::-;2538:23;;:7;:5;:7::i;:::-;:23;;;2530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37271:18:::1;37253:15;:36;;;;37312:12;37300:9;:24;;;;37354:19;37335:16;:38;;;;37397:13;37384:10;:26;;;;37456:9;;37438:15;;:27;;;;:::i;:::-;37423:12;:42;;;;37511:10;;37492:16;;:29;;;;:::i;:::-;37476:13;:45;;;;37558:2;37542:12;;:18;;37534:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;37613:2;37596:13;;:19;;37588:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;37104:536:::0;;;;:::o;11025:127::-;11099:7;11126:9;:18;11136:7;11126:18;;;;;;;;;;;;;;;;11119:25;;11025:127;;;:::o;2969:103::-;2549:12;:10;:12::i;:::-;2538:23;;:7;:5;:7::i;:::-;:23;;;2530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3034:30:::1;3061:1;3034:18;:30::i;:::-;2969:103::o:0;36927:121::-;36979:4;2549:12;:10;:12::i;:::-;2538:23;;:7;:5;:7::i;:::-;:23;;;2530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37013:5:::1;36996:14;;:22;;;;;;;;;;;;;;;;;;37036:4;37029:11;;36927:121:::0;:::o;38216:167::-;2549:12;:10;:12::i;:::-;2538:23;;:7;:5;:7::i;:::-;:23;;;2530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38371:4:::1;38329:31;:39;38361:6;38329:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38216:167:::0;;:::o;36763:112::-;2549:12;:10;:12::i;:::-;2538:23;;:7;:5;:7::i;:::-;:23;;;2530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36834:4:::1;36818:13;;:20;;;;;;;;;;;;;;;;;;36863:4;36849:11;;:18;;;;;;;;;;;;;;;;;;36763:112::o:0;2318:87::-;2364:7;2391:6;;;;;;;;;;;2384:13;;2318:87;:::o;33074:24::-;;;;;;;;;;;;;:::o;38479:100::-;2549:12;:10;:12::i;:::-;2538:23;;:7;:5;:7::i;:::-;:23;;;2530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38564:7:::1;38550:11;;:21;;;;;;;;;;;;;;;;;;38479:100:::0;:::o;9953:104::-;10009:13;10042:7;10035:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9953:104;:::o;38777:304::-;2549:12;:10;:12::i;:::-;2538:23;;:7;:5;:7::i;:::-;:23;;;2530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38921:13:::1;38913:21;;:4;:21;;;;38891:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;39032:41;39061:4;39067:5;39032:28;:41::i;:::-;38777:304:::0;;:::o;33423:24::-;;;;:::o;33696:27::-;;;;:::o;33558:25::-;;;;:::o;14171:413::-;14264:4;14281:24;14308:11;:25;14320:12;:10;:12::i;:::-;14308:25;;;;;;;;;;;;;;;:34;14334:7;14308:34;;;;;;;;;;;;;;;;14281:61;;14381:15;14361:16;:35;;14353:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14474:67;14483:12;:10;:12::i;:::-;14497:7;14525:15;14506:16;:34;14474:8;:67::i;:::-;14572:4;14565:11;;;14171:413;;;;:::o;11365:175::-;11451:4;11468:42;11478:12;:10;:12::i;:::-;11492:9;11503:6;11468:9;:42::i;:::-;11528:4;11521:11;;11365:175;;;;:::o;34093:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33306:33::-;;;;;;;;;;;;;:::o;38587:182::-;2549:12;:10;:12::i;:::-;2538:23;;:7;:5;:7::i;:::-;:23;;;2530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38703:8:::1;38672:19;:28;38692:7;38672:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38743:7;38727:34;;;38752:8;38727:34;;;;;;:::i;:::-;;;;;;;;38587:182:::0;;:::o;33151:35::-;;;;:::o;37710:497::-;37818:4;2549:12;:10;:12::i;:::-;2538:23;;:7;:5;:7::i;:::-;:23;;;2530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37897:6:::1;37892:1;37876:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37875:28;;;;:::i;:::-;37862:9;:41;;37840:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38052:4;38047:1;38031:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38030:26;;;;:::i;:::-;38017:9;:39;;37995:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38168:9;38147:18;:30;;;;38195:4;38188:11;;37710:497:::0;;;:::o;33454:57::-;;;;:::o;11603:151::-;11692:7;11719:11;:18;11731:5;11719:18;;;;;;;;;;;;;;;:27;11738:7;11719:27;;;;;;;;;;;;;;;;11712:34;;11603:151;;;;:::o;33193:33::-;;;;:::o;33386:30::-;;;;:::o;3227:201::-;2549:12;:10;:12::i;:::-;2538:23;;:7;:5;:7::i;:::-;:23;;;2530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3336:1:::1;3316:22;;:8;:22;;;;3308:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3392:28;3411:8;3392:18;:28::i;:::-;3227:201:::0;:::o;33520:31::-;;;;:::o;33233:24::-;;;;:::o;991:98::-;1044:7;1071:10;1064:17;;991:98;:::o;17855:380::-;18008:1;17991:19;;:5;:19;;;;17983:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18089:1;18070:21;;:7;:21;;;;18062:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18173:6;18143:11;:18;18155:5;18143:18;;;;;;;;;;;;;;;:27;18162:7;18143:27;;;;;;;;;;;;;;;:36;;;;18211:7;18195:32;;18204:5;18195:32;;;18220:6;18195:32;;;;;;:::i;:::-;;;;;;;;17855:380;;;:::o;39419:3778::-;39567:1;39551:18;;:4;:18;;;;39543:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39644:1;39630:16;;:2;:16;;;;39622:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39713:1;39703:6;:11;39699:93;;;39731:28;39747:4;39753:2;39757:1;39731:15;:28::i;:::-;39774:7;;39699:93;39808:14;;;;;;;;;;;39804:1694;;;39869:7;:5;:7::i;:::-;39861:15;;:4;:15;;;;:49;;;;;39903:7;:5;:7::i;:::-;39897:13;;:2;:13;;;;39861:49;:86;;;;;39945:1;39931:16;;:2;:16;;;;39861:86;:128;;;;;39982:6;39968:21;;:2;:21;;;;39861:128;:158;;;;;40011:8;;;;;;;;;;;40010:9;39861:158;39839:1648;;;40059:13;;;;;;;;;;;40054:223;;40131:19;:25;40151:4;40131:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40160:19;:23;40180:2;40160:23;;;;;;;;;;;;;;;;;;;;;;;;;40131:52;40097:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;40054:223;40351:25;:31;40377:4;40351:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40408:31;:35;40440:2;40408:35;;;;;;;;;;;;;;;;;;;;;;;;;40407:36;40351:92;40325:1147;;;40530:20;;40520:6;:30;;40486:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40738:9;;40721:13;40731:2;40721:9;:13::i;:::-;40712:6;:22;;;;:::i;:::-;:35;;40678:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40325:1147;;;40916:25;:29;40942:2;40916:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40971:31;:37;41003:4;40971:37;;;;;;;;;;;;;;;;;;;;;;;;;40970:38;40916:92;40890:582;;;41095:20;;41085:6;:30;;41051:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;40890:582;;;41252:31;:35;41284:2;41252:35;;;;;;;;;;;;;;;;;;;;;;;;;41247:225;;41372:9;;41355:13;41365:2;41355:9;:13::i;:::-;41346:6;:22;;;;:::i;:::-;:35;;41312:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41247:225;40890:582;40325:1147;39839:1648;39804:1694;41510:28;41541:24;41559:4;41541:9;:24::i;:::-;41510:55;;41578:12;41617:18;;41593:20;:42;;41578:57;;41666:7;:35;;;;;41690:11;;;;;;;;;;;41666:35;:61;;;;;41719:8;;;;;;;;;;;41718:9;41666:61;:110;;;;;41745:25;:31;41771:4;41745:31;;;;;;;;;;;;;;;;;;;;;;;;;41744:32;41666:110;:153;;;;;41794:19;:25;41814:4;41794:25;;;;;;;;;;;;;;;;;;;;;;;;;41793:26;41666:153;:194;;;;;41837:19;:23;41857:2;41837:23;;;;;;;;;;;;;;;;;;;;;;;;;41836:24;41666:194;41648:326;;;41898:4;41887:8;;:15;;;;;;;;;;;;;;;;;;41919:10;:8;:10::i;:::-;41957:5;41946:8;;:16;;;;;;;;;;;;;;;;;;41648:326;41986:12;42002:8;;;;;;;;;;;42001:9;41986:24;;42112:19;:25;42132:4;42112:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42141:19;:23;42161:2;42141:23;;;;;;;;;;;;;;;;;;;;;;;;;42112:52;42108:100;;;42191:5;42181:15;;42108:100;42220:12;42325:7;42321:823;;;42377:25;:29;42403:2;42377:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;42426:1;42410:13;;:17;42377:50;42373:622;;;42455:34;42485:3;42455:25;42466:13;;42455:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;42448:41;;42558:13;;42538:16;;42531:4;:23;;;;:::i;:::-;42530:41;;;;:::i;:::-;42508:18;;:63;;;;;;;:::i;:::-;;;;;;;;42628:13;;42614:10;;42607:4;:17;;;;:::i;:::-;42606:35;;;;:::i;:::-;42590:12;;:51;;;;;;;:::i;:::-;;;;;;;;42373:622;;;42719:25;:31;42745:4;42719:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42769:1;42754:12;;:16;42719:51;42715:280;;;42798:33;42827:3;42798:24;42809:12;;42798:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42791:40;;42899:12;;42880:15;;42873:4;:22;;;;:::i;:::-;42872:39;;;;:::i;:::-;42850:18;;:61;;;;;;;:::i;:::-;;;;;;;;42967:12;;42954:9;;42947:4;:16;;;;:::i;:::-;42946:33;;;;:::i;:::-;42930:12;;:49;;;;;;;:::i;:::-;;;;;;;;42715:280;42373:622;43022:1;43015:4;:8;43011:91;;;43044:42;43060:4;43074;43081;43044:15;:42::i;:::-;43011:91;43128:4;43118:14;;;;;:::i;:::-;;;42321:823;43156:33;43172:4;43178:2;43182:6;43156:15;:33::i;:::-;39532:3665;;;;39419:3778;;;;:::o;3588:191::-;3662:16;3681:6;;;;;;;;;;;3662:25;;3707:8;3698:6;;:17;;;;;;;;;;;;;;;;;;3762:8;3731:40;;3752:8;3731:40;;;;;;;;;;;;3651:128;3588:191;:::o;39089:188::-;39206:5;39172:25;:31;39198:4;39172:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39263:5;39229:40;;39257:4;39229:40;;;;;;;;;;;;39089:188;;:::o;15074:733::-;15232:1;15214:20;;:6;:20;;;;15206:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15316:1;15295:23;;:9;:23;;;;15287:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15371:47;15392:6;15400:9;15411:6;15371:20;:47::i;:::-;15431:21;15455:9;:17;15465:6;15455:17;;;;;;;;;;;;;;;;15431:41;;15508:6;15491:13;:23;;15483:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15629:6;15613:13;:22;15593:9;:17;15603:6;15593:17;;;;;;;;;;;;;;;:42;;;;15681:6;15657:9;:20;15667:9;15657:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15722:9;15705:35;;15714:6;15705:35;;;15733:6;15705:35;;;;;;:::i;:::-;;;;;;;;15753:46;15773:6;15781:9;15792:6;15753:19;:46::i;:::-;15195:612;15074:733;;;:::o;44324:1413::-;44363:23;44389:24;44407:4;44389:9;:24::i;:::-;44363:50;;44424:25;44473:12;;44452:18;;:33;;;;:::i;:::-;44424:61;;44496:12;44544:1;44525:15;:20;:46;;;;44570:1;44549:17;:22;44525:46;44521:85;;;44588:7;;;;;44521:85;44661:2;44640:18;;:23;;;;:::i;:::-;44622:15;:41;44618:115;;;44719:2;44698:18;;:23;;;;:::i;:::-;44680:41;;44618:115;44794:23;44881:1;44861:17;44839:18;;44821:15;:36;;;;:::i;:::-;44820:58;;;;:::i;:::-;:62;;;;:::i;:::-;44794:88;;44893:26;44922:36;44942:15;44922;:19;;:36;;;;:::i;:::-;44893:65;;44971:25;44999:21;44971:49;;45033:36;45050:18;45033:16;:36::i;:::-;45082:18;45103:44;45129:17;45103:21;:25;;:44;;;;:::i;:::-;45082:65;;45161:17;45181:51;45214:17;45181:28;45196:12;;45181:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;45161:71;;45245:23;45284:9;45271:10;:22;;;;:::i;:::-;45245:48;;45327:1;45306:18;:22;;;;45354:1;45339:12;:16;;;;45390:1;45372:15;:19;:42;;;;;45413:1;45395:15;:19;45372:42;45368:278;;;45431:46;45444:15;45461;45431:12;:46::i;:::-;45497:137;45530:18;45567:15;45601:18;;45497:137;;;;;;;;:::i;:::-;;;;;;;;45368:278;45680:9;;;;;;;;;;;45672:23;;45703:21;45672:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45658:71;;;;;44352:1385;;;;;;;;;44324:1413;:::o;23308:98::-;23366:7;23397:1;23393;:5;;;;:::i;:::-;23386:12;;23308:98;;;;:::o;23707:::-;23765:7;23796:1;23792;:5;;;;:::i;:::-;23785:12;;23707:98;;;;:::o;18835:125::-;;;;:::o;19564:124::-;;;;:::o;22951:98::-;23009:7;23040:1;23036;:5;;;;:::i;:::-;23029:12;;22951:98;;;;:::o;43205:589::-;43331:21;43369:1;43355:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43331:40;;43400:4;43382;43387:1;43382:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;43426:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43416:4;43421:1;43416:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;43461:62;43478:4;43493:15;43511:11;43461:8;:62::i;:::-;43562:15;:66;;;43643:11;43669:1;43713:4;43740;43760:15;43562:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43260:534;43205:589;:::o;43802:514::-;43950:62;43967:4;43982:15;44000:11;43950:8;:62::i;:::-;44055:15;:31;;;44094:9;44127:4;44147:11;44173:1;44216;44259:8;;;;;;;;;;;44282:15;44055:253;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43802:514;;:::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:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:118::-;5871:24;5889:5;5871:24;:::i;:::-;5866:3;5859:37;5784:118;;:::o;5908:222::-;6001:4;6039:2;6028:9;6024:18;6016:26;;6052:71;6120:1;6109:9;6105:17;6096:6;6052:71;:::i;:::-;5908:222;;;;:::o;6136:86::-;6171:7;6211:4;6204:5;6200:16;6189:27;;6136:86;;;:::o;6228:112::-;6311:22;6327:5;6311:22;:::i;:::-;6306:3;6299:35;6228:112;;:::o;6346:214::-;6435:4;6473:2;6462:9;6458:18;6450:26;;6486:67;6550:1;6539:9;6535:17;6526:6;6486:67;:::i;:::-;6346:214;;;;:::o;6566:765::-;6652:6;6660;6668;6676;6725:3;6713:9;6704:7;6700:23;6696:33;6693:120;;;6732:79;;:::i;:::-;6693:120;6852:1;6877:53;6922:7;6913:6;6902:9;6898:22;6877:53;:::i;:::-;6867:63;;6823:117;6979:2;7005:53;7050:7;7041:6;7030:9;7026:22;7005:53;:::i;:::-;6995:63;;6950:118;7107:2;7133:53;7178:7;7169:6;7158:9;7154:22;7133:53;:::i;:::-;7123:63;;7078:118;7235:2;7261:53;7306:7;7297:6;7286:9;7282:22;7261:53;:::i;:::-;7251:63;;7206:118;6566:765;;;;;;;:::o;7337:116::-;7407:21;7422:5;7407:21;:::i;:::-;7400:5;7397:32;7387:60;;7443:1;7440;7433:12;7387:60;7337:116;:::o;7459:133::-;7502:5;7540:6;7527:20;7518:29;;7556:30;7580:5;7556:30;:::i;:::-;7459:133;;;;:::o;7598:468::-;7663:6;7671;7720:2;7708:9;7699:7;7695:23;7691:32;7688:119;;;7726:79;;:::i;:::-;7688:119;7846:1;7871:53;7916:7;7907:6;7896:9;7892:22;7871:53;:::i;:::-;7861:63;;7817:117;7973:2;7999:50;8041:7;8032:6;8021:9;8017:22;7999:50;:::i;:::-;7989:60;;7944:115;7598:468;;;;;:::o;8072:323::-;8128:6;8177:2;8165:9;8156:7;8152:23;8148:32;8145:119;;;8183:79;;:::i;:::-;8145:119;8303:1;8328:50;8370:7;8361:6;8350:9;8346:22;8328:50;:::i;:::-;8318:60;;8274:114;8072:323;;;;:::o;8401:329::-;8460:6;8509:2;8497:9;8488:7;8484:23;8480:32;8477:119;;;8515:79;;:::i;:::-;8477:119;8635:1;8660:53;8705:7;8696:6;8685:9;8681:22;8660:53;:::i;:::-;8650:63;;8606:117;8401:329;;;;:::o;8736:474::-;8804:6;8812;8861:2;8849:9;8840:7;8836:23;8832:32;8829:119;;;8867:79;;:::i;:::-;8829:119;8987:1;9012:53;9057:7;9048:6;9037:9;9033:22;9012:53;:::i;:::-;9002:63;;8958:117;9114:2;9140:53;9185:7;9176:6;9165:9;9161:22;9140:53;:::i;:::-;9130:63;;9085:118;8736:474;;;;;:::o;9216:180::-;9264:77;9261:1;9254:88;9361:4;9358:1;9351:15;9385:4;9382:1;9375:15;9402:320;9446:6;9483:1;9477:4;9473:12;9463:22;;9530:1;9524:4;9520:12;9551:18;9541:81;;9607:4;9599:6;9595:17;9585:27;;9541:81;9669:2;9661:6;9658:14;9638:18;9635:38;9632:84;;;9688:18;;:::i;:::-;9632:84;9453:269;9402:320;;;:::o;9728:227::-;9868:34;9864:1;9856:6;9852:14;9845:58;9937:10;9932:2;9924:6;9920:15;9913:35;9728:227;:::o;9961:366::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:419::-;10499:4;10537:2;10526:9;10522:18;10514:26;;10586:9;10580:4;10576:20;10572:1;10561:9;10557:17;10550:47;10614:131;10740:4;10614:131;:::i;:::-;10606:139;;10333:419;;;:::o;10758:180::-;10806:77;10803:1;10796:88;10903:4;10900:1;10893:15;10927:4;10924:1;10917:15;10944:305;10984:3;11003:20;11021:1;11003:20;:::i;:::-;10998:25;;11037:20;11055:1;11037:20;:::i;:::-;11032:25;;11191:1;11123:66;11119:74;11116:1;11113:81;11110:107;;;11197:18;;:::i;:::-;11110:107;11241:1;11238;11234:9;11227:16;;10944:305;;;;:::o;11255:182::-;11395:34;11391:1;11383:6;11379:14;11372:58;11255:182;:::o;11443:366::-;11585:3;11606:67;11670:2;11665:3;11606:67;:::i;:::-;11599:74;;11682:93;11771:3;11682:93;:::i;:::-;11800:2;11795:3;11791:12;11784:19;;11443:366;;;:::o;11815:419::-;11981:4;12019:2;12008:9;12004:18;11996:26;;12068:9;12062:4;12058:20;12054:1;12043:9;12039:17;12032:47;12096:131;12222:4;12096:131;:::i;:::-;12088:139;;11815:419;;;:::o;12240:162::-;12380:14;12376:1;12368:6;12364:14;12357:38;12240:162;:::o;12408:366::-;12550:3;12571:67;12635:2;12630:3;12571:67;:::i;:::-;12564:74;;12647:93;12736:3;12647:93;:::i;:::-;12765:2;12760:3;12756:12;12749:19;;12408:366;;;:::o;12780:419::-;12946:4;12984:2;12973:9;12969:18;12961:26;;13033:9;13027:4;13023:20;13019:1;13008:9;13004:17;12997:47;13061:131;13187:4;13061:131;:::i;:::-;13053:139;;12780:419;;;:::o;13205:244::-;13345:34;13341:1;13333:6;13329:14;13322:58;13414:27;13409:2;13401:6;13397:15;13390:52;13205:244;:::o;13455:366::-;13597:3;13618:67;13682:2;13677:3;13618:67;:::i;:::-;13611:74;;13694:93;13783:3;13694:93;:::i;:::-;13812:2;13807:3;13803:12;13796:19;;13455:366;;;:::o;13827:419::-;13993:4;14031:2;14020:9;14016:18;14008:26;;14080:9;14074:4;14070:20;14066:1;14055:9;14051:17;14044:47;14108:131;14234:4;14108:131;:::i;:::-;14100:139;;13827:419;;;:::o;14252:224::-;14392:34;14388:1;14380:6;14376:14;14369:58;14461:7;14456:2;14448:6;14444:15;14437:32;14252:224;:::o;14482:366::-;14624:3;14645:67;14709:2;14704:3;14645:67;:::i;:::-;14638:74;;14721:93;14810:3;14721:93;:::i;:::-;14839:2;14834:3;14830:12;14823:19;;14482:366;;;:::o;14854:419::-;15020:4;15058:2;15047:9;15043:18;15035:26;;15107:9;15101:4;15097:20;15093:1;15082:9;15078:17;15071:47;15135:131;15261:4;15135:131;:::i;:::-;15127:139;;14854:419;;;:::o;15279:348::-;15319:7;15342:20;15360:1;15342:20;:::i;:::-;15337:25;;15376:20;15394:1;15376:20;:::i;:::-;15371:25;;15564:1;15496:66;15492:74;15489:1;15486:81;15481:1;15474:9;15467:17;15463:105;15460:131;;;15571:18;;:::i;:::-;15460:131;15619:1;15616;15612:9;15601:20;;15279:348;;;;:::o;15633:180::-;15681:77;15678:1;15671:88;15778:4;15775:1;15768:15;15802:4;15799:1;15792:15;15819:185;15859:1;15876:20;15894:1;15876:20;:::i;:::-;15871:25;;15910:20;15928:1;15910:20;:::i;:::-;15905:25;;15949:1;15939:35;;15954:18;;:::i;:::-;15939:35;15996:1;15993;15989:9;15984:14;;15819:185;;;;:::o;16010:240::-;16150:34;16146:1;16138:6;16134:14;16127:58;16219:23;16214:2;16206:6;16202:15;16195:48;16010:240;:::o;16256:366::-;16398:3;16419:67;16483:2;16478:3;16419:67;:::i;:::-;16412:74;;16495:93;16584:3;16495:93;:::i;:::-;16613:2;16608:3;16604:12;16597:19;;16256:366;;;:::o;16628:419::-;16794:4;16832:2;16821:9;16817:18;16809:26;;16881:9;16875:4;16871:20;16867:1;16856:9;16852:17;16845:47;16909:131;17035:4;16909:131;:::i;:::-;16901:139;;16628:419;;;:::o;17053:239::-;17193:34;17189:1;17181:6;17177:14;17170:58;17262:22;17257:2;17249:6;17245:15;17238:47;17053:239;:::o;17298:366::-;17440:3;17461:67;17525:2;17520:3;17461:67;:::i;:::-;17454:74;;17537:93;17626:3;17537:93;:::i;:::-;17655:2;17650:3;17646:12;17639:19;;17298:366;;;:::o;17670:419::-;17836:4;17874:2;17863:9;17859:18;17851:26;;17923:9;17917:4;17913:20;17909:1;17898:9;17894:17;17887:47;17951:131;18077:4;17951:131;:::i;:::-;17943:139;;17670:419;;;:::o;18095:225::-;18235:34;18231:1;18223:6;18219:14;18212:58;18304:8;18299:2;18291:6;18287:15;18280:33;18095:225;:::o;18326:366::-;18468:3;18489:67;18553:2;18548:3;18489:67;:::i;:::-;18482:74;;18565:93;18654:3;18565:93;:::i;:::-;18683:2;18678:3;18674:12;18667:19;;18326:366;;;:::o;18698:419::-;18864:4;18902:2;18891:9;18887:18;18879:26;;18951:9;18945:4;18941:20;18937:1;18926:9;18922:17;18915:47;18979:131;19105:4;18979:131;:::i;:::-;18971:139;;18698:419;;;:::o;19123:223::-;19263:34;19259:1;19251:6;19247:14;19240:58;19332:6;19327:2;19319:6;19315:15;19308:31;19123:223;:::o;19352:366::-;19494:3;19515:67;19579:2;19574:3;19515:67;:::i;:::-;19508:74;;19591:93;19680:3;19591:93;:::i;:::-;19709:2;19704:3;19700:12;19693:19;;19352:366;;;:::o;19724:419::-;19890:4;19928:2;19917:9;19913:18;19905:26;;19977:9;19971:4;19967:20;19963:1;19952:9;19948:17;19941:47;20005:131;20131:4;20005:131;:::i;:::-;19997:139;;19724:419;;;:::o;20149:221::-;20289:34;20285:1;20277:6;20273:14;20266:58;20358:4;20353:2;20345:6;20341:15;20334:29;20149:221;:::o;20376:366::-;20518:3;20539:67;20603:2;20598:3;20539:67;:::i;:::-;20532:74;;20615:93;20704:3;20615:93;:::i;:::-;20733:2;20728:3;20724:12;20717:19;;20376:366;;;:::o;20748:419::-;20914:4;20952:2;20941:9;20937:18;20929:26;;21001:9;20995:4;20991:20;20987:1;20976:9;20972:17;20965:47;21029:131;21155:4;21029:131;:::i;:::-;21021:139;;20748:419;;;:::o;21173:224::-;21313:34;21309:1;21301:6;21297:14;21290:58;21382:7;21377:2;21369:6;21365:15;21358:32;21173:224;:::o;21403:366::-;21545:3;21566:67;21630:2;21625:3;21566:67;:::i;:::-;21559:74;;21642:93;21731:3;21642:93;:::i;:::-;21760:2;21755:3;21751:12;21744:19;;21403:366;;;:::o;21775:419::-;21941:4;21979:2;21968:9;21964:18;21956:26;;22028:9;22022:4;22018:20;22014:1;22003:9;21999:17;21992:47;22056:131;22182:4;22056:131;:::i;:::-;22048:139;;21775:419;;;:::o;22200:222::-;22340:34;22336:1;22328:6;22324:14;22317:58;22409:5;22404:2;22396:6;22392:15;22385:30;22200:222;:::o;22428:366::-;22570:3;22591:67;22655:2;22650:3;22591:67;:::i;:::-;22584:74;;22667:93;22756:3;22667:93;:::i;:::-;22785:2;22780:3;22776:12;22769:19;;22428:366;;;:::o;22800:419::-;22966:4;23004:2;22993:9;22989:18;22981:26;;23053:9;23047:4;23043:20;23039:1;23028:9;23024:17;23017:47;23081:131;23207:4;23081:131;:::i;:::-;23073:139;;22800:419;;;:::o;23225:172::-;23365:24;23361:1;23353:6;23349:14;23342:48;23225:172;:::o;23403:366::-;23545:3;23566:67;23630:2;23625:3;23566:67;:::i;:::-;23559:74;;23642:93;23731:3;23642:93;:::i;:::-;23760:2;23755:3;23751:12;23744:19;;23403:366;;;:::o;23775:419::-;23941:4;23979:2;23968:9;23964:18;23956:26;;24028:9;24022:4;24018:20;24014:1;24003:9;23999:17;23992:47;24056:131;24182:4;24056:131;:::i;:::-;24048:139;;23775:419;;;:::o;24200:240::-;24340:34;24336:1;24328:6;24324:14;24317:58;24409:23;24404:2;24396:6;24392:15;24385:48;24200:240;:::o;24446:366::-;24588:3;24609:67;24673:2;24668:3;24609:67;:::i;:::-;24602:74;;24685:93;24774:3;24685:93;:::i;:::-;24803:2;24798:3;24794:12;24787:19;;24446:366;;;:::o;24818:419::-;24984:4;25022:2;25011:9;25007:18;24999:26;;25071:9;25065:4;25061:20;25057:1;25046:9;25042:17;25035:47;25099:131;25225:4;25099:131;:::i;:::-;25091:139;;24818:419;;;:::o;25243:169::-;25383:21;25379:1;25371:6;25367:14;25360:45;25243:169;:::o;25418:366::-;25560:3;25581:67;25645:2;25640:3;25581:67;:::i;:::-;25574:74;;25657:93;25746:3;25657:93;:::i;:::-;25775:2;25770:3;25766:12;25759:19;;25418:366;;;:::o;25790:419::-;25956:4;25994:2;25983:9;25979:18;25971:26;;26043:9;26037:4;26033:20;26029:1;26018:9;26014:17;26007:47;26071:131;26197:4;26071:131;:::i;:::-;26063:139;;25790:419;;;:::o;26215:241::-;26355:34;26351:1;26343:6;26339:14;26332:58;26424:24;26419:2;26411:6;26407:15;26400:49;26215:241;:::o;26462:366::-;26604:3;26625:67;26689:2;26684:3;26625:67;:::i;:::-;26618:74;;26701:93;26790:3;26701:93;:::i;:::-;26819:2;26814:3;26810:12;26803:19;;26462:366;;;:::o;26834:419::-;27000:4;27038:2;27027:9;27023:18;27015:26;;27087:9;27081:4;27077:20;27073:1;27062:9;27058:17;27051:47;27115:131;27241:4;27115:131;:::i;:::-;27107:139;;26834:419;;;:::o;27259:191::-;27299:4;27319:20;27337:1;27319:20;:::i;:::-;27314:25;;27353:20;27371:1;27353:20;:::i;:::-;27348:25;;27392:1;27389;27386:8;27383:34;;;27397:18;;:::i;:::-;27383:34;27442:1;27439;27435:9;27427:17;;27259:191;;;;:::o;27456:225::-;27596:34;27592:1;27584:6;27580:14;27573:58;27665:8;27660:2;27652:6;27648:15;27641:33;27456:225;:::o;27687:366::-;27829:3;27850:67;27914:2;27909:3;27850:67;:::i;:::-;27843:74;;27926:93;28015:3;27926:93;:::i;:::-;28044:2;28039:3;28035:12;28028:19;;27687:366;;;:::o;28059:419::-;28225:4;28263:2;28252:9;28248:18;28240:26;;28312:9;28306:4;28302:20;28298:1;28287:9;28283:17;28276:47;28340:131;28466:4;28340:131;:::i;:::-;28332:139;;28059:419;;;:::o;28484:442::-;28633:4;28671:2;28660:9;28656:18;28648:26;;28684:71;28752:1;28741:9;28737:17;28728:6;28684:71;:::i;:::-;28765:72;28833:2;28822:9;28818:18;28809:6;28765:72;:::i;:::-;28847;28915:2;28904:9;28900:18;28891:6;28847:72;:::i;:::-;28484:442;;;;;;:::o;28932:147::-;29033:11;29070:3;29055:18;;28932:147;;;;:::o;29085:114::-;;:::o;29205:398::-;29364:3;29385:83;29466:1;29461:3;29385:83;:::i;:::-;29378:90;;29477:93;29566:3;29477:93;:::i;:::-;29595:1;29590:3;29586:11;29579:18;;29205:398;;;:::o;29609:379::-;29793:3;29815:147;29958:3;29815:147;:::i;:::-;29808:154;;29979:3;29972:10;;29609:379;;;:::o;29994:180::-;30042:77;30039:1;30032:88;30139:4;30136:1;30129:15;30163:4;30160:1;30153:15;30180:180;30228:77;30225:1;30218:88;30325:4;30322:1;30315:15;30349:4;30346:1;30339:15;30366:143;30423:5;30454:6;30448:13;30439:22;;30470:33;30497:5;30470:33;:::i;:::-;30366:143;;;;:::o;30515:351::-;30585:6;30634:2;30622:9;30613:7;30609:23;30605:32;30602:119;;;30640:79;;:::i;:::-;30602:119;30760:1;30785:64;30841:7;30832:6;30821:9;30817:22;30785:64;:::i;:::-;30775:74;;30731:128;30515:351;;;;:::o;30872:85::-;30917:7;30946:5;30935:16;;30872:85;;;:::o;30963:158::-;31021:9;31054:61;31072:42;31081:32;31107:5;31081:32;:::i;:::-;31072:42;:::i;:::-;31054:61;:::i;:::-;31041:74;;30963:158;;;:::o;31127:147::-;31222:45;31261:5;31222:45;:::i;:::-;31217:3;31210:58;31127:147;;:::o;31280:114::-;31347:6;31381:5;31375:12;31365:22;;31280:114;;;:::o;31400:184::-;31499:11;31533:6;31528:3;31521:19;31573:4;31568:3;31564:14;31549:29;;31400:184;;;;:::o;31590:132::-;31657:4;31680:3;31672:11;;31710:4;31705:3;31701:14;31693:22;;31590:132;;;:::o;31728:108::-;31805:24;31823:5;31805:24;:::i;:::-;31800:3;31793:37;31728:108;;:::o;31842:179::-;31911:10;31932:46;31974:3;31966:6;31932:46;:::i;:::-;32010:4;32005:3;32001:14;31987:28;;31842:179;;;;:::o;32027:113::-;32097:4;32129;32124:3;32120:14;32112:22;;32027:113;;;:::o;32176:732::-;32295:3;32324:54;32372:5;32324:54;:::i;:::-;32394:86;32473:6;32468:3;32394:86;:::i;:::-;32387:93;;32504:56;32554:5;32504:56;:::i;:::-;32583:7;32614:1;32599:284;32624:6;32621:1;32618:13;32599:284;;;32700:6;32694:13;32727:63;32786:3;32771:13;32727:63;:::i;:::-;32720:70;;32813:60;32866:6;32813:60;:::i;:::-;32803:70;;32659:224;32646:1;32643;32639:9;32634:14;;32599:284;;;32603:14;32899:3;32892:10;;32300:608;;;32176:732;;;;:::o;32914:831::-;33177:4;33215:3;33204:9;33200:19;33192:27;;33229:71;33297:1;33286:9;33282:17;33273:6;33229:71;:::i;:::-;33310:80;33386:2;33375:9;33371:18;33362:6;33310:80;:::i;:::-;33437:9;33431:4;33427:20;33422:2;33411:9;33407:18;33400:48;33465:108;33568:4;33559:6;33465:108;:::i;:::-;33457:116;;33583:72;33651:2;33640:9;33636:18;33627:6;33583:72;:::i;:::-;33665:73;33733:3;33722:9;33718:19;33709:6;33665:73;:::i;:::-;32914:831;;;;;;;;:::o;33751:807::-;34000:4;34038:3;34027:9;34023:19;34015:27;;34052:71;34120:1;34109:9;34105:17;34096:6;34052:71;:::i;:::-;34133:72;34201:2;34190:9;34186:18;34177:6;34133:72;:::i;:::-;34215:80;34291:2;34280:9;34276:18;34267:6;34215:80;:::i;:::-;34305;34381:2;34370:9;34366:18;34357:6;34305:80;:::i;:::-;34395:73;34463:3;34452:9;34448:19;34439:6;34395:73;:::i;:::-;34478;34546:3;34535:9;34531:19;34522:6;34478:73;:::i;:::-;33751:807;;;;;;;;;:::o;34564:143::-;34621:5;34652:6;34646:13;34637:22;;34668:33;34695:5;34668:33;:::i;:::-;34564:143;;;;:::o;34713:663::-;34801:6;34809;34817;34866:2;34854:9;34845:7;34841:23;34837:32;34834:119;;;34872:79;;:::i;:::-;34834:119;34992:1;35017:64;35073:7;35064:6;35053:9;35049:22;35017:64;:::i;:::-;35007:74;;34963:128;35130:2;35156:64;35212:7;35203:6;35192:9;35188:22;35156:64;:::i;:::-;35146:74;;35101:129;35269:2;35295:64;35351:7;35342:6;35331:9;35327:22;35295:64;:::i;:::-;35285:74;;35240:129;34713:663;;;;;:::o

Swarm Source

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