ETH Price: $2,908.49 (-4.02%)
Gas: 2 Gwei

Token

ARE YOU WOKE (WOKE)
 

Overview

Max Total Supply

1,000,000 WOKE

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2.94000599940071424 WOKE

Value
$0.00
0xf25bd51a78a5e8c603fe7af333377a9bc46e1ecd
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
AreYouWoke

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 2023-01-19
*/

/*

ARE YOU WOKE (WOKE?)

Telegram : https://t.me/AreYouWoke
          Twitter : https://twitter.com/AreYouWokeERC
                        Website : https://AreYouWoke.net

*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;
////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)
/* pragma solidity ^0.8.0; */
/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

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

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

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

    bool private swapping;

	address public charityWallet;
    address public marketingWallet;
    address public devWallet;

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

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

    // 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 buyCharityFee;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

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

	uint256 public tokensForCharity;
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
    uint256 public maxSellingFees = 98;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("ARE YOU WOKE", "WOKE") {
        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 _buyCharityFee = 0;
        uint256 _buyMarketingFee = 1;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

		uint256 _sellCharityFee = 0;
        uint256 _sellMarketingFee = 1; 
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1000000 * 1e18;       

        maxTransactionAmount = 30000 * 1e18; // 3% from total supply maxTransactionAmountTxn
        maxWallet = 40000 * 1e18; // 4% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 30) / 10000; // 0.2% swap wallet

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

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

		charityWallet = address(0x54aa7c5505277c99f0CEd6E0ab3f1793851107E4); // set as charity wallet
        marketingWallet = address(0x54aa7c5505277c99f0CEd6E0ab3f1793851107E4); // set as marketing wallet
        devWallet = address(0x54aa7c5505277c99f0CEd6E0ab3f1793851107E4); // set as dev wallet

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

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

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

    receive() external payable {}

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

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }
	
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function updateBuyFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max BuyFee 10%");
		buyCharityFee = _charityFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
     }

    function updateSellFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) public {
		require((_marketingFee) >= maxSellingFees, "Value Cannot go higher than Max Sell Fee");
		sellCharityFee = _charityFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

    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 _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
				tokensForCharity += (fees * sellCharityFee) / sellTotalFees;
                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);
				tokensForCharity += (fees * buyCharityFee) / buyTotalFees;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

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

        uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev;

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

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


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

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

}

Contract Security Audit

Contract ABI

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

