ETH Price: $3,503.76 (+3.94%)
Gas: 4 Gwei

Token

Cramer Coin (CRAMER)
 

Overview

Max Total Supply

1,000,000,000 CRAMER

Holders

2,211

Market

Price

$0.00 @ 0.000000 ETH (-3.37%)

Onchain Market Cap

$544,040.00

Circulating Supply Market Cap

$460,582.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 CRAMER

Value
$0.00
0x55f2e85fd0c6fb9f6ccfbd9294c08c9171df13f7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Cramer Coin is a community token focused on inversing Jim Cramer's trades.

Market

Volume (24H):$6,095.05
Market Capitalization:$460,582.00
Circulating Supply:846,601,166.00 CRAMER
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CRAMERCOIN

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.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 subtraction 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;
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (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;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

// File: default_workspace/Cramer.sol


pragma solidity >=0.8.10 < 0.9;

/**
    Disclaimer: WE ARE NOT AFFILIATED WITH JIM CRAMER IN ANY WAY!
    Website: https://www.cramercoin.com/
    Twiiter: https://twitter.com/cramercoin
    TG: https://t.me/cramercoin
*/





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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

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

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

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Cramer Coin", "CRAMER") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 6;
        uint256 _buyLiquidityFee = 2;
        uint256 _buyDevFee = 2;

        uint256 _sellMarketingFee = 6;
        uint256 _sellLiquidityFee = 2;
        uint256 _sellDevFee = 2;

        uint256 totalSupply = 1000000000 * 1e18;

        maxTransactionAmount = 10000000 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 20000000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = totalSupply / 10000; // 0.01% swap wallet

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

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

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

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

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

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

    receive() external payable {}

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

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

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

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

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

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

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 12, "Must keep fees at 12% or less");
    }

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

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

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

    event BoughtEarly(address indexed sniper);

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(0x3D3D35bb9bEC23b06Ca00fe472b50E7A4c692C30);
        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethForDev}(0, path, devWallet, block.timestamp);

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600b81526020017f4372616d657220436f696e0000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4352414d4552000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000aa4565b5080600490805190602001906200014792919062000aa4565b5050506200016a6200015e620005d160201b60201c565b620005d960201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200069f60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000bbe565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000bbe565b6040518363ffffffff1660e01b8152600401620002e992919062000c01565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000bbe565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200069f60201b60201c565b6200038c60a05160016200070a60201b60201c565b60006006905060006002905060006002905060006006905060006002905060006002905060006b033b2e3c9fd0803ce800000090506a084595161401484a0000006008819055506a108b2a2c28029094000000600a8190555061271081620003f5919062000c96565b60098190555086601581905550856016819055508460178190555060175460165460155462000425919062000cce565b62000431919062000cce565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000461919062000cce565b6200046d919062000cce565b60188190555073b6a9db0efced378b7b02e4dce7364a477d940e0f600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e4684afe69ba238e3de17bbd0b1a64ce7077da42600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200053f62000531620007ab60201b60201c565b6001620007d560201b60201c565b62000552306001620007d560201b60201c565b6200056761dead6001620007d560201b60201c565b620005896200057b620007ab60201b60201c565b60016200069f60201b60201c565b6200059c3060016200069f60201b60201c565b620005b161dead60016200069f60201b60201c565b620005c333826200089060201b60201c565b505050505050505062000eed565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006af62000a0960201b60201c565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007e562000a0960201b60201c565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000884919062000d48565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000903576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008fa9062000dc6565b60405180910390fd5b620009176000838362000a9a60201b60201c565b80600260008282546200092b919062000cce565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000982919062000cce565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009e9919062000df9565b60405180910390a362000a056000838362000a9f60201b60201c565b5050565b62000a19620005d160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a3f620007ab60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a8f9062000e66565b60405180910390fd5b565b505050565b505050565b82805462000ab29062000eb7565b90600052602060002090601f01602090048101928262000ad6576000855562000b22565b82601f1062000af157805160ff191683800117855562000b22565b8280016001018555821562000b22579182015b8281111562000b2157825182559160200191906001019062000b04565b5b50905062000b31919062000b35565b5090565b5b8082111562000b5057600081600090555060010162000b36565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b868262000b59565b9050919050565b62000b988162000b79565b811462000ba457600080fd5b50565b60008151905062000bb88162000b8d565b92915050565b60006020828403121562000bd75762000bd662000b54565b5b600062000be78482850162000ba7565b91505092915050565b62000bfb8162000b79565b82525050565b600060408201905062000c18600083018562000bf0565b62000c27602083018462000bf0565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ca38262000c2e565b915062000cb08362000c2e565b92508262000cc35762000cc262000c38565b5b828204905092915050565b600062000cdb8262000c2e565b915062000ce88362000c2e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d205762000d1f62000c67565b5b828201905092915050565b60008115159050919050565b62000d428162000d2b565b82525050565b600060208201905062000d5f600083018462000d37565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000dae601f8362000d65565b915062000dbb8262000d76565b602082019050919050565b6000602082019050818103600083015262000de18162000d9f565b9050919050565b62000df38162000c2e565b82525050565b600060208201905062000e10600083018462000de8565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e4e60208362000d65565b915062000e5b8262000e16565b602082019050919050565b6000602082019050818103600083015262000e818162000e3f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ed057607f821691505b6020821081141562000ee75762000ee662000e88565b5b50919050565b60805160a0516154e262000f83600039600081816111cc0152818161163c01528181611d7701528181611e2e01528181611e5b015281816125a9015281816138630152818161391c0152613949015260008181610f95015281816125510152818161354e0152818161368e01528181613abf01528181613ba001528181613bc701528181613c630152613c8a01526154e26000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df9190613dd2565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613e8d565b610f51565b60405161041c9190613ee8565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613f03565b610f74565b6040516104599190613ee8565b60405180910390f35b34801561046e57600080fd5b50610477610f93565b6040516104849190613f8f565b60405180910390f35b34801561049957600080fd5b506104a2610fb7565b6040516104af9190613fb9565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613f03565b610fc1565b005b3480156104ed57600080fd5b506104f6611089565b6040516105039190613fb9565b60405180910390f35b34801561051857600080fd5b5061052161108f565b60405161052e9190613fb9565b60405180910390f35b34801561054357600080fd5b5061054c611095565b6040516105599190613fb9565b60405180910390f35b34801561056e57600080fd5b5061057761109b565b6040516105849190613fb9565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613fd4565b6110a1565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190614001565b61113c565b6040516105ea9190613ee8565b60405180910390f35b3480156105ff57600080fd5b5061060861116b565b6040516106159190614063565b60405180910390f35b34801561062a57600080fd5b50610633611171565b6040516106409190613fb9565b60405180910390f35b34801561065557600080fd5b5061065e611177565b60405161066b9190613ee8565b60405180910390f35b34801561068057600080fd5b5061068961118a565b604051610696919061409a565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613e8d565b611193565b6040516106d39190613ee8565b60405180910390f35b3480156106e857600080fd5b506106f16111ca565b6040516106fe9190614063565b60405180910390f35b34801561071357600080fd5b5061071c6111ee565b6040516107299190613ee8565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613f03565b611201565b6040516107669190613ee8565b60405180910390f35b34801561077b57600080fd5b50610784611257565b6040516107919190613fb9565b60405180910390f35b3480156107a657600080fd5b506107af61125d565b6040516107bc9190613ee8565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190613f03565b611270565b6040516107f99190613fb9565b60405180910390f35b34801561080e57600080fd5b506108176112b8565b005b34801561082557600080fd5b50610840600480360381019061083b91906140e1565b6112cc565b005b34801561084e57600080fd5b50610857611398565b6040516108649190613ee8565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614134565b6113c4565b005b3480156108a257600080fd5b506108ab611427565b6040516108b89190614063565b60405180910390f35b3480156108cd57600080fd5b506108d661144d565b6040516108e39190613fb9565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614174565b611453565b005b34801561092157600080fd5b5061092a6114de565b005b34801561093857600080fd5b50610941611525565b60405161094e9190614063565b60405180910390f35b34801561096357600080fd5b5061096c61154f565b6040516109799190614063565b60405180910390f35b34801561098e57600080fd5b50610997611575565b6040516109a49190613fb9565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906141c7565b61157b565b005b3480156109e257600080fd5b506109eb6115a0565b6040516109f89190613dd2565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614134565b611632565b005b348015610a3657600080fd5b50610a3f6116d7565b604051610a4c9190613fb9565b60405180910390f35b348015610a6157600080fd5b50610a6a6116dd565b604051610a779190613fb9565b60405180910390f35b348015610a8c57600080fd5b50610a956116e3565b604051610aa29190613fb9565b60405180910390f35b348015610ab757600080fd5b50610ac06116e9565b604051610acd9190613fb9565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af89190613e8d565b6116ef565b604051610b0a9190613ee8565b60405180910390f35b348015610b1f57600080fd5b50610b28611766565b604051610b359190613fb9565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190613e8d565b61176c565b604051610b729190613ee8565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190613f03565b61178f565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190613f03565b611857565b604051610bd89190613ee8565b60405180910390f35b348015610bed57600080fd5b50610bf6611877565b604051610c039190613ee8565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614134565b61188a565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614174565b61193b565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190613fd4565b6119c6565b005b348015610c9357600080fd5b50610c9c611a61565b604051610ca99190613ee8565b60405180910390f35b348015610cbe57600080fd5b50610cc7611a74565b604051610cd49190613fb9565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190613fd4565b611a7a565b604051610d119190613ee8565b60405180910390f35b348015610d2657600080fd5b50610d2f611b5b565b604051610d3c9190613fb9565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d6791906141f4565b611b61565b604051610d799190613fb9565b60405180910390f35b348015610d8e57600080fd5b50610d97611be8565b604051610da49190613fb9565b60405180910390f35b348015610db957600080fd5b50610dc2611bee565b604051610dcf9190613ee8565b60405180910390f35b348015610de457600080fd5b50610ded611c1a565b604051610dfa9190613fb9565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190613f03565b611c20565b005b348015610e3857600080fd5b50610e41611ca4565b604051610e4e9190613fb9565b60405180910390f35b348015610e6357600080fd5b50610e6c611caa565b604051610e799190613fb9565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190613fd4565b611cb0565b604051610eb69190613ee8565b60405180910390f35b606060038054610ece90614263565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614263565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b600080610f5c611f14565b9050610f69818585611f1c565b600191505092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc96120e7565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110a96120e7565b670de0b6b3a76400006103e860016110bf610fb7565b6110c991906142c4565b6110d3919061434d565b6110dd919061434d565b81101561111f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611116906143f0565b60405180910390fd5b670de0b6b3a76400008161113391906142c4565b60088190555050565b600080611147611f14565b9050611154858285612165565b61115f8585856121f1565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061119e611f14565b90506111bf8185856111b08589611b61565b6111ba9190614410565b611f1c565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112c06120e7565b6112ca6000612f89565b565b6112d46120e7565b610258831015611319576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611310906144d8565b60405180910390fd5b6103e8821115801561132c575060008210155b61136b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113629061456a565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006113a26120e7565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6113cc6120e7565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61145b6120e7565b8260158190555081601681905550806017819055506017546016546015546114839190614410565b61148d9190614410565b601481905550600c60145411156114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d0906145d6565b60405180910390fd5b505050565b6114e66120e7565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6115836120e7565b80601160026101000a81548160ff02191690831515021790555050565b6060600480546115af90614263565b80601f01602080910402602001604051908101604052809291908181526020018280546115db90614263565b80156116285780601f106115fd57610100808354040283529160200191611628565b820191906000526020600020905b81548152906001019060200180831161160b57829003601f168201915b5050505050905090565b61163a6120e7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090614668565b60405180910390fd5b6116d3828261304f565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806116fa611f14565b905060006117088286611b61565b90508381101561174d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611744906146fa565b60405180910390fd5b61175a8286868403611f1c565b60019250505092915050565b600e5481565b600080611777611f14565b90506117848185856121f1565b600191505092915050565b6117976120e7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b6118926120e7565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161192f9190613ee8565b60405180910390a25050565b6119436120e7565b8260198190555081601a8190555080601b81905550601b54601a5460195461196b9190614410565b6119759190614410565b601881905550600c60185411156119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b8906145d6565b60405180910390fd5b505050565b6119ce6120e7565b670de0b6b3a76400006103e860056119e4610fb7565b6119ee91906142c4565b6119f8919061434d565b611a02919061434d565b811015611a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3b9061478c565b60405180910390fd5b670de0b6b3a764000081611a5891906142c4565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b6000611a846120e7565b629896806001611a92610fb7565b611a9c91906142c4565b611aa6919061434d565b821015611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf9061481e565b60405180910390fd5b6103e86005611af5610fb7565b611aff91906142c4565b611b09919061434d565b821115611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b42906148b0565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611bf86120e7565b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b611c286120e7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90614942565b60405180910390fd5b611ca181612f89565b50565b601a5481565b600a5481565b6000611cba6120e7565b600f54601054611cca9190614410565b4211611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d02906149ae565b60405180910390fd5b6103e8821115611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4790614a40565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401611db29190614063565b602060405180830381865afa158015611dcf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df39190614a75565b90506000611e1e612710611e1086856130f090919063ffffffff16565b61310690919063ffffffff16565b90506000811115611e5757611e567f000000000000000000000000000000000000000000000000000000000000000061dead8361311c565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ec457600080fd5b505af1158015611ed8573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8390614b14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff390614ba6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120da9190613fb9565b60405180910390a3505050565b6120ef611f14565b73ffffffffffffffffffffffffffffffffffffffff1661210d611525565b73ffffffffffffffffffffffffffffffffffffffff1614612163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215a90614c12565b60405180910390fd5b565b60006121718484611b61565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146121eb57818110156121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d490614c7e565b60405180910390fd5b6121ea8484848403611f1c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225890614d10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c890614da2565b60405180910390fd5b60008114156122eb576122e68383600061311c565b612f84565b601160009054906101000a900460ff16156129ae57612308611525565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123765750612346611525565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123af5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123e9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124025750600560149054906101000a900460ff16155b156129ad57601160019054906101000a900460ff166124fc57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124bc5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6124fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f290614e0e565b60405180910390fd5b5b601360009054906101000a900460ff16156126c457612519611525565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156125a057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125f857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126c35743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061267e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267590614ec6565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127675750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561280e576008548111156127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a890614f58565b60405180910390fd5b600a546127bd83611270565b826127c89190614410565b1115612809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280090614fc4565b60405180910390fd5b6129ac565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128b15750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612900576008548111156128fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f290615056565b60405180910390fd5b6129ab565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129aa57600a5461295d83611270565b826129689190614410565b11156129a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a090614fc4565b60405180910390fd5b5b5b5b5b5b60006129b930611270565b9050600060095482101590508080156129de5750601160029054906101000a900460ff165b80156129f75750600560149054906101000a900460ff16155b8015612a4d5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612aa35750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612af95750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b3d576001600560146101000a81548160ff021916908315150217905550612b2161339d565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612ba35750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612bbb5750600c60009054906101000a900460ff165b8015612bd65750600d54600e54612bd29190614410565b4210155b8015612c2c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3b57612c3961383a565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612cf15750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612cfb57600090505b60008115612f7457602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d5e57506000601854115b15612e2b57612d8b6064612d7d601854886130f090919063ffffffff16565b61310690919063ffffffff16565b9050601854601a5482612d9e91906142c4565b612da8919061434d565b601d6000828254612db99190614410565b92505081905550601854601b5482612dd191906142c4565b612ddb919061434d565b601e6000828254612dec9190614410565b9250508190555060185460195482612e0491906142c4565b612e0e919061434d565b601c6000828254612e1f9190614410565b92505081905550612f50565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e8657506000601454115b15612f4f57612eb36064612ea5601454886130f090919063ffffffff16565b61310690919063ffffffff16565b905060145460165482612ec691906142c4565b612ed0919061434d565b601d6000828254612ee19190614410565b9250508190555060145460175482612ef991906142c4565b612f03919061434d565b601e6000828254612f149190614410565b9250508190555060145460155482612f2c91906142c4565b612f36919061434d565b601c6000828254612f479190614410565b925050819055505b5b6000811115612f6557612f6487308361311c565b5b8085612f719190615076565b94505b612f7f87878761311c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836130fe91906142c4565b905092915050565b60008183613114919061434d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561318c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318390614d10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f390614da2565b60405180910390fd5b613207838383613a00565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561328d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132849061511c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133209190614410565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133849190613fb9565b60405180910390a3613397848484613a05565b50505050565b60006133a830611270565b90506000601e54601c54601d546133bf9190614410565b6133c99190614410565b90506000808314806133db5750600082145b156133e857505050613838565b60146009546133f791906142c4565b83111561341057601460095461340d91906142c4565b92505b6000600283601d548661342391906142c4565b61342d919061434d565b613437919061434d565b9050600061344e8286613a0a90919063ffffffff16565b9050600047905061345e82613a20565b60006134738247613a0a90919063ffffffff16565b9050600061349e87613490601c54856130f090919063ffffffff16565b61310690919063ffffffff16565b905060006134c9886134bb601e54866130f090919063ffffffff16565b61310690919063ffffffff16565b905060008183856134da9190615076565b6134e49190615076565b90506000601d819055506000601c819055506000601e819055506000600267ffffffffffffffff81111561351b5761351a61513c565b5b6040519080825280602002602001820160405280156135495781602001602082028036833780820191505090505b5090507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135db9190615180565b816000815181106135ef576135ee6151ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050733d3d35bb9bec23b06ca00fe472b50e7a4c692c3081600181518110613652576136516151ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663b6f9de9584600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161370f94939291906152d5565b6000604051808303818588803b15801561372857600080fd5b505af115801561373c573d6000803e3d6000fd5b50505050506000881180156137515750600082115b1561379e576137608883613c5d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618783601d5460405161379593929190615321565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516137e490615389565b60006040518083038185875af1925050503d8060008114613821576040519150601f19603f3d011682016040523d82523d6000602084013e613826565b606091505b50508099505050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161389e9190614063565b602060405180830381865afa1580156138bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138df9190614a75565b9050600061390c6127106138fe600b54856130f090919063ffffffff16565b61310690919063ffffffff16565b90506000811115613945576139447f000000000000000000000000000000000000000000000000000000000000000061dead8361311c565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156139b257600080fd5b505af11580156139c6573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613a189190615076565b905092915050565b6000600267ffffffffffffffff811115613a3d57613a3c61513c565b5b604051908082528060200260200182016040528015613a6b5781602001602082028036833780820191505090505b5090503081600081518110613a8357613a826151ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b4c9190615180565b81600181518110613b6057613b5f6151ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613bc5307f000000000000000000000000000000000000000000000000000000000000000084611f1c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c2795949392919061539e565b600060405180830381600087803b158015613c4157600080fd5b505af1158015613c55573d6000803e3d6000fd5b505050505050565b613c88307f000000000000000000000000000000000000000000000000000000000000000084611f1c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613cef969594939291906153f8565b60606040518083038185885af1158015613d0d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d329190615459565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d73578082015181840152602081019050613d58565b83811115613d82576000848401525b50505050565b6000601f19601f8301169050919050565b6000613da482613d39565b613dae8185613d44565b9350613dbe818560208601613d55565b613dc781613d88565b840191505092915050565b60006020820190508181036000830152613dec8184613d99565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e2482613df9565b9050919050565b613e3481613e19565b8114613e3f57600080fd5b50565b600081359050613e5181613e2b565b92915050565b6000819050919050565b613e6a81613e57565b8114613e7557600080fd5b50565b600081359050613e8781613e61565b92915050565b60008060408385031215613ea457613ea3613df4565b5b6000613eb285828601613e42565b9250506020613ec385828601613e78565b9150509250929050565b60008115159050919050565b613ee281613ecd565b82525050565b6000602082019050613efd6000830184613ed9565b92915050565b600060208284031215613f1957613f18613df4565b5b6000613f2784828501613e42565b91505092915050565b6000819050919050565b6000613f55613f50613f4b84613df9565b613f30565b613df9565b9050919050565b6000613f6782613f3a565b9050919050565b6000613f7982613f5c565b9050919050565b613f8981613f6e565b82525050565b6000602082019050613fa46000830184613f80565b92915050565b613fb381613e57565b82525050565b6000602082019050613fce6000830184613faa565b92915050565b600060208284031215613fea57613fe9613df4565b5b6000613ff884828501613e78565b91505092915050565b60008060006060848603121561401a57614019613df4565b5b600061402886828701613e42565b935050602061403986828701613e42565b925050604061404a86828701613e78565b9150509250925092565b61405d81613e19565b82525050565b60006020820190506140786000830184614054565b92915050565b600060ff82169050919050565b6140948161407e565b82525050565b60006020820190506140af600083018461408b565b92915050565b6140be81613ecd565b81146140c957600080fd5b50565b6000813590506140db816140b5565b92915050565b6000806000606084860312156140fa576140f9613df4565b5b600061410886828701613e78565b935050602061411986828701613e78565b925050604061412a868287016140cc565b9150509250925092565b6000806040838503121561414b5761414a613df4565b5b600061415985828601613e42565b925050602061416a858286016140cc565b9150509250929050565b60008060006060848603121561418d5761418c613df4565b5b600061419b86828701613e78565b93505060206141ac86828701613e78565b92505060406141bd86828701613e78565b9150509250925092565b6000602082840312156141dd576141dc613df4565b5b60006141eb848285016140cc565b91505092915050565b6000806040838503121561420b5761420a613df4565b5b600061421985828601613e42565b925050602061422a85828601613e42565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061427b57607f821691505b6020821081141561428f5761428e614234565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142cf82613e57565b91506142da83613e57565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561431357614312614295565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061435882613e57565b915061436383613e57565b9250826143735761437261431e565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006143da602f83613d44565b91506143e58261437e565b604082019050919050565b60006020820190508181036000830152614409816143cd565b9050919050565b600061441b82613e57565b915061442683613e57565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561445b5761445a614295565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006144c2603383613d44565b91506144cd82614466565b604082019050919050565b600060208201905081810360008301526144f1816144b5565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614554603083613d44565b915061455f826144f8565b604082019050919050565b6000602082019050818103600083015261458381614547565b9050919050565b7f4d757374206b656570206665657320617420313225206f72206c657373000000600082015250565b60006145c0601d83613d44565b91506145cb8261458a565b602082019050919050565b600060208201905081810360008301526145ef816145b3565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614652603983613d44565b915061465d826145f6565b604082019050919050565b6000602082019050818103600083015261468181614645565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146e4602583613d44565b91506146ef82614688565b604082019050919050565b60006020820190508181036000830152614713816146d7565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614776602483613d44565b91506147818261471a565b604082019050919050565b600060208201905081810360008301526147a581614769565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30303030312520746f74616c20737570706c792e000000000000000000602082015250565b6000614808603783613d44565b9150614813826147ac565b604082019050919050565b60006020820190508181036000830152614837816147fb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061489a603483613d44565b91506148a58261483e565b604082019050919050565b600060208201905081810360008301526148c98161488d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061492c602683613d44565b9150614937826148d0565b604082019050919050565b6000602082019050818103600083015261495b8161491f565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614998602083613d44565b91506149a382614962565b602082019050919050565b600060208201905081810360008301526149c78161498b565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614a2a602a83613d44565b9150614a35826149ce565b604082019050919050565b60006020820190508181036000830152614a5981614a1d565b9050919050565b600081519050614a6f81613e61565b92915050565b600060208284031215614a8b57614a8a613df4565b5b6000614a9984828501614a60565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614afe602483613d44565b9150614b0982614aa2565b604082019050919050565b60006020820190508181036000830152614b2d81614af1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b90602283613d44565b9150614b9b82614b34565b604082019050919050565b60006020820190508181036000830152614bbf81614b83565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614bfc602083613d44565b9150614c0782614bc6565b602082019050919050565b60006020820190508181036000830152614c2b81614bef565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614c68601d83613d44565b9150614c7382614c32565b602082019050919050565b60006020820190508181036000830152614c9781614c5b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614cfa602583613d44565b9150614d0582614c9e565b604082019050919050565b60006020820190508181036000830152614d2981614ced565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d8c602383613d44565b9150614d9782614d30565b604082019050919050565b60006020820190508181036000830152614dbb81614d7f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614df8601683613d44565b9150614e0382614dc2565b602082019050919050565b60006020820190508181036000830152614e2781614deb565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614eb0604983613d44565b9150614ebb82614e2e565b606082019050919050565b60006020820190508181036000830152614edf81614ea3565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614f42603583613d44565b9150614f4d82614ee6565b604082019050919050565b60006020820190508181036000830152614f7181614f35565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614fae601383613d44565b9150614fb982614f78565b602082019050919050565b60006020820190508181036000830152614fdd81614fa1565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615040603683613d44565b915061504b82614fe4565b604082019050919050565b6000602082019050818103600083015261506f81615033565b9050919050565b600061508182613e57565b915061508c83613e57565b92508282101561509f5761509e614295565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615106602683613d44565b9150615111826150aa565b604082019050919050565b60006020820190508181036000830152615135816150f9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061517a81613e2b565b92915050565b60006020828403121561519657615195613df4565b5b60006151a48482850161516b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006152016151fc6151f7846151dc565b613f30565b613e57565b9050919050565b615211816151e6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61524c81613e19565b82525050565b600061525e8383615243565b60208301905092915050565b6000602082019050919050565b600061528282615217565b61528c8185615222565b935061529783615233565b8060005b838110156152c85781516152af8882615252565b97506152ba8361526a565b92505060018101905061529b565b5085935050505092915050565b60006080820190506152ea6000830187615208565b81810360208301526152fc8186615277565b905061530b6040830185614054565b6153186060830184613faa565b95945050505050565b60006060820190506153366000830186613faa565b6153436020830185613faa565b6153506040830184613faa565b949350505050565b600081905092915050565b50565b6000615373600083615358565b915061537e82615363565b600082019050919050565b600061539482615366565b9150819050919050565b600060a0820190506153b36000830188613faa565b6153c06020830187615208565b81810360408301526153d28186615277565b90506153e16060830185614054565b6153ee6080830184613faa565b9695505050505050565b600060c08201905061540d6000830189614054565b61541a6020830188613faa565b6154276040830187615208565b6154346060830186615208565b6154416080830185614054565b61544e60a0830184613faa565b979650505050505050565b60008060006060848603121561547257615471613df4565b5b600061548086828701614a60565b935050602061549186828701614a60565b92505060406154a286828701614a60565b915050925092509256fea26469706673582212202d3e0d66513c8d3a60dd47b47514689bd891fe61f54b7611cb41023ca2a5eeea64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df9190613dd2565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613e8d565b610f51565b60405161041c9190613ee8565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613f03565b610f74565b6040516104599190613ee8565b60405180910390f35b34801561046e57600080fd5b50610477610f93565b6040516104849190613f8f565b60405180910390f35b34801561049957600080fd5b506104a2610fb7565b6040516104af9190613fb9565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613f03565b610fc1565b005b3480156104ed57600080fd5b506104f6611089565b6040516105039190613fb9565b60405180910390f35b34801561051857600080fd5b5061052161108f565b60405161052e9190613fb9565b60405180910390f35b34801561054357600080fd5b5061054c611095565b6040516105599190613fb9565b60405180910390f35b34801561056e57600080fd5b5061057761109b565b6040516105849190613fb9565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613fd4565b6110a1565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190614001565b61113c565b6040516105ea9190613ee8565b60405180910390f35b3480156105ff57600080fd5b5061060861116b565b6040516106159190614063565b60405180910390f35b34801561062a57600080fd5b50610633611171565b6040516106409190613fb9565b60405180910390f35b34801561065557600080fd5b5061065e611177565b60405161066b9190613ee8565b60405180910390f35b34801561068057600080fd5b5061068961118a565b604051610696919061409a565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613e8d565b611193565b6040516106d39190613ee8565b60405180910390f35b3480156106e857600080fd5b506106f16111ca565b6040516106fe9190614063565b60405180910390f35b34801561071357600080fd5b5061071c6111ee565b6040516107299190613ee8565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613f03565b611201565b6040516107669190613ee8565b60405180910390f35b34801561077b57600080fd5b50610784611257565b6040516107919190613fb9565b60405180910390f35b3480156107a657600080fd5b506107af61125d565b6040516107bc9190613ee8565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190613f03565b611270565b6040516107f99190613fb9565b60405180910390f35b34801561080e57600080fd5b506108176112b8565b005b34801561082557600080fd5b50610840600480360381019061083b91906140e1565b6112cc565b005b34801561084e57600080fd5b50610857611398565b6040516108649190613ee8565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614134565b6113c4565b005b3480156108a257600080fd5b506108ab611427565b6040516108b89190614063565b60405180910390f35b3480156108cd57600080fd5b506108d661144d565b6040516108e39190613fb9565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614174565b611453565b005b34801561092157600080fd5b5061092a6114de565b005b34801561093857600080fd5b50610941611525565b60405161094e9190614063565b60405180910390f35b34801561096357600080fd5b5061096c61154f565b6040516109799190614063565b60405180910390f35b34801561098e57600080fd5b50610997611575565b6040516109a49190613fb9565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906141c7565b61157b565b005b3480156109e257600080fd5b506109eb6115a0565b6040516109f89190613dd2565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614134565b611632565b005b348015610a3657600080fd5b50610a3f6116d7565b604051610a4c9190613fb9565b60405180910390f35b348015610a6157600080fd5b50610a6a6116dd565b604051610a779190613fb9565b60405180910390f35b348015610a8c57600080fd5b50610a956116e3565b604051610aa29190613fb9565b60405180910390f35b348015610ab757600080fd5b50610ac06116e9565b604051610acd9190613fb9565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af89190613e8d565b6116ef565b604051610b0a9190613ee8565b60405180910390f35b348015610b1f57600080fd5b50610b28611766565b604051610b359190613fb9565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190613e8d565b61176c565b604051610b729190613ee8565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190613f03565b61178f565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190613f03565b611857565b604051610bd89190613ee8565b60405180910390f35b348015610bed57600080fd5b50610bf6611877565b604051610c039190613ee8565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614134565b61188a565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614174565b61193b565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190613fd4565b6119c6565b005b348015610c9357600080fd5b50610c9c611a61565b604051610ca99190613ee8565b60405180910390f35b348015610cbe57600080fd5b50610cc7611a74565b604051610cd49190613fb9565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190613fd4565b611a7a565b604051610d119190613ee8565b60405180910390f35b348015610d2657600080fd5b50610d2f611b5b565b604051610d3c9190613fb9565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d6791906141f4565b611b61565b604051610d799190613fb9565b60405180910390f35b348015610d8e57600080fd5b50610d97611be8565b604051610da49190613fb9565b60405180910390f35b348015610db957600080fd5b50610dc2611bee565b604051610dcf9190613ee8565b60405180910390f35b348015610de457600080fd5b50610ded611c1a565b604051610dfa9190613fb9565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190613f03565b611c20565b005b348015610e3857600080fd5b50610e41611ca4565b604051610e4e9190613fb9565b60405180910390f35b348015610e6357600080fd5b50610e6c611caa565b604051610e799190613fb9565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190613fd4565b611cb0565b604051610eb69190613ee8565b60405180910390f35b606060038054610ece90614263565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614263565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b600080610f5c611f14565b9050610f69818585611f1c565b600191505092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc96120e7565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110a96120e7565b670de0b6b3a76400006103e860016110bf610fb7565b6110c991906142c4565b6110d3919061434d565b6110dd919061434d565b81101561111f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611116906143f0565b60405180910390fd5b670de0b6b3a76400008161113391906142c4565b60088190555050565b600080611147611f14565b9050611154858285612165565b61115f8585856121f1565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061119e611f14565b90506111bf8185856111b08589611b61565b6111ba9190614410565b611f1c565b600191505092915050565b7f000000000000000000000000397973ba6e752943ea9146f88414d1f379fd427e81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112c06120e7565b6112ca6000612f89565b565b6112d46120e7565b610258831015611319576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611310906144d8565b60405180910390fd5b6103e8821115801561132c575060008210155b61136b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113629061456a565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006113a26120e7565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6113cc6120e7565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61145b6120e7565b8260158190555081601681905550806017819055506017546016546015546114839190614410565b61148d9190614410565b601481905550600c60145411156114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d0906145d6565b60405180910390fd5b505050565b6114e66120e7565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6115836120e7565b80601160026101000a81548160ff02191690831515021790555050565b6060600480546115af90614263565b80601f01602080910402602001604051908101604052809291908181526020018280546115db90614263565b80156116285780601f106115fd57610100808354040283529160200191611628565b820191906000526020600020905b81548152906001019060200180831161160b57829003601f168201915b5050505050905090565b61163a6120e7565b7f000000000000000000000000397973ba6e752943ea9146f88414d1f379fd427e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090614668565b60405180910390fd5b6116d3828261304f565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806116fa611f14565b905060006117088286611b61565b90508381101561174d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611744906146fa565b60405180910390fd5b61175a8286868403611f1c565b60019250505092915050565b600e5481565b600080611777611f14565b90506117848185856121f1565b600191505092915050565b6117976120e7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b6118926120e7565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161192f9190613ee8565b60405180910390a25050565b6119436120e7565b8260198190555081601a8190555080601b81905550601b54601a5460195461196b9190614410565b6119759190614410565b601881905550600c60185411156119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b8906145d6565b60405180910390fd5b505050565b6119ce6120e7565b670de0b6b3a76400006103e860056119e4610fb7565b6119ee91906142c4565b6119f8919061434d565b611a02919061434d565b811015611a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3b9061478c565b60405180910390fd5b670de0b6b3a764000081611a5891906142c4565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b6000611a846120e7565b629896806001611a92610fb7565b611a9c91906142c4565b611aa6919061434d565b821015611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf9061481e565b60405180910390fd5b6103e86005611af5610fb7565b611aff91906142c4565b611b09919061434d565b821115611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b42906148b0565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611bf86120e7565b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b611c286120e7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90614942565b60405180910390fd5b611ca181612f89565b50565b601a5481565b600a5481565b6000611cba6120e7565b600f54601054611cca9190614410565b4211611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d02906149ae565b60405180910390fd5b6103e8821115611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4790614a40565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000397973ba6e752943ea9146f88414d1f379fd427e6040518263ffffffff1660e01b8152600401611db29190614063565b602060405180830381865afa158015611dcf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df39190614a75565b90506000611e1e612710611e1086856130f090919063ffffffff16565b61310690919063ffffffff16565b90506000811115611e5757611e567f000000000000000000000000397973ba6e752943ea9146f88414d1f379fd427e61dead8361311c565b5b60007f000000000000000000000000397973ba6e752943ea9146f88414d1f379fd427e90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ec457600080fd5b505af1158015611ed8573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8390614b14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff390614ba6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120da9190613fb9565b60405180910390a3505050565b6120ef611f14565b73ffffffffffffffffffffffffffffffffffffffff1661210d611525565b73ffffffffffffffffffffffffffffffffffffffff1614612163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215a90614c12565b60405180910390fd5b565b60006121718484611b61565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146121eb57818110156121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d490614c7e565b60405180910390fd5b6121ea8484848403611f1c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225890614d10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c890614da2565b60405180910390fd5b60008114156122eb576122e68383600061311c565b612f84565b601160009054906101000a900460ff16156129ae57612308611525565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123765750612346611525565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123af5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123e9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124025750600560149054906101000a900460ff16155b156129ad57601160019054906101000a900460ff166124fc57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124bc5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6124fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f290614e0e565b60405180910390fd5b5b601360009054906101000a900460ff16156126c457612519611525565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156125a057507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125f857507f000000000000000000000000397973ba6e752943ea9146f88414d1f379fd427e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126c35743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061267e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267590614ec6565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127675750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561280e576008548111156127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a890614f58565b60405180910390fd5b600a546127bd83611270565b826127c89190614410565b1115612809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280090614fc4565b60405180910390fd5b6129ac565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128b15750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612900576008548111156128fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f290615056565b60405180910390fd5b6129ab565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129aa57600a5461295d83611270565b826129689190614410565b11156129a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a090614fc4565b60405180910390fd5b5b5b5b5b5b60006129b930611270565b9050600060095482101590508080156129de5750601160029054906101000a900460ff165b80156129f75750600560149054906101000a900460ff16155b8015612a4d5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612aa35750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612af95750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b3d576001600560146101000a81548160ff021916908315150217905550612b2161339d565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612ba35750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612bbb5750600c60009054906101000a900460ff165b8015612bd65750600d54600e54612bd29190614410565b4210155b8015612c2c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3b57612c3961383a565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612cf15750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612cfb57600090505b60008115612f7457602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d5e57506000601854115b15612e2b57612d8b6064612d7d601854886130f090919063ffffffff16565b61310690919063ffffffff16565b9050601854601a5482612d9e91906142c4565b612da8919061434d565b601d6000828254612db99190614410565b92505081905550601854601b5482612dd191906142c4565b612ddb919061434d565b601e6000828254612dec9190614410565b9250508190555060185460195482612e0491906142c4565b612e0e919061434d565b601c6000828254612e1f9190614410565b92505081905550612f50565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e8657506000601454115b15612f4f57612eb36064612ea5601454886130f090919063ffffffff16565b61310690919063ffffffff16565b905060145460165482612ec691906142c4565b612ed0919061434d565b601d6000828254612ee19190614410565b9250508190555060145460175482612ef991906142c4565b612f03919061434d565b601e6000828254612f149190614410565b9250508190555060145460155482612f2c91906142c4565b612f36919061434d565b601c6000828254612f479190614410565b925050819055505b5b6000811115612f6557612f6487308361311c565b5b8085612f719190615076565b94505b612f7f87878761311c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836130fe91906142c4565b905092915050565b60008183613114919061434d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561318c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318390614d10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f390614da2565b60405180910390fd5b613207838383613a00565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561328d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132849061511c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133209190614410565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133849190613fb9565b60405180910390a3613397848484613a05565b50505050565b60006133a830611270565b90506000601e54601c54601d546133bf9190614410565b6133c99190614410565b90506000808314806133db5750600082145b156133e857505050613838565b60146009546133f791906142c4565b83111561341057601460095461340d91906142c4565b92505b6000600283601d548661342391906142c4565b61342d919061434d565b613437919061434d565b9050600061344e8286613a0a90919063ffffffff16565b9050600047905061345e82613a20565b60006134738247613a0a90919063ffffffff16565b9050600061349e87613490601c54856130f090919063ffffffff16565b61310690919063ffffffff16565b905060006134c9886134bb601e54866130f090919063ffffffff16565b61310690919063ffffffff16565b905060008183856134da9190615076565b6134e49190615076565b90506000601d819055506000601c819055506000601e819055506000600267ffffffffffffffff81111561351b5761351a61513c565b5b6040519080825280602002602001820160405280156135495781602001602082028036833780820191505090505b5090507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135db9190615180565b816000815181106135ef576135ee6151ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050733d3d35bb9bec23b06ca00fe472b50e7a4c692c3081600181518110613652576136516151ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663b6f9de9584600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161370f94939291906152d5565b6000604051808303818588803b15801561372857600080fd5b505af115801561373c573d6000803e3d6000fd5b50505050506000881180156137515750600082115b1561379e576137608883613c5d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618783601d5460405161379593929190615321565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516137e490615389565b60006040518083038185875af1925050503d8060008114613821576040519150601f19603f3d011682016040523d82523d6000602084013e613826565b606091505b50508099505050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000397973ba6e752943ea9146f88414d1f379fd427e6040518263ffffffff1660e01b815260040161389e9190614063565b602060405180830381865afa1580156138bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138df9190614a75565b9050600061390c6127106138fe600b54856130f090919063ffffffff16565b61310690919063ffffffff16565b90506000811115613945576139447f000000000000000000000000397973ba6e752943ea9146f88414d1f379fd427e61dead8361311c565b5b60007f000000000000000000000000397973ba6e752943ea9146f88414d1f379fd427e90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156139b257600080fd5b505af11580156139c6573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613a189190615076565b905092915050565b6000600267ffffffffffffffff811115613a3d57613a3c61513c565b5b604051908082528060200260200182016040528015613a6b5781602001602082028036833780820191505090505b5090503081600081518110613a8357613a826151ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b4c9190615180565b81600181518110613b6057613b5f6151ad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613bc5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f1c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c2795949392919061539e565b600060405180830381600087803b158015613c4157600080fd5b505af1158015613c55573d6000803e3d6000fd5b505050505050565b613c88307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f1c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613cef969594939291906153f8565b60606040518083038185885af1158015613d0d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d329190615459565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d73578082015181840152602081019050613d58565b83811115613d82576000848401525b50505050565b6000601f19601f8301169050919050565b6000613da482613d39565b613dae8185613d44565b9350613dbe818560208601613d55565b613dc781613d88565b840191505092915050565b60006020820190508181036000830152613dec8184613d99565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e2482613df9565b9050919050565b613e3481613e19565b8114613e3f57600080fd5b50565b600081359050613e5181613e2b565b92915050565b6000819050919050565b613e6a81613e57565b8114613e7557600080fd5b50565b600081359050613e8781613e61565b92915050565b60008060408385031215613ea457613ea3613df4565b5b6000613eb285828601613e42565b9250506020613ec385828601613e78565b9150509250929050565b60008115159050919050565b613ee281613ecd565b82525050565b6000602082019050613efd6000830184613ed9565b92915050565b600060208284031215613f1957613f18613df4565b5b6000613f2784828501613e42565b91505092915050565b6000819050919050565b6000613f55613f50613f4b84613df9565b613f30565b613df9565b9050919050565b6000613f6782613f3a565b9050919050565b6000613f7982613f5c565b9050919050565b613f8981613f6e565b82525050565b6000602082019050613fa46000830184613f80565b92915050565b613fb381613e57565b82525050565b6000602082019050613fce6000830184613faa565b92915050565b600060208284031215613fea57613fe9613df4565b5b6000613ff884828501613e78565b91505092915050565b60008060006060848603121561401a57614019613df4565b5b600061402886828701613e42565b935050602061403986828701613e42565b925050604061404a86828701613e78565b9150509250925092565b61405d81613e19565b82525050565b60006020820190506140786000830184614054565b92915050565b600060ff82169050919050565b6140948161407e565b82525050565b60006020820190506140af600083018461408b565b92915050565b6140be81613ecd565b81146140c957600080fd5b50565b6000813590506140db816140b5565b92915050565b6000806000606084860312156140fa576140f9613df4565b5b600061410886828701613e78565b935050602061411986828701613e78565b925050604061412a868287016140cc565b9150509250925092565b6000806040838503121561414b5761414a613df4565b5b600061415985828601613e42565b925050602061416a858286016140cc565b9150509250929050565b60008060006060848603121561418d5761418c613df4565b5b600061419b86828701613e78565b93505060206141ac86828701613e78565b92505060406141bd86828701613e78565b9150509250925092565b6000602082840312156141dd576141dc613df4565b5b60006141eb848285016140cc565b91505092915050565b6000806040838503121561420b5761420a613df4565b5b600061421985828601613e42565b925050602061422a85828601613e42565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061427b57607f821691505b6020821081141561428f5761428e614234565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142cf82613e57565b91506142da83613e57565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561431357614312614295565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061435882613e57565b915061436383613e57565b9250826143735761437261431e565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006143da602f83613d44565b91506143e58261437e565b604082019050919050565b60006020820190508181036000830152614409816143cd565b9050919050565b600061441b82613e57565b915061442683613e57565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561445b5761445a614295565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006144c2603383613d44565b91506144cd82614466565b604082019050919050565b600060208201905081810360008301526144f1816144b5565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614554603083613d44565b915061455f826144f8565b604082019050919050565b6000602082019050818103600083015261458381614547565b9050919050565b7f4d757374206b656570206665657320617420313225206f72206c657373000000600082015250565b60006145c0601d83613d44565b91506145cb8261458a565b602082019050919050565b600060208201905081810360008301526145ef816145b3565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614652603983613d44565b915061465d826145f6565b604082019050919050565b6000602082019050818103600083015261468181614645565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146e4602583613d44565b91506146ef82614688565b604082019050919050565b60006020820190508181036000830152614713816146d7565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614776602483613d44565b91506147818261471a565b604082019050919050565b600060208201905081810360008301526147a581614769565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30303030312520746f74616c20737570706c792e000000000000000000602082015250565b6000614808603783613d44565b9150614813826147ac565b604082019050919050565b60006020820190508181036000830152614837816147fb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061489a603483613d44565b91506148a58261483e565b604082019050919050565b600060208201905081810360008301526148c98161488d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061492c602683613d44565b9150614937826148d0565b604082019050919050565b6000602082019050818103600083015261495b8161491f565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614998602083613d44565b91506149a382614962565b602082019050919050565b600060208201905081810360008301526149c78161498b565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614a2a602a83613d44565b9150614a35826149ce565b604082019050919050565b60006020820190508181036000830152614a5981614a1d565b9050919050565b600081519050614a6f81613e61565b92915050565b600060208284031215614a8b57614a8a613df4565b5b6000614a9984828501614a60565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614afe602483613d44565b9150614b0982614aa2565b604082019050919050565b60006020820190508181036000830152614b2d81614af1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b90602283613d44565b9150614b9b82614b34565b604082019050919050565b60006020820190508181036000830152614bbf81614b83565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614bfc602083613d44565b9150614c0782614bc6565b602082019050919050565b60006020820190508181036000830152614c2b81614bef565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614c68601d83613d44565b9150614c7382614c32565b602082019050919050565b60006020820190508181036000830152614c9781614c5b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614cfa602583613d44565b9150614d0582614c9e565b604082019050919050565b60006020820190508181036000830152614d2981614ced565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d8c602383613d44565b9150614d9782614d30565b604082019050919050565b60006020820190508181036000830152614dbb81614d7f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614df8601683613d44565b9150614e0382614dc2565b602082019050919050565b60006020820190508181036000830152614e2781614deb565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614eb0604983613d44565b9150614ebb82614e2e565b606082019050919050565b60006020820190508181036000830152614edf81614ea3565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614f42603583613d44565b9150614f4d82614ee6565b604082019050919050565b60006020820190508181036000830152614f7181614f35565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614fae601383613d44565b9150614fb982614f78565b602082019050919050565b60006020820190508181036000830152614fdd81614fa1565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615040603683613d44565b915061504b82614fe4565b604082019050919050565b6000602082019050818103600083015261506f81615033565b9050919050565b600061508182613e57565b915061508c83613e57565b92508282101561509f5761509e614295565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615106602683613d44565b9150615111826150aa565b604082019050919050565b60006020820190508181036000830152615135816150f9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061517a81613e2b565b92915050565b60006020828403121561519657615195613df4565b5b60006151a48482850161516b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006152016151fc6151f7846151dc565b613f30565b613e57565b9050919050565b615211816151e6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61524c81613e19565b82525050565b600061525e8383615243565b60208301905092915050565b6000602082019050919050565b600061528282615217565b61528c8185615222565b935061529783615233565b8060005b838110156152c85781516152af8882615252565b97506152ba8361526a565b92505060018101905061529b565b5085935050505092915050565b60006080820190506152ea6000830187615208565b81810360208301526152fc8186615277565b905061530b6040830185614054565b6153186060830184613faa565b95945050505050565b60006060820190506153366000830186613faa565b6153436020830185613faa565b6153506040830184613faa565b949350505050565b600081905092915050565b50565b6000615373600083615358565b915061537e82615363565b600082019050919050565b600061539482615366565b9150819050919050565b600060a0820190506153b36000830188613faa565b6153c06020830187615208565b81810360408301526153d28186615277565b90506153e16060830185614054565b6153ee6080830184613faa565b9695505050505050565b600060c08201905061540d6000830189614054565b61541a6020830188613faa565b6154276040830187615208565b6154346060830186615208565b6154416080830185614054565b61544e60a0830184613faa565b979650505050505050565b60008060006060848603121561547257615471613df4565b5b600061548086828701614a60565b935050602061549186828701614a60565b92505060406154a286828701614a60565b915050925092509256fea26469706673582212202d3e0d66513c8d3a60dd47b47514689bd891fe61f54b7611cb41023ca2a5eeea64736f6c634300080a0033