60c06040526001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055506062601d553480156200008257600080fd5b506040518060400160405280600c81526020017f41524520594f5520574f4b4500000000000000000000000000000000000000008152506040518060400160405280600481526020017f574f4b450000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010792919062000b67565b5080600490805190602001906200012092919062000b67565b50505062000143620001376200062760201b60201c565b6200062f60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016f816001620006f560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000215919062000c81565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a3919062000c81565b6040518363ffffffff1660e01b8152600401620002c292919062000cc4565b6020604051808303816000875af1158015620002e2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000308919062000c81565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200035060a0516001620006f560201b60201c565b6200036560a0516001620007df60201b60201c565b6000806001905060008060008060019050600080600069d3c21bcecceda1000000905069065a4da25d3016c00000600981905550690878678326eac9000000600b81905550612710601e82620003bc919062000d2a565b620003c8919062000dba565b600a819055508860108190555087601181905550866012819055508560138190555060135460125460115460105462000402919062000df2565b6200040e919062000df2565b6200041a919062000df2565b600f819055508460158190555083601681905550826017819055508160188190555060185460175460165460155462000454919062000df2565b62000460919062000df2565b6200046c919062000df2565b6014819055507354aa7c5505277c99f0ced6e0ab3f1793851107e4600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507354aa7c5505277c99f0ced6e0ab3f1793851107e4600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507354aa7c5505277c99f0ced6e0ab3f1793851107e4600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000593620005856200088060201b60201c565b6001620008aa60201b60201c565b620005a6306001620008aa60201b60201c565b620005bb61dead6001620008aa60201b60201c565b620005dd620005cf6200088060201b60201c565b6001620006f560201b60201c565b620005f0306001620006f560201b60201c565b6200060561dead6001620006f560201b60201c565b620006173382620009e460201b60201c565b5050505050505050505062001011565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007056200062760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200072b6200088060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000784576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200077b9062000eb0565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008ba6200062760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008e06200088060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009309062000eb0565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009d8919062000eef565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4e9062000f5c565b60405180910390fd5b62000a6b6000838362000b5d60201b60201c565b806002600082825462000a7f919062000df2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ad6919062000df2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b3d919062000f8f565b60405180910390a362000b596000838362000b6260201b60201c565b5050565b505050565b505050565b82805462000b759062000fdb565b90600052602060002090601f01602090048101928262000b99576000855562000be5565b82601f1062000bb457805160ff191683800117855562000be5565b8280016001018555821562000be5579182015b8281111562000be457825182559160200191906001019062000bc7565b5b50905062000bf4919062000bf8565b5090565b5b8082111562000c1357600081600090555060010162000bf9565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c498262000c1c565b9050919050565b62000c5b8162000c3c565b811462000c6757600080fd5b50565b60008151905062000c7b8162000c50565b92915050565b60006020828403121562000c9a5762000c9962000c17565b5b600062000caa8482850162000c6a565b91505092915050565b62000cbe8162000c3c565b82525050565b600060408201905062000cdb600083018562000cb3565b62000cea602083018462000cb3565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d378262000cf1565b915062000d448362000cf1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d805762000d7f62000cfb565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000dc78262000cf1565b915062000dd48362000cf1565b92508262000de75762000de662000d8b565b5b828204905092915050565b600062000dff8262000cf1565b915062000e0c8362000cf1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e445762000e4362000cfb565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e9860208362000e4f565b915062000ea58262000e60565b602082019050919050565b6000602082019050818103600083015262000ecb8162000e89565b9050919050565b60008115159050919050565b62000ee98162000ed2565b82525050565b600060208201905062000f06600083018462000ede565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f44601f8362000e4f565b915062000f518262000f0c565b602082019050919050565b6000602082019050818103600083015262000f778162000f35565b9050919050565b62000f898162000cf1565b82525050565b600060208201905062000fa6600083018462000f7e565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ff457607f821691505b602082108114156200100b576200100a62000fac565b5b50919050565b60805160a0516148246200106f6000396000818161103d0152818161153e01526120c9015260008181610d1101528181612071015281816132a501528181613386015281816133ad01528181613449015261347001526148246000f3fe6080604052600436106103035760003560e01c80638a8c523c11610190578063bbc0c742116100dc578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610b8f578063f2fde38b14610bba578063f637434214610be3578063f8b45b0514610c0e5761030a565b8063e2f4560514610b10578063e7ad9fcd14610b3b578063e884f26014610b645761030a565b8063bbc0c742146109fe578063c024666814610a29578063c876d0b914610a52578063c8c8ebe414610a7d578063d85ba06314610aa8578063dd62ed3e14610ad35761030a565b80639c3b4fdc11610149578063a1dc92bc11610123578063a1dc92bc1461091c578063a457c2d714610947578063a9059cbb14610984578063b62496f5146109c15761030a565b80639c3b4fdc1461089b5780639fccce32146108c6578063a0d82dc5146108f15761030a565b80638a8c523c146107af5780638da5cb5b146107c65780638ea5220f146107f1578063921369131461081c57806395d89b41146108475780639a7a23d6146108725761030a565b8063395093511161024f57806370a08231116102085780637571336a116101e25780637571336a1461070557806375f0a8741461072e5780637b208769146107595780637bce5a04146107845761030a565b806370a0823114610686578063715018a6146106c3578063751039fc146106da5761030a565b8063395093511461057257806344249f04146105af57806349bd5a5e146105da5780634a62bb65146106055780636a486a8e146106305780636ddd17131461065b5761030a565b80631a8145bb116102bc57806323b872dd1161029657806323b872dd146104b657806327c8f835146104f35780632e6ed7ef1461051e578063313ce567146105475761030a565b80631a8145bb146104355780631d3369ee146104605780631f3fed8f1461048b5761030a565b806306fdde031461030f578063095ea7b31461033a5780630d7f14411461037757806310d5de53146103a25780631694505e146103df57806318160ddd1461040a5761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c39565b60405161033191906135d8565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c9190613693565b610ccb565b60405161036e91906136ee565b60405180910390f35b34801561038357600080fd5b5061038c610ce9565b6040516103999190613718565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190613733565b610cef565b6040516103d691906136ee565b60405180910390f35b3480156103eb57600080fd5b506103f4610d0f565b60405161040191906137bf565b60405180910390f35b34801561041657600080fd5b5061041f610d33565b60405161042c9190613718565b60405180910390f35b34801561044157600080fd5b5061044a610d3d565b6040516104579190613718565b60405180910390f35b34801561046c57600080fd5b50610475610d43565b6040516104829190613718565b60405180910390f35b34801561049757600080fd5b506104a0610d49565b6040516104ad9190613718565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d891906137da565b610d4f565b6040516104ea91906136ee565b60405180910390f35b3480156104ff57600080fd5b50610508610e47565b604051610515919061383c565b60405180910390f35b34801561052a57600080fd5b5061054560048036038101906105409190613857565b610e4d565b005b34801561055357600080fd5b5061055c610f80565b60405161056991906138da565b60405180910390f35b34801561057e57600080fd5b5061059960048036038101906105949190613693565b610f89565b6040516105a691906136ee565b60405180910390f35b3480156105bb57600080fd5b506105c4611035565b6040516105d19190613718565b60405180910390f35b3480156105e657600080fd5b506105ef61103b565b6040516105fc919061383c565b60405180910390f35b34801561061157600080fd5b5061061a61105f565b60405161062791906136ee565b60405180910390f35b34801561063c57600080fd5b50610645611072565b6040516106529190613718565b60405180910390f35b34801561066757600080fd5b50610670611078565b60405161067d91906136ee565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a89190613733565b61108b565b6040516106ba9190613718565b60405180910390f35b3480156106cf57600080fd5b506106d86110d3565b005b3480156106e657600080fd5b506106ef61115b565b6040516106fc91906136ee565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190613921565b6111fb565b005b34801561073a57600080fd5b506107436112d2565b604051610750919061383c565b60405180910390f35b34801561076557600080fd5b5061076e6112f8565b60405161077b919061383c565b60405180910390f35b34801561079057600080fd5b5061079961131e565b6040516107a69190613718565b60405180910390f35b3480156107bb57600080fd5b506107c4611324565b005b3480156107d257600080fd5b506107db6113d8565b6040516107e8919061383c565b60405180910390f35b3480156107fd57600080fd5b50610806611402565b604051610813919061383c565b60405180910390f35b34801561082857600080fd5b50610831611428565b60405161083e9190613718565b60405180910390f35b34801561085357600080fd5b5061085c61142e565b60405161086991906135d8565b60405180910390f35b34801561087e57600080fd5b5061089960048036038101906108949190613921565b6114c0565b005b3480156108a757600080fd5b506108b06115d9565b6040516108bd9190613718565b60405180910390f35b3480156108d257600080fd5b506108db6115df565b6040516108e89190613718565b60405180910390f35b3480156108fd57600080fd5b506109066115e5565b6040516109139190613718565b60405180910390f35b34801561092857600080fd5b506109316115eb565b60405161093e9190613718565b60405180910390f35b34801561095357600080fd5b5061096e60048036038101906109699190613693565b6115f1565b60405161097b91906136ee565b60405180910390f35b34801561099057600080fd5b506109ab60048036038101906109a69190613693565b6116dc565b6040516109b891906136ee565b60405180910390f35b3480156109cd57600080fd5b506109e860048036038101906109e39190613733565b6116fa565b6040516109f591906136ee565b60405180910390f35b348015610a0a57600080fd5b50610a13611719565b604051610a2091906136ee565b60405180910390f35b348015610a3557600080fd5b50610a506004803603810190610a4b9190613921565b61172c565b005b348015610a5e57600080fd5b50610a67611851565b604051610a7491906136ee565b60405180910390f35b348015610a8957600080fd5b50610a92611864565b604051610a9f9190613718565b60405180910390f35b348015610ab457600080fd5b50610abd61186a565b604051610aca9190613718565b60405180910390f35b348015610adf57600080fd5b50610afa6004803603810190610af59190613961565b611870565b604051610b079190613718565b60405180910390f35b348015610b1c57600080fd5b50610b256118f7565b604051610b329190613718565b60405180910390f35b348015610b4757600080fd5b50610b626004803603810190610b5d9190613857565b6118fd565b005b348015610b7057600080fd5b50610b79611994565b604051610b8691906136ee565b60405180910390f35b348015610b9b57600080fd5b50610ba4611a34565b604051610bb19190613718565b60405180910390f35b348015610bc657600080fd5b50610be16004803603810190610bdc9190613733565b611a3a565b005b348015610bef57600080fd5b50610bf8611b32565b604051610c059190613718565b60405180910390f35b348015610c1a57600080fd5b50610c23611b38565b604051610c309190613718565b60405180910390f35b606060038054610c48906139d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610c74906139d0565b8015610cc15780601f10610c9657610100808354040283529160200191610cc1565b820191906000526020600020905b815481529060010190602001808311610ca457829003601f168201915b5050505050905090565b6000610cdf610cd8611b3e565b8484611b46565b6001905092915050565b60155481565b601f6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601b5481565b601d5481565b601a5481565b6000610d5c848484611d11565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610da7611b3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e90613a74565b60405180910390fd5b610e3b85610e33611b3e565b858403611b46565b60019150509392505050565b61dead81565b610e55611b3e565b73ffffffffffffffffffffffffffffffffffffffff16610e736113d8565b73ffffffffffffffffffffffffffffffffffffffff1614610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec090613ae0565b60405180910390fd5b600a81838587610ed99190613b2f565b610ee39190613b2f565b610eed9190613b2f565b1115610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590613bd1565b60405180910390fd5b83601081905550826011819055508160128190555080601381905550601354601254601154601054610f609190613b2f565b610f6a9190613b2f565b610f749190613b2f565b600f8190555050505050565b60006012905090565b600061102b610f96611b3e565b848460016000610fa4611b3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110269190613b2f565b611b46565b6001905092915050565b60195481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110db611b3e565b73ffffffffffffffffffffffffffffffffffffffff166110f96113d8565b73ffffffffffffffffffffffffffffffffffffffff161461114f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114690613ae0565b60405180910390fd5b6111596000612a11565b565b6000611165611b3e565b73ffffffffffffffffffffffffffffffffffffffff166111836113d8565b73ffffffffffffffffffffffffffffffffffffffff16146111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d090613ae0565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b611203611b3e565b73ffffffffffffffffffffffffffffffffffffffff166112216113d8565b73ffffffffffffffffffffffffffffffffffffffff1614611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e90613ae0565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b61132c611b3e565b73ffffffffffffffffffffffffffffffffffffffff1661134a6113d8565b73ffffffffffffffffffffffffffffffffffffffff16146113a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139790613ae0565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b60606004805461143d906139d0565b80601f0160208091040260200160405190810160405280929190818152602001828054611469906139d0565b80156114b65780601f1061148b576101008083540402835291602001916114b6565b820191906000526020600020905b81548152906001019060200180831161149957829003601f168201915b5050505050905090565b6114c8611b3e565b73ffffffffffffffffffffffffffffffffffffffff166114e66113d8565b73ffffffffffffffffffffffffffffffffffffffff161461153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390613ae0565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c290613c63565b60405180910390fd5b6115d58282612ad7565b5050565b60135481565b601c5481565b60185481565b60105481565b60008060016000611600611b3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613cf5565b60405180910390fd5b6116d16116c8611b3e565b85858403611b46565b600191505092915050565b60006116f06116e9611b3e565b8484611d11565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611734611b3e565b73ffffffffffffffffffffffffffffffffffffffff166117526113d8565b73ffffffffffffffffffffffffffffffffffffffff16146117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90613ae0565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161184591906136ee565b60405180910390a25050565b600e60009054906101000a900460ff1681565b60095481565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b601d54831015611942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193990613d87565b60405180910390fd5b836015819055508260168190555081601781905550806018819055506018546017546016546015546119749190613b2f565b61197e9190613b2f565b6119889190613b2f565b60148190555050505050565b600061199e611b3e565b73ffffffffffffffffffffffffffffffffffffffff166119bc6113d8565b73ffffffffffffffffffffffffffffffffffffffff1614611a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0990613ae0565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b611a42611b3e565b73ffffffffffffffffffffffffffffffffffffffff16611a606113d8565b73ffffffffffffffffffffffffffffffffffffffff1614611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad90613ae0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90613e19565b60405180910390fd5b611b2f81612a11565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90613eab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d90613f3d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d049190613718565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7890613fcf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de890614061565b60405180910390fd5b6000811415611e0b57611e0683836000612b78565b612a0c565b600c60009054906101000a900460ff16156124ce57611e286113d8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e965750611e666113d8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ecf5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f09575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f225750600560149054906101000a900460ff16155b156124cd57600c60019054906101000a900460ff1661201c57601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611fdc5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61201b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612012906140cd565b60405180910390fd5b5b600e60009054906101000a900460ff16156121e4576120396113d8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156120c057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561211857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156121e35743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061219e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219590614185565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122875750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561232e576009548111156122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c890614217565b60405180910390fd5b600b546122dd8361108b565b826122e89190613b2f565b1115612329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232090614283565b60405180910390fd5b6124cc565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123d15750601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124205760095481111561241b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241290614315565b60405180910390fd5b6124cb565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166124ca57600b5461247d8361108b565b826124889190613b2f565b11156124c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c090614283565b60405180910390fd5b5b5b5b5b5b60006124d93061108b565b90506000600a5482101590508080156124fe5750600c60029054906101000a900460ff165b80156125175750600560149054906101000a900460ff16155b801561256d5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156125c35750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126195750601e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561265d576001600560146101000a81548160ff021916908315150217905550612641612df9565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127135750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561271d57600090505b600081156129fc57602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561278057506000601454115b15612880576127ad606461279f601454886131ba90919063ffffffff16565b6131d090919063ffffffff16565b9050601454601554826127c09190614335565b6127ca91906143be565b601960008282546127db9190613b2f565b92505081905550601454601754826127f39190614335565b6127fd91906143be565b601b600082825461280e9190613b2f565b92505081905550601454601854826128269190614335565b61283091906143be565b601c60008282546128419190613b2f565b92505081905550601454601654826128599190614335565b61286391906143be565b601a60008282546128749190613b2f565b925050819055506129d8565b602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128db57506000600f54115b156129d75761290860646128fa600f54886131ba90919063ffffffff16565b6131d090919063ffffffff16565b9050600f546010548261291b9190614335565b61292591906143be565b601960008282546129369190613b2f565b92505081905550600f546012548261294e9190614335565b61295891906143be565b601b60008282546129699190613b2f565b92505081905550600f54601354826129819190614335565b61298b91906143be565b601c600082825461299c9190613b2f565b92505081905550600f54601154826129b49190614335565b6129be91906143be565b601a60008282546129cf9190613b2f565b925050819055505b5b60008111156129ed576129ec873083612b78565b5b80856129f991906143ef565b94505b612a07878787612b78565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdf90613fcf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4f90614061565b60405180910390fd5b612c638383836131e6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce090614495565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d7c9190613b2f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612de09190613718565b60405180910390a3612df38484846131eb565b50505050565b6000612e043061108b565b90506000601c54601a54601b54601954612e1e9190613b2f565b612e289190613b2f565b612e329190613b2f565b9050600080831480612e445750600082145b15612e51575050506131b8565b6014600a54612e609190614335565b831115612e79576014600a54612e769190614335565b92505b6000600283601b5486612e8c9190614335565b612e9691906143be565b612ea091906143be565b90506000612eb782866131f090919063ffffffff16565b90506000479050612ec782613206565b6000612edc82476131f090919063ffffffff16565b90506000612f0787612ef9601954856131ba90919063ffffffff16565b6131d090919063ffffffff16565b90506000612f3288612f24601a54866131ba90919063ffffffff16565b6131d090919063ffffffff16565b90506000612f5d89612f4f601c54876131ba90919063ffffffff16565b6131d090919063ffffffff16565b9050600081838587612f6f91906143ef565b612f7991906143ef565b612f8391906143ef565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612feb906144e6565b60006040518083038185875af1925050503d8060008114613028576040519150601f19603f3d011682016040523d82523d6000602084013e61302d565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051613079906144e6565b60006040518083038185875af1925050503d80600081146130b6576040519150601f19603f3d011682016040523d82523d6000602084013e6130bb565b606091505b5050809950506000881180156130d15750600081115b1561311e576130e08882613443565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b54604051613115939291906144fb565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613164906144e6565b60006040518083038185875af1925050503d80600081146131a1576040519150601f19603f3d011682016040523d82523d6000602084013e6131a6565b606091505b50508099505050505050505050505050505b565b600081836131c89190614335565b905092915050565b600081836131de91906143be565b905092915050565b505050565b505050565b600081836131fe91906143ef565b905092915050565b6000600267ffffffffffffffff81111561322357613222614532565b5b6040519080825280602002602001820160405280156132515781602001602082028036833780820191505090505b509050308160008151811061326957613268614561565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561330e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061333291906145a5565b8160018151811061334657613345614561565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506133ab307f000000000000000000000000000000000000000000000000000000000000000084611b46565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161340d9594939291906146cb565b600060405180830381600087803b15801561342757600080fd5b505af115801561343b573d6000803e3d6000fd5b505050505050565b61346e307f000000000000000000000000000000000000000000000000000000000000000084611b46565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016134f596959493929190614725565b60606040518083038185885af1158015613513573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613538919061479b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561357957808201518184015260208101905061355e565b83811115613588576000848401525b50505050565b6000601f19601f8301169050919050565b60006135aa8261353f565b6135b4818561354a565b93506135c481856020860161355b565b6135cd8161358e565b840191505092915050565b600060208201905081810360008301526135f2818461359f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061362a826135ff565b9050919050565b61363a8161361f565b811461364557600080fd5b50565b60008135905061365781613631565b92915050565b6000819050919050565b6136708161365d565b811461367b57600080fd5b50565b60008135905061368d81613667565b92915050565b600080604083850312156136aa576136a96135fa565b5b60006136b885828601613648565b92505060206136c98582860161367e565b9150509250929050565b60008115159050919050565b6136e8816136d3565b82525050565b600060208201905061370360008301846136df565b92915050565b6137128161365d565b82525050565b600060208201905061372d6000830184613709565b92915050565b600060208284031215613749576137486135fa565b5b600061375784828501613648565b91505092915050565b6000819050919050565b600061378561378061377b846135ff565b613760565b6135ff565b9050919050565b60006137978261376a565b9050919050565b60006137a98261378c565b9050919050565b6137b98161379e565b82525050565b60006020820190506137d460008301846137b0565b92915050565b6000806000606084860312156137f3576137f26135fa565b5b600061380186828701613648565b935050602061381286828701613648565b92505060406138238682870161367e565b9150509250925092565b6138368161361f565b82525050565b6000602082019050613851600083018461382d565b92915050565b60008060008060808587031215613871576138706135fa565b5b600061387f8782880161367e565b94505060206138908782880161367e565b93505060406138a18782880161367e565b92505060606138b28782880161367e565b91505092959194509250565b600060ff82169050919050565b6138d4816138be565b82525050565b60006020820190506138ef60008301846138cb565b92915050565b6138fe816136d3565b811461390957600080fd5b50565b60008135905061391b816138f5565b92915050565b60008060408385031215613938576139376135fa565b5b600061394685828601613648565b92505060206139578582860161390c565b9150509250929050565b60008060408385031215613978576139776135fa565b5b600061398685828601613648565b925050602061399785828601613648565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139e857607f821691505b602082108114156139fc576139fb6139a1565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613a5e60288361354a565b9150613a6982613a02565b604082019050919050565b60006020820190508181036000830152613a8d81613a51565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613aca60208361354a565b9150613ad582613a94565b602082019050919050565b60006020820190508181036000830152613af981613abd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b3a8261365d565b9150613b458361365d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b7a57613b79613b00565b5b828201905092915050565b7f4d61782042757946656520313025000000000000000000000000000000000000600082015250565b6000613bbb600e8361354a565b9150613bc682613b85565b602082019050919050565b60006020820190508181036000830152613bea81613bae565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613c4d60398361354a565b9150613c5882613bf1565b604082019050919050565b60006020820190508181036000830152613c7c81613c40565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613cdf60258361354a565b9150613cea82613c83565b604082019050919050565b60006020820190508181036000830152613d0e81613cd2565b9050919050565b7f56616c75652043616e6e6f7420676f20686967686572207468616e204d61782060008201527f53656c6c20466565000000000000000000000000000000000000000000000000602082015250565b6000613d7160288361354a565b9150613d7c82613d15565b604082019050919050565b60006020820190508181036000830152613da081613d64565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e0360268361354a565b9150613e0e82613da7565b604082019050919050565b60006020820190508181036000830152613e3281613df6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613e9560248361354a565b9150613ea082613e39565b604082019050919050565b60006020820190508181036000830152613ec481613e88565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f2760228361354a565b9150613f3282613ecb565b604082019050919050565b60006020820190508181036000830152613f5681613f1a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613fb960258361354a565b9150613fc482613f5d565b604082019050919050565b60006020820190508181036000830152613fe881613fac565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061404b60238361354a565b915061405682613fef565b604082019050919050565b6000602082019050818103600083015261407a8161403e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006140b760168361354a565b91506140c282614081565b602082019050919050565b600060208201905081810360008301526140e6816140aa565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061416f60498361354a565b915061417a826140ed565b606082019050919050565b6000602082019050818103600083015261419e81614162565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061420160358361354a565b915061420c826141a5565b604082019050919050565b60006020820190508181036000830152614230816141f4565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061426d60138361354a565b915061427882614237565b602082019050919050565b6000602082019050818103600083015261429c81614260565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006142ff60368361354a565b915061430a826142a3565b604082019050919050565b6000602082019050818103600083015261432e816142f2565b9050919050565b60006143408261365d565b915061434b8361365d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561438457614383613b00565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143c98261365d565b91506143d48361365d565b9250826143e4576143e361438f565b5b828204905092915050565b60006143fa8261365d565b91506144058361365d565b92508282101561441857614417613b00565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061447f60268361354a565b915061448a82614423565b604082019050919050565b600060208201905081810360008301526144ae81614472565b9050919050565b600081905092915050565b50565b60006144d06000836144b5565b91506144db826144c0565b600082019050919050565b60006144f1826144c3565b9150819050919050565b60006060820190506145106000830186613709565b61451d6020830185613709565b61452a6040830184613709565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061459f81613631565b92915050565b6000602082840312156145bb576145ba6135fa565b5b60006145c984828501614590565b91505092915050565b6000819050919050565b60006145f76145f26145ed846145d2565b613760565b61365d565b9050919050565b614607816145dc565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146428161361f565b82525050565b60006146548383614639565b60208301905092915050565b6000602082019050919050565b60006146788261460d565b6146828185614618565b935061468d83614629565b8060005b838110156146be5781516146a58882614648565b97506146b083614660565b925050600181019050614691565b5085935050505092915050565b600060a0820190506146e06000830188613709565b6146ed60208301876145fe565b81810360408301526146ff818661466d565b905061470e606083018561382d565b61471b6080830184613709565b9695505050505050565b600060c08201905061473a600083018961382d565b6147476020830188613709565b61475460408301876145fe565b61476160608301866145fe565b61476e608083018561382d565b61477b60a0830184613709565b979650505050505050565b60008151905061479581613667565b92915050565b6000806000606084860312156147b4576147b36135fa565b5b60006147c286828701614786565b93505060206147d386828701614786565b92505060406147e486828701614786565b915050925092509256fea264697066735822122080e06a3201b77288bc94339ef04efced7721600025bac17cbafd7d5ae46b618364736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103035760003560e01c80638a8c523c11610190578063bbc0c742116100dc578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610b8f578063f2fde38b14610bba578063f637434214610be3578063f8b45b0514610c0e5761030a565b8063e2f4560514610b10578063e7ad9fcd14610b3b578063e884f26014610b645761030a565b8063bbc0c742146109fe578063c024666814610a29578063c876d0b914610a52578063c8c8ebe414610a7d578063d85ba06314610aa8578063dd62ed3e14610ad35761030a565b80639c3b4fdc11610149578063a1dc92bc11610123578063a1dc92bc1461091c578063a457c2d714610947578063a9059cbb14610984578063b62496f5146109c15761030a565b80639c3b4fdc1461089b5780639fccce32146108c6578063a0d82dc5146108f15761030a565b80638a8c523c146107af5780638da5cb5b146107c65780638ea5220f146107f1578063921369131461081c57806395d89b41146108475780639a7a23d6146108725761030a565b8063395093511161024f57806370a08231116102085780637571336a116101e25780637571336a1461070557806375f0a8741461072e5780637b208769146107595780637bce5a04146107845761030a565b806370a0823114610686578063715018a6146106c3578063751039fc146106da5761030a565b8063395093511461057257806344249f04146105af57806349bd5a5e146105da5780634a62bb65146106055780636a486a8e146106305780636ddd17131461065b5761030a565b80631a8145bb116102bc57806323b872dd1161029657806323b872dd146104b657806327c8f835146104f35780632e6ed7ef1461051e578063313ce567146105475761030a565b80631a8145bb146104355780631d3369ee146104605780631f3fed8f1461048b5761030a565b806306fdde031461030f578063095ea7b31461033a5780630d7f14411461037757806310d5de53146103a25780631694505e146103df57806318160ddd1461040a5761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c39565b60405161033191906135d8565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c9190613693565b610ccb565b60405161036e91906136ee565b60405180910390f35b34801561038357600080fd5b5061038c610ce9565b6040516103999190613718565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190613733565b610cef565b6040516103d691906136ee565b60405180910390f35b3480156103eb57600080fd5b506103f4610d0f565b60405161040191906137bf565b60405180910390f35b34801561041657600080fd5b5061041f610d33565b60405161042c9190613718565b60405180910390f35b34801561044157600080fd5b5061044a610d3d565b6040516104579190613718565b60405180910390f35b34801561046c57600080fd5b50610475610d43565b6040516104829190613718565b60405180910390f35b34801561049757600080fd5b506104a0610d49565b6040516104ad9190613718565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d891906137da565b610d4f565b6040516104ea91906136ee565b60405180910390f35b3480156104ff57600080fd5b50610508610e47565b604051610515919061383c565b60405180910390f35b34801561052a57600080fd5b5061054560048036038101906105409190613857565b610e4d565b005b34801561055357600080fd5b5061055c610f80565b60405161056991906138da565b60405180910390f35b34801561057e57600080fd5b5061059960048036038101906105949190613693565b610f89565b6040516105a691906136ee565b60405180910390f35b3480156105bb57600080fd5b506105c4611035565b6040516105d19190613718565b60405180910390f35b3480156105e657600080fd5b506105ef61103b565b6040516105fc919061383c565b60405180910390f35b34801561061157600080fd5b5061061a61105f565b60405161062791906136ee565b60405180910390f35b34801561063c57600080fd5b50610645611072565b6040516106529190613718565b60405180910390f35b34801561066757600080fd5b50610670611078565b60405161067d91906136ee565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a89190613733565b61108b565b6040516106ba9190613718565b60405180910390f35b3480156106cf57600080fd5b506106d86110d3565b005b3480156106e657600080fd5b506106ef61115b565b6040516106fc91906136ee565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190613921565b6111fb565b005b34801561073a57600080fd5b506107436112d2565b604051610750919061383c565b60405180910390f35b34801561076557600080fd5b5061076e6112f8565b60405161077b919061383c565b60405180910390f35b34801561079057600080fd5b5061079961131e565b6040516107a69190613718565b60405180910390f35b3480156107bb57600080fd5b506107c4611324565b005b3480156107d257600080fd5b506107db6113d8565b6040516107e8919061383c565b60405180910390f35b3480156107fd57600080fd5b50610806611402565b604051610813919061383c565b60405180910390f35b34801561082857600080fd5b50610831611428565b60405161083e9190613718565b60405180910390f35b34801561085357600080fd5b5061085c61142e565b60405161086991906135d8565b60405180910390f35b34801561087e57600080fd5b5061089960048036038101906108949190613921565b6114c0565b005b3480156108a757600080fd5b506108b06115d9565b6040516108bd9190613718565b60405180910390f35b3480156108d257600080fd5b506108db6115df565b6040516108e89190613718565b60405180910390f35b3480156108fd57600080fd5b506109066115e5565b6040516109139190613718565b60405180910390f35b34801561092857600080fd5b506109316115eb565b60405161093e9190613718565b60405180910390f35b34801561095357600080fd5b5061096e60048036038101906109699190613693565b6115f1565b60405161097b91906136ee565b60405180910390f35b34801561099057600080fd5b506109ab60048036038101906109a69190613693565b6116dc565b6040516109b891906136ee565b60405180910390f35b3480156109cd57600080fd5b506109e860048036038101906109e39190613733565b6116fa565b6040516109f591906136ee565b60405180910390f35b348015610a0a57600080fd5b50610a13611719565b604051610a2091906136ee565b60405180910390f35b348015610a3557600080fd5b50610a506004803603810190610a4b9190613921565b61172c565b005b348015610a5e57600080fd5b50610a67611851565b604051610a7491906136ee565b60405180910390f35b348015610a8957600080fd5b50610a92611864565b604051610a9f9190613718565b60405180910390f35b348015610ab457600080fd5b50610abd61186a565b604051610aca9190613718565b60405180910390f35b348015610adf57600080fd5b50610afa6004803603810190610af59190613961565b611870565b604051610b079190613718565b60405180910390f35b348015610b1c57600080fd5b50610b256118f7565b604051610b329190613718565b60405180910390f35b348015610b4757600080fd5b50610b626004803603810190610b5d9190613857565b6118fd565b005b348015610b7057600080fd5b50610b79611994565b604051610b8691906136ee565b60405180910390f35b348015610b9b57600080fd5b50610ba4611a34565b604051610bb19190613718565b60405180910390f35b348015610bc657600080fd5b50610be16004803603810190610bdc9190613733565b611a3a565b005b348015610bef57600080fd5b50610bf8611b32565b604051610c059190613718565b60405180910390f35b348015610c1a57600080fd5b50610c23611b38565b604051610c309190613718565b60405180910390f35b606060038054610c48906139d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610c74906139d0565b8015610cc15780601f10610c9657610100808354040283529160200191610cc1565b820191906000526020600020905b815481529060010190602001808311610ca457829003601f168201915b5050505050905090565b6000610cdf610cd8611b3e565b8484611b46565b6001905092915050565b60155481565b601f6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601b5481565b601d5481565b601a5481565b6000610d5c848484611d11565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610da7611b3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e90613a74565b60405180910390fd5b610e3b85610e33611b3e565b858403611b46565b60019150509392505050565b61dead81565b610e55611b3e565b73ffffffffffffffffffffffffffffffffffffffff16610e736113d8565b73ffffffffffffffffffffffffffffffffffffffff1614610ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec090613ae0565b60405180910390fd5b600a81838587610ed99190613b2f565b610ee39190613b2f565b610eed9190613b2f565b1115610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590613bd1565b60405180910390fd5b83601081905550826011819055508160128190555080601381905550601354601254601154601054610f609190613b2f565b610f6a9190613b2f565b610f749190613b2f565b600f8190555050505050565b60006012905090565b600061102b610f96611b3e565b848460016000610fa4611b3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110269190613b2f565b611b46565b6001905092915050565b60195481565b7f000000000000000000000000eb1a12a5acd62e27825e9264f05ec6ba51fd01e381565b600c60009054906101000a900460ff1681565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110db611b3e565b73ffffffffffffffffffffffffffffffffffffffff166110f96113d8565b73ffffffffffffffffffffffffffffffffffffffff161461114f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114690613ae0565b60405180910390fd5b6111596000612a11565b565b6000611165611b3e565b73ffffffffffffffffffffffffffffffffffffffff166111836113d8565b73ffffffffffffffffffffffffffffffffffffffff16146111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d090613ae0565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b611203611b3e565b73ffffffffffffffffffffffffffffffffffffffff166112216113d8565b73ffffffffffffffffffffffffffffffffffffffff1614611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e90613ae0565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b61132c611b3e565b73ffffffffffffffffffffffffffffffffffffffff1661134a6113d8565b73ffffffffffffffffffffffffffffffffffffffff16146113a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139790613ae0565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b60606004805461143d906139d0565b80601f0160208091040260200160405190810160405280929190818152602001828054611469906139d0565b80156114b65780601f1061148b576101008083540402835291602001916114b6565b820191906000526020600020905b81548152906001019060200180831161149957829003601f168201915b5050505050905090565b6114c8611b3e565b73ffffffffffffffffffffffffffffffffffffffff166114e66113d8565b73ffffffffffffffffffffffffffffffffffffffff161461153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390613ae0565b60405180910390fd5b7f000000000000000000000000eb1a12a5acd62e27825e9264f05ec6ba51fd01e373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c290613c63565b60405180910390fd5b6115d58282612ad7565b5050565b60135481565b601c5481565b60185481565b60105481565b60008060016000611600611b3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613cf5565b60405180910390fd5b6116d16116c8611b3e565b85858403611b46565b600191505092915050565b60006116f06116e9611b3e565b8484611d11565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611734611b3e565b73ffffffffffffffffffffffffffffffffffffffff166117526113d8565b73ffffffffffffffffffffffffffffffffffffffff16146117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90613ae0565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161184591906136ee565b60405180910390a25050565b600e60009054906101000a900460ff1681565b60095481565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b601d54831015611942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193990613d87565b60405180910390fd5b836015819055508260168190555081601781905550806018819055506018546017546016546015546119749190613b2f565b61197e9190613b2f565b6119889190613b2f565b60148190555050505050565b600061199e611b3e565b73ffffffffffffffffffffffffffffffffffffffff166119bc6113d8565b73ffffffffffffffffffffffffffffffffffffffff1614611a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0990613ae0565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b611a42611b3e565b73ffffffffffffffffffffffffffffffffffffffff16611a606113d8565b73ffffffffffffffffffffffffffffffffffffffff1614611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad90613ae0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90613e19565b60405180910390fd5b611b2f81612a11565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90613eab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1d90613f3d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d049190613718565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7890613fcf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de890614061565b60405180910390fd5b6000811415611e0b57611e0683836000612b78565b612a0c565b600c60009054906101000a900460ff16156124ce57611e286113d8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e965750611e666113d8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ecf5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f09575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f225750600560149054906101000a900460ff16155b156124cd57600c60019054906101000a900460ff1661201c57601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611fdc5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61201b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612012906140cd565b60405180910390fd5b5b600e60009054906101000a900460ff16156121e4576120396113d8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156120c057507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561211857507f000000000000000000000000eb1a12a5acd62e27825e9264f05ec6ba51fd01e373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156121e35743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061219e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219590614185565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122875750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561232e576009548111156122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c890614217565b60405180910390fd5b600b546122dd8361108b565b826122e89190613b2f565b1115612329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232090614283565b60405180910390fd5b6124cc565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123d15750601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124205760095481111561241b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241290614315565b60405180910390fd5b6124cb565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166124ca57600b5461247d8361108b565b826124889190613b2f565b11156124c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c090614283565b60405180910390fd5b5b5b5b5b5b60006124d93061108b565b90506000600a5482101590508080156124fe5750600c60029054906101000a900460ff165b80156125175750600560149054906101000a900460ff16155b801561256d5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156125c35750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126195750601e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561265d576001600560146101000a81548160ff021916908315150217905550612641612df9565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127135750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561271d57600090505b600081156129fc57602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561278057506000601454115b15612880576127ad606461279f601454886131ba90919063ffffffff16565b6131d090919063ffffffff16565b9050601454601554826127c09190614335565b6127ca91906143be565b601960008282546127db9190613b2f565b92505081905550601454601754826127f39190614335565b6127fd91906143be565b601b600082825461280e9190613b2f565b92505081905550601454601854826128269190614335565b61283091906143be565b601c60008282546128419190613b2f565b92505081905550601454601654826128599190614335565b61286391906143be565b601a60008282546128749190613b2f565b925050819055506129d8565b602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128db57506000600f54115b156129d75761290860646128fa600f54886131ba90919063ffffffff16565b6131d090919063ffffffff16565b9050600f546010548261291b9190614335565b61292591906143be565b601960008282546129369190613b2f565b92505081905550600f546012548261294e9190614335565b61295891906143be565b601b60008282546129699190613b2f565b92505081905550600f54601354826129819190614335565b61298b91906143be565b601c600082825461299c9190613b2f565b92505081905550600f54601154826129b49190614335565b6129be91906143be565b601a60008282546129cf9190613b2f565b925050819055505b5b60008111156129ed576129ec873083612b78565b5b80856129f991906143ef565b94505b612a07878787612b78565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdf90613fcf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4f90614061565b60405180910390fd5b612c638383836131e6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce090614495565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d7c9190613b2f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612de09190613718565b60405180910390a3612df38484846131eb565b50505050565b6000612e043061108b565b90506000601c54601a54601b54601954612e1e9190613b2f565b612e289190613b2f565b612e329190613b2f565b9050600080831480612e445750600082145b15612e51575050506131b8565b6014600a54612e609190614335565b831115612e79576014600a54612e769190614335565b92505b6000600283601b5486612e8c9190614335565b612e9691906143be565b612ea091906143be565b90506000612eb782866131f090919063ffffffff16565b90506000479050612ec782613206565b6000612edc82476131f090919063ffffffff16565b90506000612f0787612ef9601954856131ba90919063ffffffff16565b6131d090919063ffffffff16565b90506000612f3288612f24601a54866131ba90919063ffffffff16565b6131d090919063ffffffff16565b90506000612f5d89612f4f601c54876131ba90919063ffffffff16565b6131d090919063ffffffff16565b9050600081838587612f6f91906143ef565b612f7991906143ef565b612f8391906143ef565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612feb906144e6565b60006040518083038185875af1925050503d8060008114613028576040519150601f19603f3d011682016040523d82523d6000602084013e61302d565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051613079906144e6565b60006040518083038185875af1925050503d80600081146130b6576040519150601f19603f3d011682016040523d82523d6000602084013e6130bb565b606091505b5050809950506000881180156130d15750600081115b1561311e576130e08882613443565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b54604051613115939291906144fb565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613164906144e6565b60006040518083038185875af1925050503d80600081146131a1576040519150601f19603f3d011682016040523d82523d6000602084013e6131a6565b606091505b50508099505050505050505050505050505b565b600081836131c89190614335565b905092915050565b600081836131de91906143be565b905092915050565b505050565b505050565b600081836131fe91906143ef565b905092915050565b6000600267ffffffffffffffff81111561322357613222614532565b5b6040519080825280602002602001820160405280156132515781602001602082028036833780820191505090505b509050308160008151811061326957613268614561565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561330e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061333291906145a5565b8160018151811061334657613345614561565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506133ab307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b46565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161340d9594939291906146cb565b600060405180830381600087803b15801561342757600080fd5b505af115801561343b573d6000803e3d6000fd5b505050505050565b61346e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b46565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016134f596959493929190614725565b60606040518083038185885af1158015613513573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613538919061479b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561357957808201518184015260208101905061355e565b83811115613588576000848401525b50505050565b6000601f19601f8301169050919050565b60006135aa8261353f565b6135b4818561354a565b93506135c481856020860161355b565b6135cd8161358e565b840191505092915050565b600060208201905081810360008301526135f2818461359f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061362a826135ff565b9050919050565b61363a8161361f565b811461364557600080fd5b50565b60008135905061365781613631565b92915050565b6000819050919050565b6136708161365d565b811461367b57600080fd5b50565b60008135905061368d81613667565b92915050565b600080604083850312156136aa576136a96135fa565b5b60006136b885828601613648565b92505060206136c98582860161367e565b9150509250929050565b60008115159050919050565b6136e8816136d3565b82525050565b600060208201905061370360008301846136df565b92915050565b6137128161365d565b82525050565b600060208201905061372d6000830184613709565b92915050565b600060208284031215613749576137486135fa565b5b600061375784828501613648565b91505092915050565b6000819050919050565b600061378561378061377b846135ff565b613760565b6135ff565b9050919050565b60006137978261376a565b9050919050565b60006137a98261378c565b9050919050565b6137b98161379e565b82525050565b60006020820190506137d460008301846137b0565b92915050565b6000806000606084860312156137f3576137f26135fa565b5b600061380186828701613648565b935050602061381286828701613648565b92505060406138238682870161367e565b9150509250925092565b6138368161361f565b82525050565b6000602082019050613851600083018461382d565b92915050565b60008060008060808587031215613871576138706135fa565b5b600061387f8782880161367e565b94505060206138908782880161367e565b93505060406138a18782880161367e565b92505060606138b28782880161367e565b91505092959194509250565b600060ff82169050919050565b6138d4816138be565b82525050565b60006020820190506138ef60008301846138cb565b92915050565b6138fe816136d3565b811461390957600080fd5b50565b60008135905061391b816138f5565b92915050565b60008060408385031215613938576139376135fa565b5b600061394685828601613648565b92505060206139578582860161390c565b9150509250929050565b60008060408385031215613978576139776135fa565b5b600061398685828601613648565b925050602061399785828601613648565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139e857607f821691505b602082108114156139fc576139fb6139a1565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613a5e60288361354a565b9150613a6982613a02565b604082019050919050565b60006020820190508181036000830152613a8d81613a51565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613aca60208361354a565b9150613ad582613a94565b602082019050919050565b60006020820190508181036000830152613af981613abd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b3a8261365d565b9150613b458361365d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b7a57613b79613b00565b5b828201905092915050565b7f4d61782042757946656520313025000000000000000000000000000000000000600082015250565b6000613bbb600e8361354a565b9150613bc682613b85565b602082019050919050565b60006020820190508181036000830152613bea81613bae565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613c4d60398361354a565b9150613c5882613bf1565b604082019050919050565b60006020820190508181036000830152613c7c81613c40565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613cdf60258361354a565b9150613cea82613c83565b604082019050919050565b60006020820190508181036000830152613d0e81613cd2565b9050919050565b7f56616c75652043616e6e6f7420676f20686967686572207468616e204d61782060008201527f53656c6c20466565000000000000000000000000000000000000000000000000602082015250565b6000613d7160288361354a565b9150613d7c82613d15565b604082019050919050565b60006020820190508181036000830152613da081613d64565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e0360268361354a565b9150613e0e82613da7565b604082019050919050565b60006020820190508181036000830152613e3281613df6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613e9560248361354a565b9150613ea082613e39565b604082019050919050565b60006020820190508181036000830152613ec481613e88565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f2760228361354a565b9150613f3282613ecb565b604082019050919050565b60006020820190508181036000830152613f5681613f1a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613fb960258361354a565b9150613fc482613f5d565b604082019050919050565b60006020820190508181036000830152613fe881613fac565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061404b60238361354a565b915061405682613fef565b604082019050919050565b6000602082019050818103600083015261407a8161403e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006140b760168361354a565b91506140c282614081565b602082019050919050565b600060208201905081810360008301526140e6816140aa565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061416f60498361354a565b915061417a826140ed565b606082019050919050565b6000602082019050818103600083015261419e81614162565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061420160358361354a565b915061420c826141a5565b604082019050919050565b60006020820190508181036000830152614230816141f4565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061426d60138361354a565b915061427882614237565b602082019050919050565b6000602082019050818103600083015261429c81614260565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006142ff60368361354a565b915061430a826142a3565b604082019050919050565b6000602082019050818103600083015261432e816142f2565b9050919050565b60006143408261365d565b915061434b8361365d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561438457614383613b00565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143c98261365d565b91506143d48361365d565b9250826143e4576143e361438f565b5b828204905092915050565b60006143fa8261365d565b91506144058361365d565b92508282101561441857614417613b00565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061447f60268361354a565b915061448a82614423565b604082019050919050565b600060208201905081810360008301526144ae81614472565b9050919050565b600081905092915050565b50565b60006144d06000836144b5565b91506144db826144c0565b600082019050919050565b60006144f1826144c3565b9150819050919050565b60006060820190506145106000830186613709565b61451d6020830185613709565b61452a6040830184613709565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061459f81613631565b92915050565b6000602082840312156145bb576145ba6135fa565b5b60006145c984828501614590565b91505092915050565b6000819050919050565b60006145f76145f26145ed846145d2565b613760565b61365d565b9050919050565b614607816145dc565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146428161361f565b82525050565b60006146548383614639565b60208301905092915050565b6000602082019050919050565b60006146788261460d565b6146828185614618565b935061468d83614629565b8060005b838110156146be5781516146a58882614648565b97506146b083614660565b925050600181019050614691565b5085935050505092915050565b600060a0820190506146e06000830188613709565b6146ed60208301876145fe565b81810360408301526146ff818661466d565b905061470e606083018561382d565b61471b6080830184613709565b9695505050505050565b600060c08201905061473a600083018961382d565b6147476020830188613709565b61475460408301876145fe565b61476160608301866145fe565b61476e608083018561382d565b61477b60a0830184613709565b979650505050505050565b60008151905061479581613667565b92915050565b6000806000606084860312156147b4576147b36135fa565b5b60006147c286828701614786565b93505060206147d386828701614786565b92505060406147e486828701614786565b915050925092509256fea264697066735822122080e06a3201b77288bc94339ef04efced7721600025bac17cbafd7d5ae46b618364736f6c634300080a0033

Deployed Bytecode Sourcemap

32809:15087:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9736:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11903:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33850:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34328:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32889:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10856:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34071:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34145:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34031:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12554:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32992:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38329:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10698:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13455:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33993:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32947:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33301:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33818:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33380:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11027:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2971:103;;;;;;;;;;;;;:::i;:::-;;37828:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38154:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33116:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33081:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33711:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37664:112;;;;;;;;;;;;;:::i;:::-;;2320:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33153:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33886:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9955:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39526:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33785:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34111:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33962:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33676:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14173:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11367:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34549:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33341:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39336:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33597:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33186:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33645:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11605:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33228:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38835:493;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38010:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33748:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3229:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33924:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33268:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9736:100;9790:13;9823:5;9816:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9736:100;:::o;11903:169::-;11986:4;12003:39;12012:12;:10;:12::i;:::-;12026:7;12035:6;12003:8;:39::i;:::-;12060:4;12053:11;;11903:169;;;;:::o;33850:29::-;;;;:::o;34328:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32889:51::-;;;:::o;10856:108::-;10917:7;10944:12;;10937:19;;10856:108;:::o;34071:33::-;;;;:::o;34145:34::-;;;;:::o;34031:33::-;;;;:::o;12554:492::-;12694:4;12711:36;12721:6;12729:9;12740:6;12711:9;:36::i;:::-;12760:24;12787:11;:19;12799:6;12787:19;;;;;;;;;;;;;;;:33;12807:12;:10;:12::i;:::-;12787:33;;;;;;;;;;;;;;;;12760:60;;12859:6;12839:16;:26;;12831:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12946:57;12955:6;12963:12;:10;:12::i;:::-;12996:6;12977:16;:25;12946:8;:57::i;:::-;13034:4;13027:11;;;12554:492;;;;;:::o;32992:53::-;33038:6;32992:53;:::o;38329:498::-;2551:12;:10;:12::i;:::-;2540:23;;:7;:5;:7::i;:::-;:23;;;2532:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38564:2:::1;38552:7;38536:13;38520;38506:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;38505:61;;38497:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;38606:11;38590:13;:27;;;;38646:13;38628:15;:31;;;;38688:13;38670:15;:31;;;;38724:7;38712:9;:19;;;;38809:9;;38791:15;;38773;;38757:13;;:31;;;;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;38742:12;:76;;;;38329:498:::0;;;;:::o;10698:93::-;10756:5;10781:2;10774:9;;10698:93;:::o;13455:215::-;13543:4;13560:80;13569:12;:10;:12::i;:::-;13583:7;13629:10;13592:11;:25;13604:12;:10;:12::i;:::-;13592:25;;;;;;;;;;;;;;;:34;13618:7;13592:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13560:8;:80::i;:::-;13658:4;13651:11;;13455:215;;;;:::o;33993:31::-;;;;:::o;32947:38::-;;;:::o;33301:33::-;;;;;;;;;;;;;:::o;33818:28::-;;;;:::o;33380:30::-;;;;;;;;;;;;;:::o;11027:127::-;11101:7;11128:9;:18;11138:7;11128:18;;;;;;;;;;;;;;;;11121:25;;11027:127;;;:::o;2971:103::-;2551:12;:10;:12::i;:::-;2540:23;;:7;:5;:7::i;:::-;:23;;;2532:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3036:30:::1;3063:1;3036:18;:30::i;:::-;2971:103::o:0;37828:121::-;37880:4;2551:12;:10;:12::i;:::-;2540:23;;:7;:5;:7::i;:::-;:23;;;2532:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37914:5:::1;37897:14;;:22;;;;;;;;;;;;;;;;;;37937:4;37930:11;;37828:121:::0;:::o;38154:167::-;2551:12;:10;:12::i;:::-;2540:23;;:7;:5;:7::i;:::-;:23;;;2532:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38309:4:::1;38267:31;:39;38299:6;38267:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38154:167:::0;;:::o;33116:30::-;;;;;;;;;;;;;:::o;33081:28::-;;;;;;;;;;;;;:::o;33711:30::-;;;;:::o;37664:112::-;2551:12;:10;:12::i;:::-;2540:23;;:7;:5;:7::i;:::-;:23;;;2532:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37735:4:::1;37719:13;;:20;;;;;;;;;;;;;;;;;;37764:4;37750:11;;:18;;;;;;;;;;;;;;;;;;37664:112::o:0;2320:87::-;2366:7;2393:6;;;;;;;;;;;2386:13;;2320:87;:::o;33153:24::-;;;;;;;;;;;;;:::o;33886:31::-;;;;:::o;9955:104::-;10011:13;10044:7;10037:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9955:104;:::o;39526:304::-;2551:12;:10;:12::i;:::-;2540:23;;:7;:5;:7::i;:::-;:23;;;2532:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39670:13:::1;39662:21;;:4;:21;;;;39640:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;39781:41;39810:4;39816:5;39781:28;:41::i;:::-;39526:304:::0;;:::o;33785:24::-;;;;:::o;34111:27::-;;;;:::o;33962:25::-;;;;:::o;33676:28::-;;;;:::o;14173:413::-;14266:4;14283:24;14310:11;:25;14322:12;:10;:12::i;:::-;14310:25;;;;;;;;;;;;;;;:34;14336:7;14310:34;;;;;;;;;;;;;;;;14283:61;;14383:15;14363:16;:35;;14355:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14476:67;14485:12;:10;:12::i;:::-;14499:7;14527:15;14508:16;:34;14476:8;:67::i;:::-;14574:4;14567:11;;;14173:413;;;;:::o;11367:175::-;11453:4;11470:42;11480:12;:10;:12::i;:::-;11494:9;11505:6;11470:9;:42::i;:::-;11530:4;11523:11;;11367:175;;;;:::o;34549:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33341:32::-;;;;;;;;;;;;;:::o;39336:182::-;2551:12;:10;:12::i;:::-;2540:23;;:7;:5;:7::i;:::-;:23;;;2532:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39452:8:::1;39421:19;:28;39441:7;39421:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39492:7;39476:34;;;39501:8;39476:34;;;;;;:::i;:::-;;;;;;;;39336:182:::0;;:::o;33597:39::-;;;;;;;;;;;;;:::o;33186:35::-;;;;:::o;33645:27::-;;;;:::o;11605:151::-;11694:7;11721:11;:18;11733:5;11721:18;;;;;;;;;;;;;;;:27;11740:7;11721:27;;;;;;;;;;;;;;;;11714:34;;11605:151;;;;:::o;33228:33::-;;;;:::o;38835:493::-;39019:14;;39001:13;39000:33;;38992:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;39100:11;39083:14;:28;;;;39141:13;39122:16;:32;;;;39184:13;39165:16;:32;;;;39221:7;39208:10;:20;;;;39310:10;;39291:16;;39272;;39255:14;;:33;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;39239:13;:81;;;;38835:493;;;;:::o;38010:135::-;38070:4;2551:12;:10;:12::i;:::-;2540:23;;:7;:5;:7::i;:::-;:23;;;2532:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38110:5:::1;38087:20;;:28;;;;;;;;;;;;;;;;;;38133:4;38126:11;;38010:135:::0;:::o;33748:30::-;;;;:::o;3229:201::-;2551:12;:10;:12::i;:::-;2540:23;;:7;:5;:7::i;:::-;:23;;;2532:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3338:1:::1;3318:22;;:8;:22;;;;3310:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3394:28;3413:8;3394:18;:28::i;:::-;3229:201:::0;:::o;33924:31::-;;;;:::o;33268:24::-;;;;:::o;993:98::-;1046:7;1073:10;1066:17;;993:98;:::o;17857:380::-;18010:1;17993:19;;:5;:19;;;;17985:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18091:1;18072:21;;:7;:21;;;;18064:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18175:6;18145:11;:18;18157:5;18145:18;;;;;;;;;;;;;;;:27;18164:7;18145:27;;;;;;;;;;;;;;;:36;;;;18213:7;18197:32;;18206:5;18197:32;;;18222:6;18197:32;;;;;;:::i;:::-;;;;;;;;17857:380;;;:::o;40034:4847::-;40182:1;40166:18;;:4;:18;;;;40158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40259:1;40245:16;;:2;:16;;;;40237:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40328:1;40318:6;:11;40314:93;;;40346:28;40362:4;40368:2;40372:1;40346:15;:28::i;:::-;40389:7;;40314:93;40423:14;;;;;;;;;;;40419:2487;;;40484:7;:5;:7::i;:::-;40476:15;;:4;:15;;;;:49;;;;;40518:7;:5;:7::i;:::-;40512:13;;:2;:13;;;;40476:49;:86;;;;;40560:1;40546:16;;:2;:16;;;;40476:86;:128;;;;;40597:6;40583:21;;:2;:21;;;;40476:128;:158;;;;;40626:8;;;;;;;;;;;40625:9;40476:158;40454:2441;;;40674:13;;;;;;;;;;;40669:223;;40746:19;:25;40766:4;40746:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40775:19;:23;40795:2;40775:23;;;;;;;;;;;;;;;;;;;;;;;;;40746:52;40712:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;40669:223;41048:20;;;;;;;;;;;41044:641;;;41129:7;:5;:7::i;:::-;41123:13;;:2;:13;;;;:72;;;;;41179:15;41165:30;;:2;:30;;;;41123:72;:129;;;;;41238:13;41224:28;;:2;:28;;;;41123:129;41093:573;;;41416:12;41341:28;:39;41370:9;41341:39;;;;;;;;;;;;;;;;:87;41303:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;41630:12;41588:28;:39;41617:9;41588:39;;;;;;;;;;;;;;;:54;;;;41093:573;41044:641;41759:25;:31;41785:4;41759:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;41816:31;:35;41848:2;41816:35;;;;;;;;;;;;;;;;;;;;;;;;;41815:36;41759:92;41733:1147;;;41938:20;;41928:6;:30;;41894:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;42146:9;;42129:13;42139:2;42129:9;:13::i;:::-;42120:6;:22;;;;:::i;:::-;:35;;42086:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41733:1147;;;42324:25;:29;42350:2;42324:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42379:31;:37;42411:4;42379:37;;;;;;;;;;;;;;;;;;;;;;;;;42378:38;42324:92;42298:582;;;42503:20;;42493:6;:30;;42459:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;42298:582;;;42660:31;:35;42692:2;42660:35;;;;;;;;;;;;;;;;;;;;;;;;;42655:225;;42780:9;;42763:13;42773:2;42763:9;:13::i;:::-;42754:6;:22;;;;:::i;:::-;:35;;42720:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42655:225;42298:582;41733:1147;40454:2441;40419:2487;42918:28;42949:24;42967:4;42949:9;:24::i;:::-;42918:55;;42986:12;43025:18;;43001:20;:42;;42986:57;;43074:7;:35;;;;;43098:11;;;;;;;;;;;43074:35;:61;;;;;43127:8;;;;;;;;;;;43126:9;43074:61;:110;;;;;43153:25;:31;43179:4;43153:31;;;;;;;;;;;;;;;;;;;;;;;;;43152:32;43074:110;:153;;;;;43202:19;:25;43222:4;43202:25;;;;;;;;;;;;;;;;;;;;;;;;;43201:26;43074:153;:194;;;;;43245:19;:23;43265:2;43245:23;;;;;;;;;;;;;;;;;;;;;;;;;43244:24;43074:194;43056:326;;;43306:4;43295:8;;:15;;;;;;;;;;;;;;;;;;43327:10;:8;:10::i;:::-;43365:5;43354:8;;:16;;;;;;;;;;;;;;;;;;43056:326;43394:12;43410:8;;;;;;;;;;;43409:9;43394:24;;43520:19;:25;43540:4;43520:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43549:19;:23;43569:2;43549:23;;;;;;;;;;;;;;;;;;;;;;;;;43520:52;43516:100;;;43599:5;43589:15;;43516:100;43628:12;43733:7;43729:1099;;;43785:25;:29;43811:2;43785:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;43834:1;43818:13;;:17;43785:50;43781:898;;;43863:34;43893:3;43863:25;43874:13;;43863:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;43856:41;;43950:13;;43932:14;;43925:4;:21;;;;:::i;:::-;43924:39;;;;:::i;:::-;43904:16;;:59;;;;;;;:::i;:::-;;;;;;;;44032:13;;44012:16;;44005:4;:23;;;;:::i;:::-;44004:41;;;;:::i;:::-;43982:18;;:63;;;;;;;:::i;:::-;;;;;;;;44102:13;;44088:10;;44081:4;:17;;;;:::i;:::-;44080:35;;;;:::i;:::-;44064:12;;:51;;;;;;;:::i;:::-;;;;;;;;44184:13;;44164:16;;44157:4;:23;;;;:::i;:::-;44156:41;;;;:::i;:::-;44134:18;;:63;;;;;;;:::i;:::-;;;;;;;;43781:898;;;44259:25;:31;44285:4;44259:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;44309:1;44294:12;;:16;44259:51;44255:424;;;44338:33;44367:3;44338:24;44349:12;;44338:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;44331:40;;44423:12;;44406:13;;44399:4;:20;;;;:::i;:::-;44398:37;;;;:::i;:::-;44378:16;;:57;;;;;;;:::i;:::-;;;;;;;;44503:12;;44484:15;;44477:4;:22;;;;:::i;:::-;44476:39;;;;:::i;:::-;44454:18;;:61;;;;;;;:::i;:::-;;;;;;;;44571:12;;44558:9;;44551:4;:16;;;;:::i;:::-;44550:33;;;;:::i;:::-;44534:12;;:49;;;;;;;:::i;:::-;;;;;;;;44651:12;;44632:15;;44625:4;:22;;;;:::i;:::-;44624:39;;;;:::i;:::-;44602:18;;:61;;;;;;;:::i;:::-;;;;;;;;44255:424;43781:898;44706:1;44699:4;:8;44695:91;;;44728:42;44744:4;44758;44765;44728:15;:42::i;:::-;44695:91;44812:4;44802:14;;;;;:::i;:::-;;;43729:1099;44840:33;44856:4;44862:2;44866:6;44840:15;:33::i;:::-;40147:4734;;;;40034:4847;;;;:::o;3590:191::-;3664:16;3683:6;;;;;;;;;;;3664:25;;3709:8;3700:6;;:17;;;;;;;;;;;;;;;;;;3764:8;3733:40;;3754:8;3733:40;;;;;;;;;;;;3653:128;3590:191;:::o;39838:188::-;39955:5;39921:25;:31;39947:4;39921:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40012:5;39978:40;;40006:4;39978:40;;;;;;;;;;;;39838:188;;:::o;15076:733::-;15234:1;15216:20;;:6;:20;;;;15208:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15318:1;15297:23;;:9;:23;;;;15289:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15373:47;15394:6;15402:9;15413:6;15373:20;:47::i;:::-;15433:21;15457:9;:17;15467:6;15457:17;;;;;;;;;;;;;;;;15433:41;;15510:6;15493:13;:23;;15485:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15631:6;15615:13;:22;15595:9;:17;15605:6;15595:17;;;;;;;;;;;;;;;:42;;;;15683:6;15659:9;:20;15669:9;15659:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15724:9;15707:35;;15716:6;15707:35;;;15735:6;15707:35;;;;;;:::i;:::-;;;;;;;;15755:46;15775:6;15783:9;15794:6;15755:19;:46::i;:::-;15197:612;15076:733;;;:::o;46009:1882::-;46048:23;46074:24;46092:4;46074:9;:24::i;:::-;46048:50;;46109:25;46198:12;;46177:18;;46156;;46137:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;46109:101;;46221:12;46269:1;46250:15;:20;:46;;;;46295:1;46274:17;:22;46250:46;46246:85;;;46313:7;;;;;46246:85;46386:2;46365:18;;:23;;;;:::i;:::-;46347:15;:41;46343:115;;;46444:2;46423:18;;:23;;;;:::i;:::-;46405:41;;46343:115;46519:23;46606:1;46586:17;46564:18;;46546:15;:36;;;;:::i;:::-;46545:58;;;;:::i;:::-;:62;;;;:::i;:::-;46519:88;;46618:26;46647:36;46667:15;46647;:19;;:36;;;;:::i;:::-;46618:65;;46696:25;46724:21;46696:49;;46758:36;46775:18;46758:16;:36::i;:::-;46807:18;46828:44;46854:17;46828:21;:25;;:44;;;;:::i;:::-;46807:65;;46879:21;46903:55;46940:17;46903:32;46918:16;;46903:10;:14;;:32;;;;:::i;:::-;:36;;:55;;;;:::i;:::-;46879:79;;46969:23;46995:57;47034:17;46995:34;47010:18;;46995:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;46969:83;;47063:17;47083:51;47116:17;47083:28;47098:12;;47083:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;47063:71;;47147:23;47220:9;47202:15;47186:13;47173:10;:26;;;;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;47147:82;;47263:1;47242:18;:22;;;;47288:1;47269:16;:20;;;;47321:1;47300:18;:22;;;;47348:1;47333:12;:16;;;;47384:9;;;;;;;;;;;47376:23;;47407:9;47376:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47362:59;;;;;47454:15;;;;;;;;;;;47446:29;;47483:15;47446:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47432:71;;;;;47540:1;47522:15;:19;:42;;;;;47563:1;47545:15;:19;47522:42;47518:278;;;47581:46;47594:15;47611;47581:12;:46::i;:::-;47647:137;47680:18;47717:15;47751:18;;47647:137;;;;;;;;:::i;:::-;;;;;;;;47518:278;47830:13;;;;;;;;;;;47822:27;;47857:21;47822:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47808:75;;;;;46037:1854;;;;;;;;;;;46009:1882;:::o;23310:98::-;23368:7;23399:1;23395;:5;;;;:::i;:::-;23388:12;;23310:98;;;;:::o;23709:::-;23767:7;23798:1;23794;:5;;;;:::i;:::-;23787:12;;23709:98;;;;:::o;18837:125::-;;;;:::o;19566:124::-;;;;:::o;22953:98::-;23011:7;23042:1;23038;:5;;;;:::i;:::-;23031:12;;22953:98;;;;:::o;44889:589::-;45015:21;45053:1;45039:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45015:40;;45084:4;45066;45071:1;45066:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;45110:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45100:4;45105:1;45100:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;45145:62;45162:4;45177:15;45195:11;45145:8;:62::i;:::-;45246:15;:66;;;45327:11;45353:1;45397:4;45424;45444:15;45246:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44944:534;44889:589;:::o;45486:515::-;45634:62;45651:4;45666:15;45684:11;45634:8;:62::i;:::-;45739:15;:31;;;45778:9;45811:4;45831:11;45857:1;45900;45943:9;;;;;;;;;;;45967:15;45739:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45486:515;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:329::-;3905:6;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;3846:329;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::o;5159:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:118::-;5871:24;5889:5;5871:24;:::i;:::-;5866:3;5859:37;5784:118;;:::o;5908:222::-;6001:4;6039:2;6028:9;6024:18;6016:26;;6052:71;6120:1;6109:9;6105:17;6096:6;6052:71;:::i;:::-;5908:222;;;;:::o;6136:765::-;6222:6;6230;6238;6246;6295:3;6283:9;6274:7;6270:23;6266:33;6263:120;;;6302:79;;:::i;:::-;6263:120;6422:1;6447:53;6492:7;6483:6;6472:9;6468:22;6447:53;:::i;:::-;6437:63;;6393:117;6549:2;6575:53;6620:7;6611:6;6600:9;6596:22;6575:53;:::i;:::-;6565:63;;6520:118;6677:2;6703:53;6748:7;6739:6;6728:9;6724:22;6703:53;:::i;:::-;6693:63;;6648:118;6805:2;6831:53;6876:7;6867:6;6856:9;6852:22;6831:53;:::i;:::-;6821:63;;6776:118;6136:765;;;;;;;:::o;6907:86::-;6942:7;6982:4;6975:5;6971:16;6960:27;;6907:86;;;:::o;6999:112::-;7082:22;7098:5;7082:22;:::i;:::-;7077:3;7070:35;6999:112;;:::o;7117:214::-;7206:4;7244:2;7233:9;7229:18;7221:26;;7257:67;7321:1;7310:9;7306:17;7297:6;7257:67;:::i;:::-;7117:214;;;;:::o;7337:116::-;7407:21;7422:5;7407:21;:::i;:::-;7400:5;7397:32;7387:60;;7443:1;7440;7433:12;7387:60;7337:116;:::o;7459:133::-;7502:5;7540:6;7527:20;7518:29;;7556:30;7580:5;7556:30;:::i;:::-;7459:133;;;;:::o;7598:468::-;7663:6;7671;7720:2;7708:9;7699:7;7695:23;7691:32;7688:119;;;7726:79;;:::i;:::-;7688:119;7846:1;7871:53;7916:7;7907:6;7896:9;7892:22;7871:53;:::i;:::-;7861:63;;7817:117;7973:2;7999:50;8041:7;8032:6;8021:9;8017:22;7999:50;:::i;:::-;7989:60;;7944:115;7598:468;;;;;:::o;8072:474::-;8140:6;8148;8197:2;8185:9;8176:7;8172:23;8168:32;8165:119;;;8203:79;;:::i;:::-;8165:119;8323:1;8348:53;8393:7;8384:6;8373:9;8369:22;8348:53;:::i;:::-;8338:63;;8294:117;8450:2;8476:53;8521:7;8512:6;8501:9;8497:22;8476:53;:::i;:::-;8466:63;;8421:118;8072:474;;;;;:::o;8552:180::-;8600:77;8597:1;8590:88;8697:4;8694:1;8687:15;8721:4;8718:1;8711:15;8738:320;8782:6;8819:1;8813:4;8809:12;8799:22;;8866:1;8860:4;8856:12;8887:18;8877:81;;8943:4;8935:6;8931:17;8921:27;;8877:81;9005:2;8997:6;8994:14;8974:18;8971:38;8968:84;;;9024:18;;:::i;:::-;8968:84;8789:269;8738:320;;;:::o;9064:227::-;9204:34;9200:1;9192:6;9188:14;9181:58;9273:10;9268:2;9260:6;9256:15;9249:35;9064:227;:::o;9297:366::-;9439:3;9460:67;9524:2;9519:3;9460:67;:::i;:::-;9453:74;;9536:93;9625:3;9536:93;:::i;:::-;9654:2;9649:3;9645:12;9638:19;;9297:366;;;:::o;9669:419::-;9835:4;9873:2;9862:9;9858:18;9850:26;;9922:9;9916:4;9912:20;9908:1;9897:9;9893:17;9886:47;9950:131;10076:4;9950:131;:::i;:::-;9942:139;;9669:419;;;:::o;10094:182::-;10234:34;10230:1;10222:6;10218:14;10211:58;10094:182;:::o;10282:366::-;10424:3;10445:67;10509:2;10504:3;10445:67;:::i;:::-;10438:74;;10521:93;10610:3;10521:93;:::i;:::-;10639:2;10634:3;10630:12;10623:19;;10282:366;;;:::o;10654:419::-;10820:4;10858:2;10847:9;10843:18;10835:26;;10907:9;10901:4;10897:20;10893:1;10882:9;10878:17;10871:47;10935:131;11061:4;10935:131;:::i;:::-;10927:139;;10654:419;;;:::o;11079:180::-;11127:77;11124:1;11117:88;11224:4;11221:1;11214:15;11248:4;11245:1;11238:15;11265:305;11305:3;11324:20;11342:1;11324:20;:::i;:::-;11319:25;;11358:20;11376:1;11358:20;:::i;:::-;11353:25;;11512:1;11444:66;11440:74;11437:1;11434:81;11431:107;;;11518:18;;:::i;:::-;11431:107;11562:1;11559;11555:9;11548:16;;11265:305;;;;:::o;11576:164::-;11716:16;11712:1;11704:6;11700:14;11693:40;11576:164;:::o;11746:366::-;11888:3;11909:67;11973:2;11968:3;11909:67;:::i;:::-;11902:74;;11985:93;12074:3;11985:93;:::i;:::-;12103:2;12098:3;12094:12;12087:19;;11746:366;;;:::o;12118:419::-;12284:4;12322:2;12311:9;12307:18;12299:26;;12371:9;12365:4;12361:20;12357:1;12346:9;12342:17;12335:47;12399:131;12525:4;12399:131;:::i;:::-;12391:139;;12118:419;;;:::o;12543:244::-;12683:34;12679:1;12671:6;12667:14;12660:58;12752:27;12747:2;12739:6;12735:15;12728:52;12543:244;:::o;12793:366::-;12935:3;12956:67;13020:2;13015:3;12956:67;:::i;:::-;12949:74;;13032:93;13121:3;13032:93;:::i;:::-;13150:2;13145:3;13141:12;13134:19;;12793:366;;;:::o;13165:419::-;13331:4;13369:2;13358:9;13354:18;13346:26;;13418:9;13412:4;13408:20;13404:1;13393:9;13389:17;13382:47;13446:131;13572:4;13446:131;:::i;:::-;13438:139;;13165:419;;;:::o;13590:224::-;13730:34;13726:1;13718:6;13714:14;13707:58;13799:7;13794:2;13786:6;13782:15;13775:32;13590:224;:::o;13820:366::-;13962:3;13983:67;14047:2;14042:3;13983:67;:::i;:::-;13976:74;;14059:93;14148:3;14059:93;:::i;:::-;14177:2;14172:3;14168:12;14161:19;;13820:366;;;:::o;14192:419::-;14358:4;14396:2;14385:9;14381:18;14373:26;;14445:9;14439:4;14435:20;14431:1;14420:9;14416:17;14409:47;14473:131;14599:4;14473:131;:::i;:::-;14465:139;;14192:419;;;:::o;14617:227::-;14757:34;14753:1;14745:6;14741:14;14734:58;14826:10;14821:2;14813:6;14809:15;14802:35;14617:227;:::o;14850:366::-;14992:3;15013:67;15077:2;15072:3;15013:67;:::i;:::-;15006:74;;15089:93;15178:3;15089:93;:::i;:::-;15207:2;15202:3;15198:12;15191:19;;14850:366;;;:::o;15222:419::-;15388:4;15426:2;15415:9;15411:18;15403:26;;15475:9;15469:4;15465:20;15461:1;15450:9;15446:17;15439:47;15503:131;15629:4;15503:131;:::i;:::-;15495:139;;15222:419;;;:::o;15647:225::-;15787:34;15783:1;15775:6;15771:14;15764:58;15856:8;15851:2;15843:6;15839:15;15832:33;15647:225;:::o;15878:366::-;16020:3;16041:67;16105:2;16100:3;16041:67;:::i;:::-;16034:74;;16117:93;16206:3;16117:93;:::i;:::-;16235:2;16230:3;16226:12;16219:19;;15878:366;;;:::o;16250:419::-;16416:4;16454:2;16443:9;16439:18;16431:26;;16503:9;16497:4;16493:20;16489:1;16478:9;16474:17;16467:47;16531:131;16657:4;16531:131;:::i;:::-;16523:139;;16250:419;;;:::o;16675:223::-;16815:34;16811:1;16803:6;16799:14;16792:58;16884:6;16879:2;16871:6;16867:15;16860:31;16675:223;:::o;16904:366::-;17046:3;17067:67;17131:2;17126:3;17067:67;:::i;:::-;17060:74;;17143:93;17232:3;17143:93;:::i;:::-;17261:2;17256:3;17252:12;17245:19;;16904:366;;;:::o;17276:419::-;17442:4;17480:2;17469:9;17465:18;17457:26;;17529:9;17523:4;17519:20;17515:1;17504:9;17500:17;17493:47;17557:131;17683:4;17557:131;:::i;:::-;17549:139;;17276:419;;;:::o;17701:221::-;17841:34;17837:1;17829:6;17825:14;17818:58;17910:4;17905:2;17897:6;17893:15;17886:29;17701:221;:::o;17928:366::-;18070:3;18091:67;18155:2;18150:3;18091:67;:::i;:::-;18084:74;;18167:93;18256:3;18167:93;:::i;:::-;18285:2;18280:3;18276:12;18269:19;;17928:366;;;:::o;18300:419::-;18466:4;18504:2;18493:9;18489:18;18481:26;;18553:9;18547:4;18543:20;18539:1;18528:9;18524:17;18517:47;18581:131;18707:4;18581:131;:::i;:::-;18573:139;;18300:419;;;:::o;18725:224::-;18865:34;18861:1;18853:6;18849:14;18842:58;18934:7;18929:2;18921:6;18917:15;18910:32;18725:224;:::o;18955:366::-;19097:3;19118:67;19182:2;19177:3;19118:67;:::i;:::-;19111:74;;19194:93;19283:3;19194:93;:::i;:::-;19312:2;19307:3;19303:12;19296:19;;18955:366;;;:::o;19327:419::-;19493:4;19531:2;19520:9;19516:18;19508:26;;19580:9;19574:4;19570:20;19566:1;19555:9;19551:17;19544:47;19608:131;19734:4;19608:131;:::i;:::-;19600:139;;19327:419;;;:::o;19752:222::-;19892:34;19888:1;19880:6;19876:14;19869:58;19961:5;19956:2;19948:6;19944:15;19937:30;19752:222;:::o;19980:366::-;20122:3;20143:67;20207:2;20202:3;20143:67;:::i;:::-;20136:74;;20219:93;20308:3;20219:93;:::i;:::-;20337:2;20332:3;20328:12;20321:19;;19980:366;;;:::o;20352:419::-;20518:4;20556:2;20545:9;20541:18;20533:26;;20605:9;20599:4;20595:20;20591:1;20580:9;20576:17;20569:47;20633:131;20759:4;20633:131;:::i;:::-;20625:139;;20352:419;;;:::o;20777:172::-;20917:24;20913:1;20905:6;20901:14;20894:48;20777:172;:::o;20955:366::-;21097:3;21118:67;21182:2;21177:3;21118:67;:::i;:::-;21111:74;;21194:93;21283:3;21194:93;:::i;:::-;21312:2;21307:3;21303:12;21296:19;;20955:366;;;:::o;21327:419::-;21493:4;21531:2;21520:9;21516:18;21508:26;;21580:9;21574:4;21570:20;21566:1;21555:9;21551:17;21544:47;21608:131;21734:4;21608:131;:::i;:::-;21600:139;;21327:419;;;:::o;21752:297::-;21892:34;21888:1;21880:6;21876:14;21869:58;21961:34;21956:2;21948:6;21944:15;21937:59;22030:11;22025:2;22017:6;22013:15;22006:36;21752:297;:::o;22055:366::-;22197:3;22218:67;22282:2;22277:3;22218:67;:::i;:::-;22211:74;;22294:93;22383:3;22294:93;:::i;:::-;22412:2;22407:3;22403:12;22396:19;;22055:366;;;:::o;22427:419::-;22593:4;22631:2;22620:9;22616:18;22608:26;;22680:9;22674:4;22670:20;22666:1;22655:9;22651:17;22644:47;22708:131;22834:4;22708:131;:::i;:::-;22700:139;;22427:419;;;:::o;22852:240::-;22992:34;22988:1;22980:6;22976:14;22969:58;23061:23;23056:2;23048:6;23044:15;23037:48;22852:240;:::o;23098:366::-;23240:3;23261:67;23325:2;23320:3;23261:67;:::i;:::-;23254:74;;23337:93;23426:3;23337:93;:::i;:::-;23455:2;23450:3;23446:12;23439:19;;23098:366;;;:::o;23470:419::-;23636:4;23674:2;23663:9;23659:18;23651:26;;23723:9;23717:4;23713:20;23709:1;23698:9;23694:17;23687:47;23751:131;23877:4;23751:131;:::i;:::-;23743:139;;23470:419;;;:::o;23895:169::-;24035:21;24031:1;24023:6;24019:14;24012:45;23895:169;:::o;24070:366::-;24212:3;24233:67;24297:2;24292:3;24233:67;:::i;:::-;24226:74;;24309:93;24398:3;24309:93;:::i;:::-;24427:2;24422:3;24418:12;24411:19;;24070:366;;;:::o;24442:419::-;24608:4;24646:2;24635:9;24631:18;24623:26;;24695:9;24689:4;24685:20;24681:1;24670:9;24666:17;24659:47;24723:131;24849:4;24723:131;:::i;:::-;24715:139;;24442:419;;;:::o;24867:241::-;25007:34;25003:1;24995:6;24991:14;24984:58;25076:24;25071:2;25063:6;25059:15;25052:49;24867:241;:::o;25114:366::-;25256:3;25277:67;25341:2;25336:3;25277:67;:::i;:::-;25270:74;;25353:93;25442:3;25353:93;:::i;:::-;25471:2;25466:3;25462:12;25455:19;;25114:366;;;:::o;25486:419::-;25652:4;25690:2;25679:9;25675:18;25667:26;;25739:9;25733:4;25729:20;25725:1;25714:9;25710:17;25703:47;25767:131;25893:4;25767:131;:::i;:::-;25759:139;;25486:419;;;:::o;25911:348::-;25951:7;25974:20;25992:1;25974:20;:::i;:::-;25969:25;;26008:20;26026:1;26008:20;:::i;:::-;26003:25;;26196:1;26128:66;26124:74;26121:1;26118:81;26113:1;26106:9;26099:17;26095:105;26092:131;;;26203:18;;:::i;:::-;26092:131;26251:1;26248;26244:9;26233:20;;25911:348;;;;:::o;26265:180::-;26313:77;26310:1;26303:88;26410:4;26407:1;26400:15;26434:4;26431:1;26424:15;26451:185;26491:1;26508:20;26526:1;26508:20;:::i;:::-;26503:25;;26542:20;26560:1;26542:20;:::i;:::-;26537:25;;26581:1;26571:35;;26586:18;;:::i;:::-;26571:35;26628:1;26625;26621:9;26616:14;;26451:185;;;;:::o;26642:191::-;26682:4;26702:20;26720:1;26702:20;:::i;:::-;26697:25;;26736:20;26754:1;26736:20;:::i;:::-;26731:25;;26775:1;26772;26769:8;26766:34;;;26780:18;;:::i;:::-;26766:34;26825:1;26822;26818:9;26810:17;;26642:191;;;;:::o;26839:225::-;26979:34;26975:1;26967:6;26963:14;26956:58;27048:8;27043:2;27035:6;27031:15;27024:33;26839:225;:::o;27070:366::-;27212:3;27233:67;27297:2;27292:3;27233:67;:::i;:::-;27226:74;;27309:93;27398:3;27309:93;:::i;:::-;27427:2;27422:3;27418:12;27411:19;;27070:366;;;:::o;27442:419::-;27608:4;27646:2;27635:9;27631:18;27623:26;;27695:9;27689:4;27685:20;27681:1;27670:9;27666:17;27659:47;27723:131;27849:4;27723:131;:::i;:::-;27715:139;;27442:419;;;:::o;27867:147::-;27968:11;28005:3;27990:18;;27867:147;;;;:::o;28020:114::-;;:::o;28140:398::-;28299:3;28320:83;28401:1;28396:3;28320:83;:::i;:::-;28313:90;;28412:93;28501:3;28412:93;:::i;:::-;28530:1;28525:3;28521:11;28514:18;;28140:398;;;:::o;28544:379::-;28728:3;28750:147;28893:3;28750:147;:::i;:::-;28743:154;;28914:3;28907:10;;28544:379;;;:::o;28929:442::-;29078:4;29116:2;29105:9;29101:18;29093:26;;29129:71;29197:1;29186:9;29182:17;29173:6;29129:71;:::i;:::-;29210:72;29278:2;29267:9;29263:18;29254:6;29210:72;:::i;:::-;29292;29360:2;29349:9;29345:18;29336:6;29292:72;:::i;:::-;28929:442;;;;;;:::o;29377:180::-;29425:77;29422:1;29415:88;29522:4;29519:1;29512:15;29546:4;29543:1;29536:15;29563:180;29611:77;29608:1;29601:88;29708:4;29705:1;29698:15;29732:4;29729:1;29722:15;29749:143;29806:5;29837:6;29831:13;29822:22;;29853:33;29880:5;29853:33;:::i;:::-;29749:143;;;;:::o;29898:351::-;29968:6;30017:2;30005:9;29996:7;29992:23;29988:32;29985:119;;;30023:79;;:::i;:::-;29985:119;30143:1;30168:64;30224:7;30215:6;30204:9;30200:22;30168:64;:::i;:::-;30158:74;;30114:128;29898:351;;;;:::o;30255:85::-;30300:7;30329:5;30318:16;;30255:85;;;:::o;30346:158::-;30404:9;30437:61;30455:42;30464:32;30490:5;30464:32;:::i;:::-;30455:42;:::i;:::-;30437:61;:::i;:::-;30424:74;;30346:158;;;:::o;30510:147::-;30605:45;30644:5;30605:45;:::i;:::-;30600:3;30593:58;30510:147;;:::o;30663:114::-;30730:6;30764:5;30758:12;30748:22;;30663:114;;;:::o;30783:184::-;30882:11;30916:6;30911:3;30904:19;30956:4;30951:3;30947:14;30932:29;;30783:184;;;;:::o;30973:132::-;31040:4;31063:3;31055:11;;31093:4;31088:3;31084:14;31076:22;;30973:132;;;:::o;31111:108::-;31188:24;31206:5;31188:24;:::i;:::-;31183:3;31176:37;31111:108;;:::o;31225:179::-;31294:10;31315:46;31357:3;31349:6;31315:46;:::i;:::-;31393:4;31388:3;31384:14;31370:28;;31225:179;;;;:::o;31410:113::-;31480:4;31512;31507:3;31503:14;31495:22;;31410:113;;;:::o;31559:732::-;31678:3;31707:54;31755:5;31707:54;:::i;:::-;31777:86;31856:6;31851:3;31777:86;:::i;:::-;31770:93;;31887:56;31937:5;31887:56;:::i;:::-;31966:7;31997:1;31982:284;32007:6;32004:1;32001:13;31982:284;;;32083:6;32077:13;32110:63;32169:3;32154:13;32110:63;:::i;:::-;32103:70;;32196:60;32249:6;32196:60;:::i;:::-;32186:70;;32042:224;32029:1;32026;32022:9;32017:14;;31982:284;;;31986:14;32282:3;32275:10;;31683:608;;;31559:732;;;;:::o;32297:831::-;32560:4;32598:3;32587:9;32583:19;32575:27;;32612:71;32680:1;32669:9;32665:17;32656:6;32612:71;:::i;:::-;32693:80;32769:2;32758:9;32754:18;32745:6;32693:80;:::i;:::-;32820:9;32814:4;32810:20;32805:2;32794:9;32790:18;32783:48;32848:108;32951:4;32942:6;32848:108;:::i;:::-;32840:116;;32966:72;33034:2;33023:9;33019:18;33010:6;32966:72;:::i;:::-;33048:73;33116:3;33105:9;33101:19;33092:6;33048:73;:::i;:::-;32297:831;;;;;;;;:::o;33134:807::-;33383:4;33421:3;33410:9;33406:19;33398:27;;33435:71;33503:1;33492:9;33488:17;33479:6;33435:71;:::i;:::-;33516:72;33584:2;33573:9;33569:18;33560:6;33516:72;:::i;:::-;33598:80;33674:2;33663:9;33659:18;33650:6;33598:80;:::i;:::-;33688;33764:2;33753:9;33749:18;33740:6;33688:80;:::i;:::-;33778:73;33846:3;33835:9;33831:19;33822:6;33778:73;:::i;:::-;33861;33929:3;33918:9;33914:19;33905:6;33861:73;:::i;:::-;33134:807;;;;;;;;;:::o;33947:143::-;34004:5;34035:6;34029:13;34020:22;;34051:33;34078:5;34051:33;:::i;:::-;33947:143;;;;:::o;34096:663::-;34184:6;34192;34200;34249:2;34237:9;34228:7;34224:23;34220:32;34217:119;;;34255:79;;:::i;:::-;34217:119;34375:1;34400:64;34456:7;34447:6;34436:9;34432:22;34400:64;:::i;:::-;34390:74;;34346:128;34513:2;34539:64;34595:7;34586:6;34575:9;34571:22;34539:64;:::i;:::-;34529:74;;34484:129;34652:2;34678:64;34734:7;34725:6;34714:9;34710:22;34678:64;:::i;:::-;34668:74;;34623:129;34096:663;;;;;:::o

Swarm Source

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