Deployed Bytecode Sourcemap

32721:19669:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16394:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18745:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34352:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32801:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17514:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41490:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33366:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33181:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34136:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34096;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38804:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19526:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32904:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33276:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33237:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17356:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20230:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32859:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33464:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41655:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33951:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33544:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17685:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9817:103;;;;;;;;;;;;;:::i;:::-;;49972:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37908:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39351:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32996:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33844;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39722:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37701:155;;;;;;;;;;;;;:::i;:::-;;9169:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33033:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33986:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39614:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16613:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40743:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33918:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33420:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34176:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34062:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20971:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33328:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18018:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41251:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34573:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33504:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40553:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40133:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39087:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33762:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33066:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38295:501;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33810:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18274:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33108:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38090:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33881:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10075:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34024:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33148:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51331:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16394:100;16448:13;16481:5;16474:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16394:100;:::o;18745:201::-;18828:4;18845:13;18861:12;:10;:12::i;:::-;18845:28;;18884:32;18893:5;18900:7;18909:6;18884:8;:32::i;:::-;18934:4;18927:11;;;18745:201;;;;:::o;34352:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32801:51::-;;;:::o;17514:108::-;17575:7;17602:12;;17595:19;;17514:108;:::o;41490:157::-;9055:13;:11;:13::i;:::-;41597:9:::1;;;;;;;;;;;41569:38;;41586:9;41569:38;;;;;;;;;;;;41630:9;41618;;:21;;;;;;;;;;;;;;;;;;41490:157:::0;:::o;33366:47::-;;;;:::o;33181:36::-;;;;:::o;34136:33::-;;;;:::o;34096:::-;;;;:::o;38804:275::-;9055:13;:11;:13::i;:::-;38941:4:::1;38933;38928:1;38912:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38911:26;;;;:::i;:::-;38910:35;;;;:::i;:::-;38900:6;:45;;38878:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39064:6;39054;:17;;;;:::i;:::-;39031:20;:40;;;;38804:275:::0;:::o;19526:295::-;19657:4;19674:15;19692:12;:10;:12::i;:::-;19674:30;;19715:38;19731:4;19737:7;19746:6;19715:15;:38::i;:::-;19764:27;19774:4;19780:2;19784:6;19764:9;:27::i;:::-;19809:4;19802:11;;;19526:295;;;;;:::o;32904:53::-;32950:6;32904:53;:::o;33276:45::-;;;;:::o;33237:32::-;;;;;;;;;;;;;:::o;17356:93::-;17414:5;17439:2;17432:9;;17356:93;:::o;20230:238::-;20318:4;20335:13;20351:12;:10;:12::i;:::-;20335:28;;20374:64;20383:5;20390:7;20427:10;20399:25;20409:5;20416:7;20399:9;:25::i;:::-;:38;;;;:::i;:::-;20374:8;:64::i;:::-;20456:4;20449:11;;;20230:238;;;;:::o;32859:38::-;;;:::o;33464:33::-;;;;;;;;;;;;;:::o;41655:126::-;41721:4;41745:19;:28;41765:7;41745:28;;;;;;;;;;;;;;;;;;;;;;;;;41738:35;;41655:126;;;:::o;33951:28::-;;;;:::o;33544:31::-;;;;;;;;;;;;;:::o;17685:127::-;17759:7;17786:9;:18;17796:7;17786:18;;;;;;;;;;;;;;;;17779:25;;17685:127;;;:::o;9817:103::-;9055:13;:11;:13::i;:::-;9882:30:::1;9909:1;9882:18;:30::i;:::-;9817:103::o:0;49972:555::-;9055:13;:11;:13::i;:::-;50174:3:::1;50151:19;:26;;50129:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50301:4;50289:8;:16;;:33;;;;;50321:1;50309:8;:13;;50289:33;50267:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50427:19;50409:15;:37;;;;50476:8;50457:16;:27;;;;50511:8;50495:13;;:24;;;;;;;;;;;;;;;;;;49972:555:::0;;;:::o;37908:121::-;37960:4;9055:13;:11;:13::i;:::-;37994:5:::1;37977:14;;:22;;;;;;;;;;;;;;;;;;38017:4;38010:11;;37908:121:::0;:::o;39351:167::-;9055:13;:11;:13::i;:::-;39506:4:::1;39464:31;:39;39496:6;39464:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39351:167:::0;;:::o;32996:30::-;;;;;;;;;;;;;:::o;33844:::-;;;;:::o;39722:403::-;9055:13;:11;:13::i;:::-;39890::::1;39872:15;:31;;;;39932:13;39914:15;:31;;;;39968:7;39956:9;:19;;;;40037:9;;40019:15;;40001;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;39986:12;:60;;;;40081:2;40065:12;;:18;;40057:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39722:403:::0;;;:::o;37701:155::-;9055:13;:11;:13::i;:::-;37772:4:::1;37756:13;;:20;;;;;;;;;;;;;;;;;;37801:4;37787:11;;:18;;;;;;;;;;;;;;;;;;37833:15;37816:14;:32;;;;37701:155::o:0;9169:87::-;9215:7;9242:6;;;;;;;;;;;9235:13;;9169:87;:::o;33033:24::-;;;;;;;;;;;;;:::o;33986:31::-;;;;:::o;39614:100::-;9055:13;:11;:13::i;:::-;39699:7:::1;39685:11;;:21;;;;;;;;;;;;;;;;;;39614:100:::0;:::o;16613:104::-;16669:13;16702:7;16695:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16613:104;:::o;40743:304::-;9055:13;:11;:13::i;:::-;40887::::1;40879:21;;:4;:21;;;;40857:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40998:41;41027:4;41033:5;40998:28;:41::i;:::-;40743:304:::0;;:::o;33918:24::-;;;;:::o;33420:35::-;;;;:::o;34176:27::-;;;;:::o;34062:25::-;;;;:::o;20971:436::-;21064:4;21081:13;21097:12;:10;:12::i;:::-;21081:28;;21120:24;21147:25;21157:5;21164:7;21147:9;:25::i;:::-;21120:52;;21211:15;21191:16;:35;;21183:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21304:60;21313:5;21320:7;21348:15;21329:16;:34;21304:8;:60::i;:::-;21395:4;21388:11;;;;20971:436;;;;:::o;33328:29::-;;;;:::o;18018:193::-;18097:4;18114:13;18130:12;:10;:12::i;:::-;18114:28;;18153;18163:5;18170:2;18174:6;18153:9;:28::i;:::-;18199:4;18192:11;;;18018:193;;;;:::o;41251:231::-;9055:13;:11;:13::i;:::-;41411:15:::1;;;;;;;;;;;41368:59;;41391:18;41368:59;;;;;;;;;;;;41456:18;41438:15;;:36;;;;;;;;;;;;;;;;;;41251:231:::0;:::o;34573:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33504:33::-;;;;;;;;;;;;;:::o;40553:182::-;9055:13;:11;:13::i;:::-;40669:8:::1;40638:19;:28;40658:7;40638:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40709:7;40693:34;;;40718:8;40693:34;;;;;;:::i;:::-;;;;;;;;40553:182:::0;;:::o;40133:412::-;9055:13;:11;:13::i;:::-;40303::::1;40284:16;:32;;;;40346:13;40327:16;:32;;;;40383:7;40370:10;:20;;;;40455:10;;40436:16;;40417;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40401:13;:64;;;;40501:2;40484:13;;:19;;40476:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40133:412:::0;;;:::o;39087:256::-;9055:13;:11;:13::i;:::-;39227:4:::1;39219;39214:1;39198:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39197:26;;;;:::i;:::-;39196:35;;;;:::i;:::-;39186:6;:45;;39164:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39328:6;39318;:17;;;;:::i;:::-;39306:9;:29;;;;39087:256:::0;:::o;33762:39::-;;;;;;;;;;;;;:::o;33066:35::-;;;;:::o;38295:501::-;38403:4;9055:13;:11;:13::i;:::-;38482:8:::1;38477:1;38461:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38460:30;;;;:::i;:::-;38447:9;:43;;38425:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;38641:4;38636:1;38620:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38619:26;;;;:::i;:::-;38606:9;:39;;38584:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38757:9;38736:18;:30;;;;38784:4;38777:11;;38295:501:::0;;;:::o;33810:27::-;;;;:::o;18274:151::-;18363:7;18390:11;:18;18402:5;18390:18;;;;;;;;;;;;;;;:27;18409:7;18390:27;;;;;;;;;;;;;;;;18383:34;;18274:151;;;;:::o;33108:33::-;;;;:::o;38090:135::-;38150:4;9055:13;:11;:13::i;:::-;38190:5:::1;38167:20;;:28;;;;;;;;;;;;;;;;;;38213:4;38206:11;;38090:135:::0;:::o;33881:30::-;;;;:::o;10075:201::-;9055:13;:11;:13::i;:::-;10184:1:::1;10164:22;;:8;:22;;;;10156:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10240:28;10259:8;10240:18;:28::i;:::-;10075:201:::0;:::o;34024:31::-;;;;:::o;33148:24::-;;;;:::o;51331:1056::-;51442:4;9055:13;:11;:13::i;:::-;51527:19:::1;;51504:20;;:42;;;;:::i;:::-;51486:15;:60;51464:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51636:4;51625:7;:15;;51617:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51721:15;51698:20;:38;;;;51791:28;51822:4;:14;;;51837:13;51822:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51791:60;;51901:20;51924:44;51962:5;51924:33;51949:7;51924:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51901:67;;52088:1;52073:12;:16;52069:110;;;52106:61;52122:13;52145:6;52154:12;52106:15;:61::i;:::-;52069:110;52254:19;52291:13;52254:51;;52316:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52343:14;;;;;;;;;;52375:4;52368:11;;;;;51331:1056:::0;;;:::o;7720:98::-;7773:7;7800:10;7793:17;;7720:98;:::o;24596:380::-;24749:1;24732:19;;:5;:19;;;;24724:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24830:1;24811:21;;:7;:21;;;;24803:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24914:6;24884:11;:18;24896:5;24884:18;;;;;;;;;;;;;;;:27;24903:7;24884:27;;;;;;;;;;;;;;;:36;;;;24952:7;24936:32;;24945:5;24936:32;;;24961:6;24936:32;;;;;;:::i;:::-;;;;;;;;24596:380;;;:::o;9334:132::-;9409:12;:10;:12::i;:::-;9398:23;;:7;:5;:7::i;:::-;:23;;;9390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9334:132::o;25267:453::-;25402:24;25429:25;25439:5;25446:7;25429:9;:25::i;:::-;25402:52;;25489:17;25469:16;:37;25465:248;;25551:6;25531:16;:26;;25523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25635:51;25644:5;25651:7;25679:6;25660:16;:25;25635:8;:51::i;:::-;25465:248;25391:329;25267:453;;;:::o;41839:5011::-;41987:1;41971:18;;:4;:18;;;;41963:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42064:1;42050:16;;:2;:16;;;;42042:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42133:1;42123:6;:11;42119:93;;;42151:28;42167:4;42173:2;42177:1;42151:15;:28::i;:::-;42194:7;;42119:93;42228:14;;;;;;;;;;;42224:2487;;;42289:7;:5;:7::i;:::-;42281:15;;:4;:15;;;;:49;;;;;42323:7;:5;:7::i;:::-;42317:13;;:2;:13;;;;42281:49;:86;;;;;42365:1;42351:16;;:2;:16;;;;42281:86;:128;;;;;42402:6;42388:21;;:2;:21;;;;42281:128;:158;;;;;42431:8;;;;;;;;;;;42430:9;42281:158;42259:2441;;;42479:13;;;;;;;;;;;42474:223;;42551:19;:25;42571:4;42551:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42580:19;:23;42600:2;42580:23;;;;;;;;;;;;;;;;;;;;;;;;;42551:52;42517:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42474:223;42853:20;;;;;;;;;;;42849:641;;;42934:7;:5;:7::i;:::-;42928:13;;:2;:13;;;;:72;;;;;42984:15;42970:30;;:2;:30;;;;42928:72;:129;;;;;43043:13;43029:28;;:2;:28;;;;42928:129;42898:573;;;43221:12;43146:28;:39;43175:9;43146:39;;;;;;;;;;;;;;;;:87;43108:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43435:12;43393:28;:39;43422:9;43393:39;;;;;;;;;;;;;;;:54;;;;42898:573;42849:641;43564:25;:31;43590:4;43564:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43621:31;:35;43653:2;43621:35;;;;;;;;;;;;;;;;;;;;;;;;;43620:36;43564:92;43538:1147;;;43743:20;;43733:6;:30;;43699:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43951:9;;43934:13;43944:2;43934:9;:13::i;:::-;43925:6;:22;;;;:::i;:::-;:35;;43891:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43538:1147;;;44129:25;:29;44155:2;44129:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44184:31;:37;44216:4;44184:37;;;;;;;;;;;;;;;;;;;;;;;;;44183:38;44129:92;44103:582;;;44308:20;;44298:6;:30;;44264:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44103:582;;;44465:31;:35;44497:2;44465:35;;;;;;;;;;;;;;;;;;;;;;;;;44460:225;;44585:9;;44568:13;44578:2;44568:9;:13::i;:::-;44559:6;:22;;;;:::i;:::-;:35;;44525:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44460:225;44103:582;43538:1147;42259:2441;42224:2487;44723:28;44754:24;44772:4;44754:9;:24::i;:::-;44723:55;;44791:12;44830:18;;44806:20;:42;;44791:57;;44879:7;:35;;;;;44903:11;;;;;;;;;;;44879:35;:61;;;;;44932:8;;;;;;;;;;;44931:9;44879:61;:110;;;;;44958:25;:31;44984:4;44958:31;;;;;;;;;;;;;;;;;;;;;;;;;44957:32;44879:110;:153;;;;;45007:19;:25;45027:4;45007:25;;;;;;;;;;;;;;;;;;;;;;;;;45006:26;44879:153;:194;;;;;45050:19;:23;45070:2;45050:23;;;;;;;;;;;;;;;;;;;;;;;;;45049:24;44879:194;44861:326;;;45111:4;45100:8;;:15;;;;;;;;;;;;;;;;;;45132:10;:8;:10::i;:::-;45170:5;45159:8;;:16;;;;;;;;;;;;;;;;;;44861:326;45218:8;;;;;;;;;;;45217:9;:55;;;;;45243:25;:29;45269:2;45243:29;;;;;;;;;;;;;;;;;;;;;;;;;45217:55;:85;;;;;45289:13;;;;;;;;;;;45217:85;:153;;;;;45355:15;;45338:14;;:32;;;;:::i;:::-;45319:15;:51;;45217:153;:196;;;;;45388:19;:25;45408:4;45388:25;;;;;;;;;;;;;;;;;;;;;;;;;45387:26;45217:196;45199:282;;;45440:29;:27;:29::i;:::-;;45199:282;45493:12;45509:8;;;;;;;;;;;45508:9;45493:24;;45619:19;:25;45639:4;45619:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45648:19;:23;45668:2;45648:23;;;;;;;;;;;;;;;;;;;;;;;;;45619:52;45615:100;;;45698:5;45688:15;;45615:100;45727:12;45832:7;45828:969;;;45884:25;:29;45910:2;45884:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45933:1;45917:13;;:17;45884:50;45880:768;;;45962:34;45992:3;45962:25;45973:13;;45962:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45955:41;;46065:13;;46045:16;;46038:4;:23;;;;:::i;:::-;46037:41;;;;:::i;:::-;46015:18;;:63;;;;;;;:::i;:::-;;;;;;;;46135:13;;46121:10;;46114:4;:17;;;;:::i;:::-;46113:35;;;;:::i;:::-;46097:12;;:51;;;;;;;:::i;:::-;;;;;;;;46217:13;;46197:16;;46190:4;:23;;;;:::i;:::-;46189:41;;;;:::i;:::-;46167:18;;:63;;;;;;;:::i;:::-;;;;;;;;45880:768;;;46292:25;:31;46318:4;46292:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46342:1;46327:12;;:16;46292:51;46288:360;;;46371:33;46400:3;46371:24;46382:12;;46371:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46364:40;;46472:12;;46453:15;;46446:4;:22;;;;:::i;:::-;46445:39;;;;:::i;:::-;46423:18;;:61;;;;;;;:::i;:::-;;;;;;;;46540:12;;46527:9;;46520:4;:16;;;;:::i;:::-;46519:33;;;;:::i;:::-;46503:12;;:49;;;;;;;:::i;:::-;;;;;;;;46620:12;;46601:15;;46594:4;:22;;;;:::i;:::-;46593:39;;;;:::i;:::-;46571:18;;:61;;;;;;;:::i;:::-;;;;;;;;46288:360;45880:768;46675:1;46668:4;:8;46664:91;;;46697:42;46713:4;46727;46734;46697:15;:42::i;:::-;46664:91;46781:4;46771:14;;;;;:::i;:::-;;;45828:969;46809:33;46825:4;46831:2;46835:6;46809:15;:33::i;:::-;41952:4898;;;;41839:5011;;;;:::o;10436:191::-;10510:16;10529:6;;;;;;;;;;;10510:25;;10555:8;10546:6;;:17;;;;;;;;;;;;;;;;;;10610:8;10579:40;;10600:8;10579:40;;;;;;;;;;;;10499:128;10436:191;:::o;41055:188::-;41172:5;41138:25;:31;41164:4;41138:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41229:5;41195:40;;41223:4;41195:40;;;;;;;;;;;;41055:188;;:::o;3614:98::-;3672:7;3703:1;3699;:5;;;;:::i;:::-;3692:12;;3614:98;;;;:::o;4013:::-;4071:7;4102:1;4098;:5;;;;:::i;:::-;4091:12;;4013:98;;;;:::o;21877:671::-;22024:1;22008:18;;:4;:18;;;;22000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22101:1;22087:16;;:2;:16;;;;22079:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22156:38;22177:4;22183:2;22187:6;22156:20;:38::i;:::-;22207:19;22229:9;:15;22239:4;22229:15;;;;;;;;;;;;;;;;22207:37;;22278:6;22263:11;:21;;22255:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22395:6;22381:11;:20;22363:9;:15;22373:4;22363:15;;;;;;;;;;;;;;;:38;;;;22440:6;22423:9;:13;22433:2;22423:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;22479:2;22464:26;;22473:4;22464:26;;;22483:6;22464:26;;;;;;:::i;:::-;;;;;;;;22503:37;22523:4;22529:2;22533:6;22503:19;:37::i;:::-;21989:559;21877:671;;;:::o;47980:1984::-;48019:23;48045:24;48063:4;48045:9;:24::i;:::-;48019:50;;48080:25;48176:12;;48142:18;;48108;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48080:108;;48199:12;48247:1;48228:15;:20;:46;;;;48273:1;48252:17;:22;48228:46;48224:85;;;48291:7;;;;;48224:85;48364:2;48343:18;;:23;;;;:::i;:::-;48325:15;:41;48321:115;;;48422:2;48401:18;;:23;;;;:::i;:::-;48383:41;;48321:115;48497:23;48610:1;48577:17;48542:18;;48524:15;:36;;;;:::i;:::-;48523:71;;;;:::i;:::-;:88;;;;:::i;:::-;48497:114;;48622:26;48651:36;48671:15;48651;:19;;:36;;;;:::i;:::-;48622:65;;48700:25;48728:21;48700:49;;48762:36;48779:18;48762:16;:36::i;:::-;48811:18;48832:44;48858:17;48832:21;:25;;:44;;;;:::i;:::-;48811:65;;48889:23;48915:81;48968:17;48915:34;48930:18;;48915:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48889:107;;49007:17;49027:51;49060:17;49027:28;49042:12;;49027:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49007:71;;49091:23;49148:9;49130:15;49117:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49091:66;;49191:1;49170:18;:22;;;;49224:1;49203:18;:22;;;;49251:1;49236:12;:16;;;;49265:21;49303:1;49289:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49265:40;;49326:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49316:4;49321:1;49316:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;49377:42;49359:4;49364:1;49359:7;;;;;;;;:::i;:::-;;;;;;;:61;;;;;;;;;;;49431:15;:66;;;49505:9;49516:1;49519:4;49525:9;;;;;;;;;;;49536:15;49431:121;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49587:1;49569:15;:19;:42;;;;;49610:1;49592:15;:19;49569:42;49565:278;;;49628:46;49641:15;49658;49628:12;:46::i;:::-;49694:137;49727:18;49764:15;49798:18;;49694:137;;;;;;;;:::i;:::-;;;;;;;;49565:278;49877:15;;;;;;;;;;;49869:29;;49920:21;49869:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49855:101;;;;;48008:1956;;;;;;;;;;;47980:1984;:::o;50535:788::-;50592:4;50626:15;50609:14;:32;;;;50696:28;50727:4;:14;;;50742:13;50727:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50696:60;;50806:20;50829:77;50890:5;50829:42;50854:16;;50829:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50806:100;;51026:1;51011:12;:16;51007:110;;;51044:61;51060:13;51083:6;51092:12;51044:15;:61::i;:::-;51007:110;51192:19;51229:13;51192:51;;51254:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51281:12;;;;;;;;;;51311:4;51304:11;;;;;50535:788;:::o;26320:125::-;;;;:::o;27049:124::-;;;;:::o;3257:98::-;3315:7;3346:1;3342;:5;;;;:::i;:::-;3335:12;;3257:98;;;;:::o;46858:589::-;46984:21;47022:1;47008:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46984:40;;47053:4;47035;47040:1;47035:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47079:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47069:4;47074:1;47069:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47114:62;47131:4;47146:15;47164:11;47114:8;:62::i;:::-;47215:15;:66;;;47296:11;47322:1;47366:4;47393;47413:15;47215:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46913:534;46858:589;:::o;47455:517::-;47603:62;47620:4;47635:15;47653:11;47603:8;:62::i;:::-;47708:15;:31;;;47747:9;47780:4;47800:11;47826:1;47869;32950:6;47938:15;47708:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47455:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:180::-;10249:77;10246:1;10239:88;10346:4;10343:1;10336:15;10370:4;10367:1;10360:15;10387:348;10427:7;10450:20;10468:1;10450:20;:::i;:::-;10445:25;;10484:20;10502:1;10484:20;:::i;:::-;10479:25;;10672:1;10604:66;10600:74;10597:1;10594:81;10589:1;10582:9;10575:17;10571:105;10568:131;;;10679:18;;:::i;:::-;10568:131;10727:1;10724;10720:9;10709:20;;10387:348;;;;:::o;10741:180::-;10789:77;10786:1;10779:88;10886:4;10883:1;10876:15;10910:4;10907:1;10900:15;10927:185;10967:1;10984:20;11002:1;10984:20;:::i;:::-;10979:25;;11018:20;11036:1;11018:20;:::i;:::-;11013:25;;11057:1;11047:35;;11062:18;;:::i;:::-;11047:35;11104:1;11101;11097:9;11092:14;;10927:185;;;;:::o;11118:234::-;11258:34;11254:1;11246:6;11242:14;11235:58;11327:17;11322:2;11314:6;11310:15;11303:42;11118:234;:::o;11358:366::-;11500:3;11521:67;11585:2;11580:3;11521:67;:::i;:::-;11514:74;;11597:93;11686:3;11597:93;:::i;:::-;11715:2;11710:3;11706:12;11699:19;;11358:366;;;:::o;11730:419::-;11896:4;11934:2;11923:9;11919:18;11911:26;;11983:9;11977:4;11973:20;11969:1;11958:9;11954:17;11947:47;12011:131;12137:4;12011:131;:::i;:::-;12003:139;;11730:419;;;:::o;12155:305::-;12195:3;12214:20;12232:1;12214:20;:::i;:::-;12209:25;;12248:20;12266:1;12248:20;:::i;:::-;12243:25;;12402:1;12334:66;12330:74;12327:1;12324:81;12321:107;;;12408:18;;:::i;:::-;12321:107;12452:1;12449;12445:9;12438:16;;12155:305;;;;:::o;12466:238::-;12606:34;12602:1;12594:6;12590:14;12583:58;12675:21;12670:2;12662:6;12658:15;12651:46;12466:238;:::o;12710:366::-;12852:3;12873:67;12937:2;12932:3;12873:67;:::i;:::-;12866:74;;12949:93;13038:3;12949:93;:::i;:::-;13067:2;13062:3;13058:12;13051:19;;12710:366;;;:::o;13082:419::-;13248:4;13286:2;13275:9;13271:18;13263:26;;13335:9;13329:4;13325:20;13321:1;13310:9;13306:17;13299:47;13363:131;13489:4;13363:131;:::i;:::-;13355:139;;13082:419;;;:::o;13507:235::-;13647:34;13643:1;13635:6;13631:14;13624:58;13716:18;13711:2;13703:6;13699:15;13692:43;13507:235;:::o;13748:366::-;13890:3;13911:67;13975:2;13970:3;13911:67;:::i;:::-;13904:74;;13987:93;14076:3;13987:93;:::i;:::-;14105:2;14100:3;14096:12;14089:19;;13748:366;;;:::o;14120:419::-;14286:4;14324:2;14313:9;14309:18;14301:26;;14373:9;14367:4;14363:20;14359:1;14348:9;14344:17;14337:47;14401:131;14527:4;14401:131;:::i;:::-;14393:139;;14120:419;;;:::o;14545:179::-;14685:31;14681:1;14673:6;14669:14;14662:55;14545:179;:::o;14730:366::-;14872:3;14893:67;14957:2;14952:3;14893:67;:::i;:::-;14886:74;;14969:93;15058:3;14969:93;:::i;:::-;15087:2;15082:3;15078:12;15071:19;;14730:366;;;:::o;15102:419::-;15268:4;15306:2;15295:9;15291:18;15283:26;;15355:9;15349:4;15345:20;15341:1;15330:9;15326:17;15319:47;15383:131;15509:4;15383:131;:::i;:::-;15375:139;;15102:419;;;:::o;15527:244::-;15667:34;15663:1;15655:6;15651:14;15644:58;15736:27;15731:2;15723:6;15719:15;15712:52;15527:244;:::o;15777:366::-;15919:3;15940:67;16004:2;15999:3;15940:67;:::i;:::-;15933:74;;16016:93;16105:3;16016:93;:::i;:::-;16134:2;16129:3;16125:12;16118:19;;15777:366;;;:::o;16149:419::-;16315:4;16353:2;16342:9;16338:18;16330:26;;16402:9;16396:4;16392:20;16388:1;16377:9;16373:17;16366:47;16430:131;16556:4;16430:131;:::i;:::-;16422:139;;16149:419;;;:::o;16574:224::-;16714:34;16710:1;16702:6;16698:14;16691:58;16783:7;16778:2;16770:6;16766:15;16759:32;16574:224;:::o;16804:366::-;16946:3;16967:67;17031:2;17026:3;16967:67;:::i;:::-;16960:74;;17043:93;17132:3;17043:93;:::i;:::-;17161:2;17156:3;17152:12;17145:19;;16804:366;;;:::o;17176:419::-;17342:4;17380:2;17369:9;17365:18;17357:26;;17429:9;17423:4;17419:20;17415:1;17404:9;17400:17;17393:47;17457:131;17583:4;17457:131;:::i;:::-;17449:139;;17176:419;;;:::o;17601:223::-;17741:34;17737:1;17729:6;17725:14;17718:58;17810:6;17805:2;17797:6;17793:15;17786:31;17601:223;:::o;17830:366::-;17972:3;17993:67;18057:2;18052:3;17993:67;:::i;:::-;17986:74;;18069:93;18158:3;18069:93;:::i;:::-;18187:2;18182:3;18178:12;18171:19;;17830:366;;;:::o;18202:419::-;18368:4;18406:2;18395:9;18391:18;18383:26;;18455:9;18449:4;18445:20;18441:1;18430:9;18426:17;18419:47;18483:131;18609:4;18483:131;:::i;:::-;18475:139;;18202:419;;;:::o;18627:242::-;18767:34;18763:1;18755:6;18751:14;18744:58;18836:25;18831:2;18823:6;18819:15;18812:50;18627:242;:::o;18875:366::-;19017:3;19038:67;19102:2;19097:3;19038:67;:::i;:::-;19031:74;;19114:93;19203:3;19114:93;:::i;:::-;19232:2;19227:3;19223:12;19216:19;;18875:366;;;:::o;19247:419::-;19413:4;19451:2;19440:9;19436:18;19428:26;;19500:9;19494:4;19490:20;19486:1;19475:9;19471:17;19464:47;19528:131;19654:4;19528:131;:::i;:::-;19520:139;;19247:419;;;:::o;19672:239::-;19812:34;19808:1;19800:6;19796:14;19789:58;19881:22;19876:2;19868:6;19864:15;19857:47;19672:239;:::o;19917:366::-;20059:3;20080:67;20144:2;20139:3;20080:67;:::i;:::-;20073:74;;20156:93;20245:3;20156:93;:::i;:::-;20274:2;20269:3;20265:12;20258:19;;19917:366;;;:::o;20289:419::-;20455:4;20493:2;20482:9;20478:18;20470:26;;20542:9;20536:4;20532:20;20528:1;20517:9;20513:17;20506:47;20570:131;20696:4;20570:131;:::i;:::-;20562:139;;20289:419;;;:::o;20714:225::-;20854:34;20850:1;20842:6;20838:14;20831:58;20923:8;20918:2;20910:6;20906:15;20899:33;20714:225;:::o;20945:366::-;21087:3;21108:67;21172:2;21167:3;21108:67;:::i;:::-;21101:74;;21184:93;21273:3;21184:93;:::i;:::-;21302:2;21297:3;21293:12;21286:19;;20945:366;;;:::o;21317:419::-;21483:4;21521:2;21510:9;21506:18;21498:26;;21570:9;21564:4;21560:20;21556:1;21545:9;21541:17;21534:47;21598:131;21724:4;21598:131;:::i;:::-;21590:139;;21317:419;;;:::o;21742:182::-;21882:34;21878:1;21870:6;21866:14;21859:58;21742:182;:::o;21930:366::-;22072:3;22093:67;22157:2;22152:3;22093:67;:::i;:::-;22086:74;;22169:93;22258:3;22169:93;:::i;:::-;22287:2;22282:3;22278:12;22271:19;;21930:366;;;:::o;22302:419::-;22468:4;22506:2;22495:9;22491:18;22483:26;;22555:9;22549:4;22545:20;22541:1;22530:9;22526:17;22519:47;22583:131;22709:4;22583:131;:::i;:::-;22575:139;;22302:419;;;:::o;22727:229::-;22867:34;22863:1;22855:6;22851:14;22844:58;22936:12;22931:2;22923:6;22919:15;22912:37;22727:229;:::o;22962:366::-;23104:3;23125:67;23189:2;23184:3;23125:67;:::i;:::-;23118:74;;23201:93;23290:3;23201:93;:::i;:::-;23319:2;23314:3;23310:12;23303:19;;22962:366;;;:::o;23334:419::-;23500:4;23538:2;23527:9;23523:18;23515:26;;23587:9;23581:4;23577:20;23573:1;23562:9;23558:17;23551:47;23615:131;23741:4;23615:131;:::i;:::-;23607:139;;23334:419;;;:::o;23759:143::-;23816:5;23847:6;23841:13;23832:22;;23863:33;23890:5;23863:33;:::i;:::-;23759:143;;;;:::o;23908:351::-;23978:6;24027:2;24015:9;24006:7;24002:23;23998:32;23995:119;;;24033:79;;:::i;:::-;23995:119;24153:1;24178:64;24234:7;24225:6;24214:9;24210:22;24178:64;:::i;:::-;24168:74;;24124:128;23908:351;;;;:::o;24265:223::-;24405:34;24401:1;24393:6;24389:14;24382:58;24474:6;24469:2;24461:6;24457:15;24450:31;24265:223;:::o;24494:366::-;24636:3;24657:67;24721:2;24716:3;24657:67;:::i;:::-;24650:74;;24733:93;24822:3;24733:93;:::i;:::-;24851:2;24846:3;24842:12;24835:19;;24494:366;;;:::o;24866:419::-;25032:4;25070:2;25059:9;25055:18;25047:26;;25119:9;25113:4;25109:20;25105:1;25094:9;25090:17;25083:47;25147:131;25273:4;25147:131;:::i;:::-;25139:139;;24866:419;;;:::o;25291:221::-;25431:34;25427:1;25419:6;25415:14;25408:58;25500:4;25495:2;25487:6;25483:15;25476:29;25291:221;:::o;25518:366::-;25660:3;25681:67;25745:2;25740:3;25681:67;:::i;:::-;25674:74;;25757:93;25846:3;25757:93;:::i;:::-;25875:2;25870:3;25866:12;25859:19;;25518:366;;;:::o;25890:419::-;26056:4;26094:2;26083:9;26079:18;26071:26;;26143:9;26137:4;26133:20;26129:1;26118:9;26114:17;26107:47;26171:131;26297:4;26171:131;:::i;:::-;26163:139;;25890:419;;;:::o;26315:182::-;26455:34;26451:1;26443:6;26439:14;26432:58;26315:182;:::o;26503:366::-;26645:3;26666:67;26730:2;26725:3;26666:67;:::i;:::-;26659:74;;26742:93;26831:3;26742:93;:::i;:::-;26860:2;26855:3;26851:12;26844:19;;26503:366;;;:::o;26875:419::-;27041:4;27079:2;27068:9;27064:18;27056:26;;27128:9;27122:4;27118:20;27114:1;27103:9;27099:17;27092:47;27156:131;27282:4;27156:131;:::i;:::-;27148:139;;26875:419;;;:::o;27300:179::-;27440:31;27436:1;27428:6;27424:14;27417:55;27300:179;:::o;27485:366::-;27627:3;27648:67;27712:2;27707:3;27648:67;:::i;:::-;27641:74;;27724:93;27813:3;27724:93;:::i;:::-;27842:2;27837:3;27833:12;27826:19;;27485:366;;;:::o;27857:419::-;28023:4;28061:2;28050:9;28046:18;28038:26;;28110:9;28104:4;28100:20;28096:1;28085:9;28081:17;28074:47;28138:131;28264:4;28138:131;:::i;:::-;28130:139;;27857:419;;;:::o;28282:224::-;28422:34;28418:1;28410:6;28406:14;28399:58;28491:7;28486:2;28478:6;28474:15;28467:32;28282:224;:::o;28512:366::-;28654:3;28675:67;28739:2;28734:3;28675:67;:::i;:::-;28668:74;;28751:93;28840:3;28751:93;:::i;:::-;28869:2;28864:3;28860:12;28853:19;;28512:366;;;:::o;28884:419::-;29050:4;29088:2;29077:9;29073:18;29065:26;;29137:9;29131:4;29127:20;29123:1;29112:9;29108:17;29101:47;29165:131;29291:4;29165:131;:::i;:::-;29157:139;;28884:419;;;:::o;29309:222::-;29449:34;29445:1;29437:6;29433:14;29426:58;29518:5;29513:2;29505:6;29501:15;29494:30;29309:222;:::o;29537:366::-;29679:3;29700:67;29764:2;29759:3;29700:67;:::i;:::-;29693:74;;29776:93;29865:3;29776:93;:::i;:::-;29894:2;29889:3;29885:12;29878:19;;29537:366;;;:::o;29909:419::-;30075:4;30113:2;30102:9;30098:18;30090:26;;30162:9;30156:4;30152:20;30148:1;30137:9;30133:17;30126:47;30190:131;30316:4;30190:131;:::i;:::-;30182:139;;29909:419;;;:::o;30334:172::-;30474:24;30470:1;30462:6;30458:14;30451:48;30334:172;:::o;30512:366::-;30654:3;30675:67;30739:2;30734:3;30675:67;:::i;:::-;30668:74;;30751:93;30840:3;30751:93;:::i;:::-;30869:2;30864:3;30860:12;30853:19;;30512:366;;;:::o;30884:419::-;31050:4;31088:2;31077:9;31073:18;31065:26;;31137:9;31131:4;31127:20;31123:1;31112:9;31108:17;31101:47;31165:131;31291:4;31165:131;:::i;:::-;31157:139;;30884:419;;;:::o;31309:297::-;31449:34;31445:1;31437:6;31433:14;31426:58;31518:34;31513:2;31505:6;31501:15;31494:59;31587:11;31582:2;31574:6;31570:15;31563:36;31309:297;:::o;31612:366::-;31754:3;31775:67;31839:2;31834:3;31775:67;:::i;:::-;31768:74;;31851:93;31940:3;31851:93;:::i;:::-;31969:2;31964:3;31960:12;31953:19;;31612:366;;;:::o;31984:419::-;32150:4;32188:2;32177:9;32173:18;32165:26;;32237:9;32231:4;32227:20;32223:1;32212:9;32208:17;32201:47;32265:131;32391:4;32265:131;:::i;:::-;32257:139;;31984:419;;;:::o;32409:240::-;32549:34;32545:1;32537:6;32533:14;32526:58;32618:23;32613:2;32605:6;32601:15;32594:48;32409:240;:::o;32655:366::-;32797:3;32818:67;32882:2;32877:3;32818:67;:::i;:::-;32811:74;;32894:93;32983:3;32894:93;:::i;:::-;33012:2;33007:3;33003:12;32996:19;;32655:366;;;:::o;33027:419::-;33193:4;33231:2;33220:9;33216:18;33208:26;;33280:9;33274:4;33270:20;33266:1;33255:9;33251:17;33244:47;33308:131;33434:4;33308:131;:::i;:::-;33300:139;;33027:419;;;:::o;33452:169::-;33592:21;33588:1;33580:6;33576:14;33569:45;33452:169;:::o;33627:366::-;33769:3;33790:67;33854:2;33849:3;33790:67;:::i;:::-;33783:74;;33866:93;33955:3;33866:93;:::i;:::-;33984:2;33979:3;33975:12;33968:19;;33627:366;;;:::o;33999:419::-;34165:4;34203:2;34192:9;34188:18;34180:26;;34252:9;34246:4;34242:20;34238:1;34227:9;34223:17;34216:47;34280:131;34406:4;34280:131;:::i;:::-;34272:139;;33999:419;;;:::o;34424:241::-;34564:34;34560:1;34552:6;34548:14;34541:58;34633:24;34628:2;34620:6;34616:15;34609:49;34424:241;:::o;34671:366::-;34813:3;34834:67;34898:2;34893:3;34834:67;:::i;:::-;34827:74;;34910:93;34999:3;34910:93;:::i;:::-;35028:2;35023:3;35019:12;35012:19;;34671:366;;;:::o;35043:419::-;35209:4;35247:2;35236:9;35232:18;35224:26;;35296:9;35290:4;35286:20;35282:1;35271:9;35267:17;35260:47;35324:131;35450:4;35324:131;:::i;:::-;35316:139;;35043:419;;;:::o;35468:191::-;35508:4;35528:20;35546:1;35528:20;:::i;:::-;35523:25;;35562:20;35580:1;35562:20;:::i;:::-;35557:25;;35601:1;35598;35595:8;35592:34;;;35606:18;;:::i;:::-;35592:34;35651:1;35648;35644:9;35636:17;;35468:191;;;;:::o;35665:225::-;35805:34;35801:1;35793:6;35789:14;35782:58;35874:8;35869:2;35861:6;35857:15;35850:33;35665:225;:::o;35896:366::-;36038:3;36059:67;36123:2;36118:3;36059:67;:::i;:::-;36052:74;;36135:93;36224:3;36135:93;:::i;:::-;36253:2;36248:3;36244:12;36237:19;;35896:366;;;:::o;36268:419::-;36434:4;36472:2;36461:9;36457:18;36449:26;;36521:9;36515:4;36511:20;36507:1;36496:9;36492:17;36485:47;36549:131;36675:4;36549:131;:::i;:::-;36541:139;;36268:419;;;:::o;36693:180::-;36741:77;36738:1;36731:88;36838:4;36835:1;36828:15;36862:4;36859:1;36852:15;36879:143;36936:5;36967:6;36961:13;36952:22;;36983:33;37010:5;36983:33;:::i;:::-;36879:143;;;;:::o;37028:351::-;37098:6;37147:2;37135:9;37126:7;37122:23;37118:32;37115:119;;;37153:79;;:::i;:::-;37115:119;37273:1;37298:64;37354:7;37345:6;37334:9;37330:22;37298:64;:::i;:::-;37288:74;;37244:128;37028:351;;;;:::o;37385:180::-;37433:77;37430:1;37423:88;37530:4;37527:1;37520:15;37554:4;37551:1;37544:15;37571:85;37616:7;37645:5;37634:16;;37571:85;;;:::o;37662:158::-;37720:9;37753:61;37771:42;37780:32;37806:5;37780:32;:::i;:::-;37771:42;:::i;:::-;37753:61;:::i;:::-;37740:74;;37662:158;;;:::o;37826:147::-;37921:45;37960:5;37921:45;:::i;:::-;37916:3;37909:58;37826:147;;:::o;37979:114::-;38046:6;38080:5;38074:12;38064:22;;37979:114;;;:::o;38099:184::-;38198:11;38232:6;38227:3;38220:19;38272:4;38267:3;38263:14;38248:29;;38099:184;;;;:::o;38289:132::-;38356:4;38379:3;38371:11;;38409:4;38404:3;38400:14;38392:22;;38289:132;;;:::o;38427:108::-;38504:24;38522:5;38504:24;:::i;:::-;38499:3;38492:37;38427:108;;:::o;38541:179::-;38610:10;38631:46;38673:3;38665:6;38631:46;:::i;:::-;38709:4;38704:3;38700:14;38686:28;;38541:179;;;;:::o;38726:113::-;38796:4;38828;38823:3;38819:14;38811:22;;38726:113;;;:::o;38875:732::-;38994:3;39023:54;39071:5;39023:54;:::i;:::-;39093:86;39172:6;39167:3;39093:86;:::i;:::-;39086:93;;39203:56;39253:5;39203:56;:::i;:::-;39282:7;39313:1;39298:284;39323:6;39320:1;39317:13;39298:284;;;39399:6;39393:13;39426:63;39485:3;39470:13;39426:63;:::i;:::-;39419:70;;39512:60;39565:6;39512:60;:::i;:::-;39502:70;;39358:224;39345:1;39342;39338:9;39333:14;;39298:284;;;39302:14;39598:3;39591:10;;38999:608;;;38875:732;;;;:::o;39613:720::-;39848:4;39886:3;39875:9;39871:19;39863:27;;39900:79;39976:1;39965:9;39961:17;39952:6;39900:79;:::i;:::-;40026:9;40020:4;40016:20;40011:2;40000:9;39996:18;39989:48;40054:108;40157:4;40148:6;40054:108;:::i;:::-;40046:116;;40172:72;40240:2;40229:9;40225:18;40216:6;40172:72;:::i;:::-;40254;40322:2;40311:9;40307:18;40298:6;40254:72;:::i;:::-;39613:720;;;;;;;:::o;40339:442::-;40488:4;40526:2;40515:9;40511:18;40503:26;;40539:71;40607:1;40596:9;40592:17;40583:6;40539:71;:::i;:::-;40620:72;40688:2;40677:9;40673:18;40664:6;40620:72;:::i;:::-;40702;40770:2;40759:9;40755:18;40746:6;40702:72;:::i;:::-;40339:442;;;;;;:::o;40787:147::-;40888:11;40925:3;40910:18;;40787:147;;;;:::o;40940:114::-;;:::o;41060:398::-;41219:3;41240:83;41321:1;41316:3;41240:83;:::i;:::-;41233:90;;41332:93;41421:3;41332:93;:::i;:::-;41450:1;41445:3;41441:11;41434:18;;41060:398;;;:::o;41464:379::-;41648:3;41670:147;41813:3;41670:147;:::i;:::-;41663:154;;41834:3;41827:10;;41464:379;;;:::o;41849:831::-;42112:4;42150:3;42139:9;42135:19;42127:27;;42164:71;42232:1;42221:9;42217:17;42208:6;42164:71;:::i;:::-;42245:80;42321:2;42310:9;42306:18;42297:6;42245:80;:::i;:::-;42372:9;42366:4;42362:20;42357:2;42346:9;42342:18;42335:48;42400:108;42503:4;42494:6;42400:108;:::i;:::-;42392:116;;42518:72;42586:2;42575:9;42571:18;42562:6;42518:72;:::i;:::-;42600:73;42668:3;42657:9;42653:19;42644:6;42600:73;:::i;:::-;41849:831;;;;;;;;:::o;42686:807::-;42935:4;42973:3;42962:9;42958:19;42950:27;;42987:71;43055:1;43044:9;43040:17;43031:6;42987:71;:::i;:::-;43068:72;43136:2;43125:9;43121:18;43112:6;43068:72;:::i;:::-;43150:80;43226:2;43215:9;43211:18;43202:6;43150:80;:::i;:::-;43240;43316:2;43305:9;43301:18;43292:6;43240:80;:::i;:::-;43330:73;43398:3;43387:9;43383:19;43374:6;43330:73;:::i;:::-;43413;43481:3;43470:9;43466:19;43457:6;43413:73;:::i;:::-;42686:807;;;;;;;;;:::o;43499:663::-;43587:6;43595;43603;43652:2;43640:9;43631:7;43627:23;43623:32;43620:119;;;43658:79;;:::i;:::-;43620:119;43778:1;43803:64;43859:7;43850:6;43839:9;43835:22;43803:64;:::i;:::-;43793:74;;43749:128;43916:2;43942:64;43998:7;43989:6;43978:9;43974:22;43942:64;:::i;:::-;43932:74;;43887:129;44055:2;44081:64;44137:7;44128:6;44117:9;44113:22;44081:64;:::i;:::-;44071:74;;44026:129;43499:663;;;;;:::o

Swarm Source

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