ETH Price: $3,199.77 (-0.52%)

Token

Spooky Doge (SPOOGE)
 

Overview

Max Total Supply

100,000,000,000 SPOOGE

Holders

95

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
224,896,955.024251119115334144 SPOOGE

Value
$0.00
0xb9738c42897442dc035a40c2d7b2660c661d3efc
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:
SpookyDoge

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**

.▄▄ ·  ▄▄▄·            ▄ •▄  ▄· ▄▌    ·▄▄▄▄         ▄▄ • ▄▄▄ .
▐█ ▀. ▐█ ▄█▪     ▪     █▌▄▌▪▐█▪██▌    ██▪ ██ ▪     ▐█ ▀ ▪▀▄.▀·
▄▀▀▀█▄ ██▀· ▄█▀▄  ▄█▀▄ ▐▀▀▄·▐█▌▐█▪    ▐█· ▐█▌ ▄█▀▄ ▄█ ▀█▄▐▀▀▪▄
▐█▄▪▐█▐█▪·•▐█▌.▐▌▐█▌.▐▌▐█.█▌ ▐█▀·.    ██. ██ ▐█▌.▐▌▐█▄▪▐█▐█▄▄▌
 ▀▀▀▀ .▀    ▀█▄▀▪ ▀█▄▀▪·▀  ▀  ▀ •     ▀▀▀▀▀•  ▀█▄▀▪·▀▀▀▀  ▀▀▀ 

Telegram: https://t.me/spoogetoken
Website: https://spookydoge.xyz/
Twitter: https://twitter.com/spookydogeeth

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
pragma experimental ABIEncoderV2;

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

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

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

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

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

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

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

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

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

    bool private swapping;

    address public devWallet;

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

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

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

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

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

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("Spooky Doge", "SPOOGE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

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


        uint256 _buyDevFee = 10;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellDevFee = 35;
        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 100_000_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 15 / 1000; // 1.5% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 30 / 1000; // 3% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

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

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

        devWallet = address(0x211f805FBB8ebe5587DF135140739c844741EA26);

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                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 &&
            to == uniswapV2Pair &&
            !_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;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForDev = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev = (fees * sellDevFee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForDev = (fees * buyDevFee) / buyTotalFees;
            }

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

            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] = WETH;

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

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

        swapTokensForETH(contractBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"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":"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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280600b81526020017f53706f6f6b7920446f67650000000000000000000000000000000000000000008152506040518060400160405280600681526020017f53504f4f47450000000000000000000000000000000000000000000000000000815250816003908162000135919062000c89565b50806004908162000147919062000c89565b5050506200016a6200015e6200057160201b60201c565b6200057960201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200063f60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000dda565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200029a92919062000e1d565b6020604051808303816000875af1158015620002ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e0919062000dda565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200032860a05160016200063f60201b60201c565b6000600a9050600080602390506000806c01431e0fae6d7217caa000000090506103e8600f826200035a919062000e79565b62000366919062000ef3565b6008819055506103e8601e826200037e919062000e79565b6200038a919062000ef3565b600a81905550612710600582620003a2919062000e79565b620003ae919062000ef3565b60098190555084600d8190555083600e81905550600e54600d54620003d4919062000f2b565b600c819055508260108190555081601181905550601154601054620003fa919062000f2b565b600f8190555073211f805fbb8ebe5587df135140739c844741ea26600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000477620004696200072960201b60201c565b60016200075360201b60201c565b620004ac600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200075360201b60201c565b620004bf3060016200075360201b60201c565b620004d461dead60016200075360201b60201c565b620004f6620004e86200072960201b60201c565b60016200063f60201b60201c565b6200052b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200063f60201b60201c565b6200053e3060016200063f60201b60201c565b6200055361dead60016200063f60201b60201c565b6200056533826200088d60201b60201c565b505050505050620010c3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200064f6200057160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006756200072960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006c59062000fc7565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007636200057160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007896200072960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007d99062000fc7565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000881919062001006565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008f69062001073565b60405180910390fd5b620009136000838362000a0560201b60201c565b806002600082825462000927919062000f2b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200097e919062000f2b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009e59190620010a6565b60405180910390a362000a016000838362000a0a60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a9157607f821691505b60208210810362000aa75762000aa662000a49565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b117fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ad2565b62000b1d868362000ad2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b6a62000b6462000b5e8462000b35565b62000b3f565b62000b35565b9050919050565b6000819050919050565b62000b868362000b49565b62000b9e62000b958262000b71565b84845462000adf565b825550505050565b600090565b62000bb562000ba6565b62000bc281848462000b7b565b505050565b5b8181101562000bea5762000bde60008262000bab565b60018101905062000bc8565b5050565b601f82111562000c395762000c038162000aad565b62000c0e8462000ac2565b8101602085101562000c1e578190505b62000c3662000c2d8562000ac2565b83018262000bc7565b50505b505050565b600082821c905092915050565b600062000c5e6000198460080262000c3e565b1980831691505092915050565b600062000c79838362000c4b565b9150826002028217905092915050565b62000c948262000a0f565b67ffffffffffffffff81111562000cb05762000caf62000a1a565b5b62000cbc825462000a78565b62000cc982828562000bee565b600060209050601f83116001811462000d01576000841562000cec578287015190505b62000cf8858262000c6b565b86555062000d68565b601f19841662000d118662000aad565b60005b8281101562000d3b5784890151825560018201915060208501945060208101905062000d14565b8683101562000d5b578489015162000d57601f89168262000c4b565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000da28262000d75565b9050919050565b62000db48162000d95565b811462000dc057600080fd5b50565b60008151905062000dd48162000da9565b92915050565b60006020828403121562000df35762000df262000d70565b5b600062000e038482850162000dc3565b91505092915050565b62000e178162000d95565b82525050565b600060408201905062000e34600083018562000e0c565b62000e43602083018462000e0c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e868262000b35565b915062000e938362000b35565b925082820262000ea38162000b35565b9150828204841483151762000ebd5762000ebc62000e4a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f008262000b35565b915062000f0d8362000b35565b92508262000f205762000f1f62000ec4565b5b828204905092915050565b600062000f388262000b35565b915062000f458362000b35565b925082820190508082111562000f605762000f5f62000e4a565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000faf60208362000f66565b915062000fbc8262000f77565b602082019050919050565b6000602082019050818103600083015262000fe28162000fa0565b9050919050565b60008115159050919050565b620010008162000fe9565b82525050565b60006020820190506200101d600083018462000ff5565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200105b601f8362000f66565b9150620010688262001023565b602082019050919050565b600060208201905081810360008301526200108e816200104c565b9050919050565b620010a08162000b35565b82525050565b6000602082019050620010bd600083018462001095565b92915050565b60805160a051613c816200111a60003960008181610f0101528181611f6e015281816121b7015281816123c20152818161248d0152612577015260008181610b8101528181612aa20152612ac90152613c816000f3fe6080604052600436106102555760003560e01c80638a8c523c11610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e146108b3578063e2f45605146108f0578063f11a24d31461091b578063f2fde38b14610946578063f63743421461096f578063f8b45b051461099a5761025c565b8063c0246668146107ce578063c18bc195146107f7578063c8c8ebe414610820578063d257b34f1461084b578063d85ba063146108885761025c565b80639c3b4fdc116100fd5780639c3b4fdc146106e5578063a0d82dc514610710578063a9059cbb1461073b578063ad5c464814610778578063bbc0c742146107a35761025c565b80638a8c523c146106245780638da5cb5b1461063b5780638ea5220f14610666578063924de9b71461069157806395d89b41146106ba5761025c565b8063313ce567116101d25780636a486a8e116101965780636a486a8e146105265780636ddd17131461055157806370a082311461057c578063715018a6146105b9578063751039fc146105d05780637571336a146105fb5761025c565b8063313ce5671461043f57806349bd5a5e1461046a5780634a62bb65146104955780634fbee193146104c057806366ca9b83146104fd5761025c565b806318160ddd1161021957806318160ddd1461035a5780631816467f14610385578063203e727e146103ae57806323b872dd146103d757806327c8f835146104145761025c565b806302dbd8f81461026157806306fdde031461028a578063095ea7b3146102b557806310d5de53146102f25780631694505e1461032f5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612bbc565b6109c5565b005b34801561029657600080fd5b5061029f610aaf565b6040516102ac9190612c8c565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612d0c565b610b41565b6040516102e99190612d67565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190612d82565b610b5f565b6040516103269190612d67565b60405180910390f35b34801561033b57600080fd5b50610344610b7f565b6040516103519190612e0e565b60405180910390f35b34801561036657600080fd5b5061036f610ba3565b60405161037c9190612e38565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190612d82565b610bad565b005b3480156103ba57600080fd5b506103d560048036038101906103d09190612e53565b610ce9565b005b3480156103e357600080fd5b506103fe60048036038101906103f99190612e80565b610df8565b60405161040b9190612d67565b60405180910390f35b34801561042057600080fd5b50610429610ef0565b6040516104369190612ee2565b60405180910390f35b34801561044b57600080fd5b50610454610ef6565b6040516104619190612f19565b60405180910390f35b34801561047657600080fd5b5061047f610eff565b60405161048c9190612ee2565b60405180910390f35b3480156104a157600080fd5b506104aa610f23565b6040516104b79190612d67565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612d82565b610f36565b6040516104f49190612d67565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190612bbc565b610f8c565b005b34801561053257600080fd5b5061053b611076565b6040516105489190612e38565b60405180910390f35b34801561055d57600080fd5b5061056661107c565b6040516105739190612d67565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190612d82565b61108f565b6040516105b09190612e38565b60405180910390f35b3480156105c557600080fd5b506105ce6110d7565b005b3480156105dc57600080fd5b506105e561115f565b6040516105f29190612d67565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190612f60565b6111ff565b005b34801561063057600080fd5b506106396112d6565b005b34801561064757600080fd5b5061065061138a565b60405161065d9190612ee2565b60405180910390f35b34801561067257600080fd5b5061067b6113b4565b6040516106889190612ee2565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190612fa0565b6113da565b005b3480156106c657600080fd5b506106cf611473565b6040516106dc9190612c8c565b60405180910390f35b3480156106f157600080fd5b506106fa611505565b6040516107079190612e38565b60405180910390f35b34801561071c57600080fd5b5061072561150b565b6040516107329190612e38565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190612d0c565b611511565b60405161076f9190612d67565b60405180910390f35b34801561078457600080fd5b5061078d61152f565b60405161079a9190612ee2565b60405180910390f35b3480156107af57600080fd5b506107b8611555565b6040516107c59190612d67565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190612f60565b611568565b005b34801561080357600080fd5b5061081e60048036038101906108199190612e53565b61168d565b005b34801561082c57600080fd5b5061083561179c565b6040516108429190612e38565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d9190612e53565b6117a2565b60405161087f9190612d67565b60405180910390f35b34801561089457600080fd5b5061089d6118f7565b6040516108aa9190612e38565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d59190612fcd565b6118fd565b6040516108e79190612e38565b60405180910390f35b3480156108fc57600080fd5b50610905611984565b6040516109129190612e38565b60405180910390f35b34801561092757600080fd5b5061093061198a565b60405161093d9190612e38565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190612d82565b611990565b005b34801561097b57600080fd5b50610984611a87565b6040516109919190612e38565b60405180910390f35b3480156109a657600080fd5b506109af611a8d565b6040516109bc9190612e38565b60405180910390f35b6109cd611a93565b73ffffffffffffffffffffffffffffffffffffffff166109eb61138a565b73ffffffffffffffffffffffffffffffffffffffff1614610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3890613059565b60405180910390fd5b8160108190555080601181905550601154601054610a5f91906130a8565b600f819055506014600f541115610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa290613128565b60405180910390fd5b5050565b606060038054610abe90613177565b80601f0160208091040260200160405190810160405280929190818152602001828054610aea90613177565b8015610b375780601f10610b0c57610100808354040283529160200191610b37565b820191906000526020600020905b815481529060010190602001808311610b1a57829003601f168201915b5050505050905090565b6000610b55610b4e611a93565b8484611a9b565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610bb5611a93565b73ffffffffffffffffffffffffffffffffffffffff16610bd361138a565b73ffffffffffffffffffffffffffffffffffffffff1614610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2090613059565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cf1611a93565b73ffffffffffffffffffffffffffffffffffffffff16610d0f61138a565b73ffffffffffffffffffffffffffffffffffffffff1614610d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c90613059565b60405180910390fd5b670de0b6b3a76400006103e86001610d7b610ba3565b610d8591906131a8565b610d8f9190613219565b610d999190613219565b811015610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906132bc565b60405180910390fd5b670de0b6b3a764000081610def91906131a8565b60088190555050565b6000610e05848484611c64565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e50611a93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec79061334e565b60405180910390fd5b610ee485610edc611a93565b858403611a9b565b60019150509392505050565b61dead81565b60006012905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610f94611a93565b73ffffffffffffffffffffffffffffffffffffffff16610fb261138a565b73ffffffffffffffffffffffffffffffffffffffff1614611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90613059565b60405180910390fd5b81600d8190555080600e81905550600e54600d5461102691906130a8565b600c81905550600a600c541115611072576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611069906133ba565b60405180910390fd5b5050565b600f5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110df611a93565b73ffffffffffffffffffffffffffffffffffffffff166110fd61138a565b73ffffffffffffffffffffffffffffffffffffffff1614611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90613059565b60405180910390fd5b61115d60006125c3565b565b6000611169611a93565b73ffffffffffffffffffffffffffffffffffffffff1661118761138a565b73ffffffffffffffffffffffffffffffffffffffff16146111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490613059565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b611207611a93565b73ffffffffffffffffffffffffffffffffffffffff1661122561138a565b73ffffffffffffffffffffffffffffffffffffffff161461127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290613059565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6112de611a93565b73ffffffffffffffffffffffffffffffffffffffff166112fc61138a565b73ffffffffffffffffffffffffffffffffffffffff1614611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134990613059565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113e2611a93565b73ffffffffffffffffffffffffffffffffffffffff1661140061138a565b73ffffffffffffffffffffffffffffffffffffffff1614611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90613059565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461148290613177565b80601f01602080910402602001604051908101604052809291908181526020018280546114ae90613177565b80156114fb5780601f106114d0576101008083540402835291602001916114fb565b820191906000526020600020905b8154815290600101906020018083116114de57829003601f168201915b5050505050905090565b600d5481565b60105481565b600061152561151e611a93565b8484611c64565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60019054906101000a900460ff1681565b611570611a93565b73ffffffffffffffffffffffffffffffffffffffff1661158e61138a565b73ffffffffffffffffffffffffffffffffffffffff16146115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db90613059565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116819190612d67565b60405180910390a25050565b611695611a93565b73ffffffffffffffffffffffffffffffffffffffff166116b361138a565b73ffffffffffffffffffffffffffffffffffffffff1614611709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170090613059565b60405180910390fd5b670de0b6b3a76400006103e8600561171f610ba3565b61172991906131a8565b6117339190613219565b61173d9190613219565b81101561177f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117769061344c565b60405180910390fd5b670de0b6b3a76400008161179391906131a8565b600a8190555050565b60085481565b60006117ac611a93565b73ffffffffffffffffffffffffffffffffffffffff166117ca61138a565b73ffffffffffffffffffffffffffffffffffffffff1614611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181790613059565b60405180910390fd5b620186a0600161182e610ba3565b61183891906131a8565b6118429190613219565b821015611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b906134de565b60405180910390fd5b6103e86005611891610ba3565b61189b91906131a8565b6118a59190613219565b8211156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613570565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600e5481565b611998611a93565b73ffffffffffffffffffffffffffffffffffffffff166119b661138a565b73ffffffffffffffffffffffffffffffffffffffff1614611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390613059565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290613602565b60405180910390fd5b611a84816125c3565b50565b60115481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0190613694565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7090613726565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c579190612e38565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cca906137b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d399061384a565b60405180910390fd5b60008103611d5b57611d5683836000612689565b6125be565b600b60009054906101000a900460ff161561216557611d7861138a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611de65750611db661138a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e1f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e59575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e725750600660149054906101000a900460ff16155b1561216457600b60019054906101000a900460ff16611f6c57601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f2c5750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f62906138b6565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156120115750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120b85760085481111561205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290613948565b60405180910390fd5b600a546120678361108f565b8261207291906130a8565b11156120b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120aa906139b4565b60405180910390fd5b612163565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661216257600a546121158361108f565b8261212091906130a8565b1115612161576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612158906139b4565b60405180910390fd5b5b5b5b5b60006121703061108f565b9050600060095482101590508080156121955750600b60029054906101000a900460ff165b80156121ae5750600660149054906101000a900460ff16155b801561220557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b801561225b5750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122b15750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122f5576001600660146101000a81548160ff0219169083151502179055506122d9612908565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123ab5750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123b557600090505b600080600083156125ac577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614801561241d57506000600f54115b1561248b5761244a606461243c600f548a61295890919063ffffffff16565b61296e90919063ffffffff16565b9250600f546011548461245d91906131a8565b6124679190613219565b9150600f546010548461247a91906131a8565b6124849190613219565b9050612553565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156124e857506000600c54115b15612552576125156064612507600c548a61295890919063ffffffff16565b61296e90919063ffffffff16565b9250600c54600e548461252891906131a8565b6125329190613219565b9150600c54600d548461254591906131a8565b61254f9190613219565b90505b5b600083111561256857612567893085612689565b5b600082111561259d5761259c307f000000000000000000000000000000000000000000000000000000000000000084612689565b5b82876125a991906139d4565b96505b6125b7898989612689565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ef906137b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275e9061384a565b60405180910390fd5b612772838383612984565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ef90613a7a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461288b91906130a8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128ef9190612e38565b60405180910390a3612902848484612989565b50505050565b60006129133061108f565b9050600081036129235750612956565b601460095461293291906131a8565b81111561294b57601460095461294891906131a8565b90505b6129548161298e565b505b565b6000818361296691906131a8565b905092915050565b6000818361297c9190613219565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156129ab576129aa613a9a565b5b6040519080825280602002602001820160405280156129d95781602001602082028036833780820191505090505b50905030816000815181106129f1576129f0613ac9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a6257612a61613ac9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ac7307f000000000000000000000000000000000000000000000000000000000000000084611a9b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612b4b959493929190613bf1565b600060405180830381600087803b158015612b6557600080fd5b505af1158015612b79573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612b9981612b86565b8114612ba457600080fd5b50565b600081359050612bb681612b90565b92915050565b60008060408385031215612bd357612bd2612b81565b5b6000612be185828601612ba7565b9250506020612bf285828601612ba7565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c36578082015181840152602081019050612c1b565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c5e82612bfc565b612c688185612c07565b9350612c78818560208601612c18565b612c8181612c42565b840191505092915050565b60006020820190508181036000830152612ca68184612c53565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cd982612cae565b9050919050565b612ce981612cce565b8114612cf457600080fd5b50565b600081359050612d0681612ce0565b92915050565b60008060408385031215612d2357612d22612b81565b5b6000612d3185828601612cf7565b9250506020612d4285828601612ba7565b9150509250929050565b60008115159050919050565b612d6181612d4c565b82525050565b6000602082019050612d7c6000830184612d58565b92915050565b600060208284031215612d9857612d97612b81565b5b6000612da684828501612cf7565b91505092915050565b6000819050919050565b6000612dd4612dcf612dca84612cae565b612daf565b612cae565b9050919050565b6000612de682612db9565b9050919050565b6000612df882612ddb565b9050919050565b612e0881612ded565b82525050565b6000602082019050612e236000830184612dff565b92915050565b612e3281612b86565b82525050565b6000602082019050612e4d6000830184612e29565b92915050565b600060208284031215612e6957612e68612b81565b5b6000612e7784828501612ba7565b91505092915050565b600080600060608486031215612e9957612e98612b81565b5b6000612ea786828701612cf7565b9350506020612eb886828701612cf7565b9250506040612ec986828701612ba7565b9150509250925092565b612edc81612cce565b82525050565b6000602082019050612ef76000830184612ed3565b92915050565b600060ff82169050919050565b612f1381612efd565b82525050565b6000602082019050612f2e6000830184612f0a565b92915050565b612f3d81612d4c565b8114612f4857600080fd5b50565b600081359050612f5a81612f34565b92915050565b60008060408385031215612f7757612f76612b81565b5b6000612f8585828601612cf7565b9250506020612f9685828601612f4b565b9150509250929050565b600060208284031215612fb657612fb5612b81565b5b6000612fc484828501612f4b565b91505092915050565b60008060408385031215612fe457612fe3612b81565b5b6000612ff285828601612cf7565b925050602061300385828601612cf7565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613043602083612c07565b915061304e8261300d565b602082019050919050565b6000602082019050818103600083015261307281613036565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130b382612b86565b91506130be83612b86565b92508282019050808211156130d6576130d5613079565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613112601d83612c07565b915061311d826130dc565b602082019050919050565b6000602082019050818103600083015261314181613105565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061318f57607f821691505b6020821081036131a2576131a1613148565b5b50919050565b60006131b382612b86565b91506131be83612b86565b92508282026131cc81612b86565b915082820484148315176131e3576131e2613079565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061322482612b86565b915061322f83612b86565b92508261323f5761323e6131ea565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006132a6602f83612c07565b91506132b18261324a565b604082019050919050565b600060208201905081810360008301526132d581613299565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613338602883612c07565b9150613343826132dc565b604082019050919050565b600060208201905081810360008301526133678161332b565b9050919050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b60006133a4601d83612c07565b91506133af8261336e565b602082019050919050565b600060208201905081810360008301526133d381613397565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613436602483612c07565b9150613441826133da565b604082019050919050565b6000602082019050818103600083015261346581613429565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006134c8603583612c07565b91506134d38261346c565b604082019050919050565b600060208201905081810360008301526134f7816134bb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061355a603483612c07565b9150613565826134fe565b604082019050919050565b600060208201905081810360008301526135898161354d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135ec602683612c07565b91506135f782613590565b604082019050919050565b6000602082019050818103600083015261361b816135df565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061367e602483612c07565b915061368982613622565b604082019050919050565b600060208201905081810360008301526136ad81613671565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613710602283612c07565b915061371b826136b4565b604082019050919050565b6000602082019050818103600083015261373f81613703565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137a2602583612c07565b91506137ad82613746565b604082019050919050565b600060208201905081810360008301526137d181613795565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613834602383612c07565b915061383f826137d8565b604082019050919050565b6000602082019050818103600083015261386381613827565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006138a0601683612c07565b91506138ab8261386a565b602082019050919050565b600060208201905081810360008301526138cf81613893565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613932603583612c07565b915061393d826138d6565b604082019050919050565b6000602082019050818103600083015261396181613925565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061399e601383612c07565b91506139a982613968565b602082019050919050565b600060208201905081810360008301526139cd81613991565b9050919050565b60006139df82612b86565b91506139ea83612b86565b9250828203905081811115613a0257613a01613079565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a64602683612c07565b9150613a6f82613a08565b604082019050919050565b60006020820190508181036000830152613a9381613a57565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613b1d613b18613b1384613af8565b612daf565b612b86565b9050919050565b613b2d81613b02565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b6881612cce565b82525050565b6000613b7a8383613b5f565b60208301905092915050565b6000602082019050919050565b6000613b9e82613b33565b613ba88185613b3e565b9350613bb383613b4f565b8060005b83811015613be4578151613bcb8882613b6e565b9750613bd683613b86565b925050600181019050613bb7565b5085935050505092915050565b600060a082019050613c066000830188612e29565b613c136020830187613b24565b8181036040830152613c258186613b93565b9050613c346060830185612ed3565b613c416080830184612e29565b969550505050505056fea26469706673582212205f3ae3a8d1ed4d7a4a4b465d6688ebf0720b0760582a4a57e1e00124332eedf864736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102555760003560e01c80638a8c523c11610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e146108b3578063e2f45605146108f0578063f11a24d31461091b578063f2fde38b14610946578063f63743421461096f578063f8b45b051461099a5761025c565b8063c0246668146107ce578063c18bc195146107f7578063c8c8ebe414610820578063d257b34f1461084b578063d85ba063146108885761025c565b80639c3b4fdc116100fd5780639c3b4fdc146106e5578063a0d82dc514610710578063a9059cbb1461073b578063ad5c464814610778578063bbc0c742146107a35761025c565b80638a8c523c146106245780638da5cb5b1461063b5780638ea5220f14610666578063924de9b71461069157806395d89b41146106ba5761025c565b8063313ce567116101d25780636a486a8e116101965780636a486a8e146105265780636ddd17131461055157806370a082311461057c578063715018a6146105b9578063751039fc146105d05780637571336a146105fb5761025c565b8063313ce5671461043f57806349bd5a5e1461046a5780634a62bb65146104955780634fbee193146104c057806366ca9b83146104fd5761025c565b806318160ddd1161021957806318160ddd1461035a5780631816467f14610385578063203e727e146103ae57806323b872dd146103d757806327c8f835146104145761025c565b806302dbd8f81461026157806306fdde031461028a578063095ea7b3146102b557806310d5de53146102f25780631694505e1461032f5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612bbc565b6109c5565b005b34801561029657600080fd5b5061029f610aaf565b6040516102ac9190612c8c565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612d0c565b610b41565b6040516102e99190612d67565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190612d82565b610b5f565b6040516103269190612d67565b60405180910390f35b34801561033b57600080fd5b50610344610b7f565b6040516103519190612e0e565b60405180910390f35b34801561036657600080fd5b5061036f610ba3565b60405161037c9190612e38565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190612d82565b610bad565b005b3480156103ba57600080fd5b506103d560048036038101906103d09190612e53565b610ce9565b005b3480156103e357600080fd5b506103fe60048036038101906103f99190612e80565b610df8565b60405161040b9190612d67565b60405180910390f35b34801561042057600080fd5b50610429610ef0565b6040516104369190612ee2565b60405180910390f35b34801561044b57600080fd5b50610454610ef6565b6040516104619190612f19565b60405180910390f35b34801561047657600080fd5b5061047f610eff565b60405161048c9190612ee2565b60405180910390f35b3480156104a157600080fd5b506104aa610f23565b6040516104b79190612d67565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612d82565b610f36565b6040516104f49190612d67565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190612bbc565b610f8c565b005b34801561053257600080fd5b5061053b611076565b6040516105489190612e38565b60405180910390f35b34801561055d57600080fd5b5061056661107c565b6040516105739190612d67565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190612d82565b61108f565b6040516105b09190612e38565b60405180910390f35b3480156105c557600080fd5b506105ce6110d7565b005b3480156105dc57600080fd5b506105e561115f565b6040516105f29190612d67565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190612f60565b6111ff565b005b34801561063057600080fd5b506106396112d6565b005b34801561064757600080fd5b5061065061138a565b60405161065d9190612ee2565b60405180910390f35b34801561067257600080fd5b5061067b6113b4565b6040516106889190612ee2565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190612fa0565b6113da565b005b3480156106c657600080fd5b506106cf611473565b6040516106dc9190612c8c565b60405180910390f35b3480156106f157600080fd5b506106fa611505565b6040516107079190612e38565b60405180910390f35b34801561071c57600080fd5b5061072561150b565b6040516107329190612e38565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190612d0c565b611511565b60405161076f9190612d67565b60405180910390f35b34801561078457600080fd5b5061078d61152f565b60405161079a9190612ee2565b60405180910390f35b3480156107af57600080fd5b506107b8611555565b6040516107c59190612d67565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190612f60565b611568565b005b34801561080357600080fd5b5061081e60048036038101906108199190612e53565b61168d565b005b34801561082c57600080fd5b5061083561179c565b6040516108429190612e38565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d9190612e53565b6117a2565b60405161087f9190612d67565b60405180910390f35b34801561089457600080fd5b5061089d6118f7565b6040516108aa9190612e38565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d59190612fcd565b6118fd565b6040516108e79190612e38565b60405180910390f35b3480156108fc57600080fd5b50610905611984565b6040516109129190612e38565b60405180910390f35b34801561092757600080fd5b5061093061198a565b60405161093d9190612e38565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190612d82565b611990565b005b34801561097b57600080fd5b50610984611a87565b6040516109919190612e38565b60405180910390f35b3480156109a657600080fd5b506109af611a8d565b6040516109bc9190612e38565b60405180910390f35b6109cd611a93565b73ffffffffffffffffffffffffffffffffffffffff166109eb61138a565b73ffffffffffffffffffffffffffffffffffffffff1614610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3890613059565b60405180910390fd5b8160108190555080601181905550601154601054610a5f91906130a8565b600f819055506014600f541115610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa290613128565b60405180910390fd5b5050565b606060038054610abe90613177565b80601f0160208091040260200160405190810160405280929190818152602001828054610aea90613177565b8015610b375780601f10610b0c57610100808354040283529160200191610b37565b820191906000526020600020905b815481529060010190602001808311610b1a57829003601f168201915b5050505050905090565b6000610b55610b4e611a93565b8484611a9b565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610bb5611a93565b73ffffffffffffffffffffffffffffffffffffffff16610bd361138a565b73ffffffffffffffffffffffffffffffffffffffff1614610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2090613059565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cf1611a93565b73ffffffffffffffffffffffffffffffffffffffff16610d0f61138a565b73ffffffffffffffffffffffffffffffffffffffff1614610d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c90613059565b60405180910390fd5b670de0b6b3a76400006103e86001610d7b610ba3565b610d8591906131a8565b610d8f9190613219565b610d999190613219565b811015610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906132bc565b60405180910390fd5b670de0b6b3a764000081610def91906131a8565b60088190555050565b6000610e05848484611c64565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e50611a93565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec79061334e565b60405180910390fd5b610ee485610edc611a93565b858403611a9b565b60019150509392505050565b61dead81565b60006012905090565b7f000000000000000000000000e9448d141dc1f6b04032a6abc5b9f72bf48fbc5281565b600b60009054906101000a900460ff1681565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610f94611a93565b73ffffffffffffffffffffffffffffffffffffffff16610fb261138a565b73ffffffffffffffffffffffffffffffffffffffff1614611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90613059565b60405180910390fd5b81600d8190555080600e81905550600e54600d5461102691906130a8565b600c81905550600a600c541115611072576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611069906133ba565b60405180910390fd5b5050565b600f5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110df611a93565b73ffffffffffffffffffffffffffffffffffffffff166110fd61138a565b73ffffffffffffffffffffffffffffffffffffffff1614611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90613059565b60405180910390fd5b61115d60006125c3565b565b6000611169611a93565b73ffffffffffffffffffffffffffffffffffffffff1661118761138a565b73ffffffffffffffffffffffffffffffffffffffff16146111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490613059565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b611207611a93565b73ffffffffffffffffffffffffffffffffffffffff1661122561138a565b73ffffffffffffffffffffffffffffffffffffffff161461127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290613059565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6112de611a93565b73ffffffffffffffffffffffffffffffffffffffff166112fc61138a565b73ffffffffffffffffffffffffffffffffffffffff1614611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134990613059565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113e2611a93565b73ffffffffffffffffffffffffffffffffffffffff1661140061138a565b73ffffffffffffffffffffffffffffffffffffffff1614611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90613059565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461148290613177565b80601f01602080910402602001604051908101604052809291908181526020018280546114ae90613177565b80156114fb5780601f106114d0576101008083540402835291602001916114fb565b820191906000526020600020905b8154815290600101906020018083116114de57829003601f168201915b5050505050905090565b600d5481565b60105481565b600061152561151e611a93565b8484611c64565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60019054906101000a900460ff1681565b611570611a93565b73ffffffffffffffffffffffffffffffffffffffff1661158e61138a565b73ffffffffffffffffffffffffffffffffffffffff16146115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db90613059565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116819190612d67565b60405180910390a25050565b611695611a93565b73ffffffffffffffffffffffffffffffffffffffff166116b361138a565b73ffffffffffffffffffffffffffffffffffffffff1614611709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170090613059565b60405180910390fd5b670de0b6b3a76400006103e8600561171f610ba3565b61172991906131a8565b6117339190613219565b61173d9190613219565b81101561177f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117769061344c565b60405180910390fd5b670de0b6b3a76400008161179391906131a8565b600a8190555050565b60085481565b60006117ac611a93565b73ffffffffffffffffffffffffffffffffffffffff166117ca61138a565b73ffffffffffffffffffffffffffffffffffffffff1614611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181790613059565b60405180910390fd5b620186a0600161182e610ba3565b61183891906131a8565b6118429190613219565b821015611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b906134de565b60405180910390fd5b6103e86005611891610ba3565b61189b91906131a8565b6118a59190613219565b8211156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613570565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600e5481565b611998611a93565b73ffffffffffffffffffffffffffffffffffffffff166119b661138a565b73ffffffffffffffffffffffffffffffffffffffff1614611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390613059565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290613602565b60405180910390fd5b611a84816125c3565b50565b60115481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0190613694565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7090613726565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c579190612e38565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cca906137b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d399061384a565b60405180910390fd5b60008103611d5b57611d5683836000612689565b6125be565b600b60009054906101000a900460ff161561216557611d7861138a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611de65750611db661138a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e1f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e59575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e725750600660149054906101000a900460ff16155b1561216457600b60019054906101000a900460ff16611f6c57601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f2c5750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f62906138b6565b60405180910390fd5b5b7f000000000000000000000000e9448d141dc1f6b04032a6abc5b9f72bf48fbc5273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156120115750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120b85760085481111561205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290613948565b60405180910390fd5b600a546120678361108f565b8261207291906130a8565b11156120b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120aa906139b4565b60405180910390fd5b612163565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661216257600a546121158361108f565b8261212091906130a8565b1115612161576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612158906139b4565b60405180910390fd5b5b5b5b5b60006121703061108f565b9050600060095482101590508080156121955750600b60029054906101000a900460ff165b80156121ae5750600660149054906101000a900460ff16155b801561220557507f000000000000000000000000e9448d141dc1f6b04032a6abc5b9f72bf48fbc5273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b801561225b5750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122b15750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122f5576001600660146101000a81548160ff0219169083151502179055506122d9612908565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123ab5750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123b557600090505b600080600083156125ac577f000000000000000000000000e9448d141dc1f6b04032a6abc5b9f72bf48fbc5273ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614801561241d57506000600f54115b1561248b5761244a606461243c600f548a61295890919063ffffffff16565b61296e90919063ffffffff16565b9250600f546011548461245d91906131a8565b6124679190613219565b9150600f546010548461247a91906131a8565b6124849190613219565b9050612553565b7f000000000000000000000000e9448d141dc1f6b04032a6abc5b9f72bf48fbc5273ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156124e857506000600c54115b15612552576125156064612507600c548a61295890919063ffffffff16565b61296e90919063ffffffff16565b9250600c54600e548461252891906131a8565b6125329190613219565b9150600c54600d548461254591906131a8565b61254f9190613219565b90505b5b600083111561256857612567893085612689565b5b600082111561259d5761259c307f000000000000000000000000e9448d141dc1f6b04032a6abc5b9f72bf48fbc5284612689565b5b82876125a991906139d4565b96505b6125b7898989612689565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ef906137b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275e9061384a565b60405180910390fd5b612772838383612984565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ef90613a7a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461288b91906130a8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128ef9190612e38565b60405180910390a3612902848484612989565b50505050565b60006129133061108f565b9050600081036129235750612956565b601460095461293291906131a8565b81111561294b57601460095461294891906131a8565b90505b6129548161298e565b505b565b6000818361296691906131a8565b905092915050565b6000818361297c9190613219565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156129ab576129aa613a9a565b5b6040519080825280602002602001820160405280156129d95781602001602082028036833780820191505090505b50905030816000815181106129f1576129f0613ac9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a6257612a61613ac9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ac7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a9b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612b4b959493929190613bf1565b600060405180830381600087803b158015612b6557600080fd5b505af1158015612b79573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612b9981612b86565b8114612ba457600080fd5b50565b600081359050612bb681612b90565b92915050565b60008060408385031215612bd357612bd2612b81565b5b6000612be185828601612ba7565b9250506020612bf285828601612ba7565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c36578082015181840152602081019050612c1b565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c5e82612bfc565b612c688185612c07565b9350612c78818560208601612c18565b612c8181612c42565b840191505092915050565b60006020820190508181036000830152612ca68184612c53565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cd982612cae565b9050919050565b612ce981612cce565b8114612cf457600080fd5b50565b600081359050612d0681612ce0565b92915050565b60008060408385031215612d2357612d22612b81565b5b6000612d3185828601612cf7565b9250506020612d4285828601612ba7565b9150509250929050565b60008115159050919050565b612d6181612d4c565b82525050565b6000602082019050612d7c6000830184612d58565b92915050565b600060208284031215612d9857612d97612b81565b5b6000612da684828501612cf7565b91505092915050565b6000819050919050565b6000612dd4612dcf612dca84612cae565b612daf565b612cae565b9050919050565b6000612de682612db9565b9050919050565b6000612df882612ddb565b9050919050565b612e0881612ded565b82525050565b6000602082019050612e236000830184612dff565b92915050565b612e3281612b86565b82525050565b6000602082019050612e4d6000830184612e29565b92915050565b600060208284031215612e6957612e68612b81565b5b6000612e7784828501612ba7565b91505092915050565b600080600060608486031215612e9957612e98612b81565b5b6000612ea786828701612cf7565b9350506020612eb886828701612cf7565b9250506040612ec986828701612ba7565b9150509250925092565b612edc81612cce565b82525050565b6000602082019050612ef76000830184612ed3565b92915050565b600060ff82169050919050565b612f1381612efd565b82525050565b6000602082019050612f2e6000830184612f0a565b92915050565b612f3d81612d4c565b8114612f4857600080fd5b50565b600081359050612f5a81612f34565b92915050565b60008060408385031215612f7757612f76612b81565b5b6000612f8585828601612cf7565b9250506020612f9685828601612f4b565b9150509250929050565b600060208284031215612fb657612fb5612b81565b5b6000612fc484828501612f4b565b91505092915050565b60008060408385031215612fe457612fe3612b81565b5b6000612ff285828601612cf7565b925050602061300385828601612cf7565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613043602083612c07565b915061304e8261300d565b602082019050919050565b6000602082019050818103600083015261307281613036565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130b382612b86565b91506130be83612b86565b92508282019050808211156130d6576130d5613079565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613112601d83612c07565b915061311d826130dc565b602082019050919050565b6000602082019050818103600083015261314181613105565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061318f57607f821691505b6020821081036131a2576131a1613148565b5b50919050565b60006131b382612b86565b91506131be83612b86565b92508282026131cc81612b86565b915082820484148315176131e3576131e2613079565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061322482612b86565b915061322f83612b86565b92508261323f5761323e6131ea565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006132a6602f83612c07565b91506132b18261324a565b604082019050919050565b600060208201905081810360008301526132d581613299565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613338602883612c07565b9150613343826132dc565b604082019050919050565b600060208201905081810360008301526133678161332b565b9050919050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b60006133a4601d83612c07565b91506133af8261336e565b602082019050919050565b600060208201905081810360008301526133d381613397565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613436602483612c07565b9150613441826133da565b604082019050919050565b6000602082019050818103600083015261346581613429565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006134c8603583612c07565b91506134d38261346c565b604082019050919050565b600060208201905081810360008301526134f7816134bb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061355a603483612c07565b9150613565826134fe565b604082019050919050565b600060208201905081810360008301526135898161354d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135ec602683612c07565b91506135f782613590565b604082019050919050565b6000602082019050818103600083015261361b816135df565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061367e602483612c07565b915061368982613622565b604082019050919050565b600060208201905081810360008301526136ad81613671565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613710602283612c07565b915061371b826136b4565b604082019050919050565b6000602082019050818103600083015261373f81613703565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137a2602583612c07565b91506137ad82613746565b604082019050919050565b600060208201905081810360008301526137d181613795565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613834602383612c07565b915061383f826137d8565b604082019050919050565b6000602082019050818103600083015261386381613827565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006138a0601683612c07565b91506138ab8261386a565b602082019050919050565b600060208201905081810360008301526138cf81613893565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613932603583612c07565b915061393d826138d6565b604082019050919050565b6000602082019050818103600083015261396181613925565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061399e601383612c07565b91506139a982613968565b602082019050919050565b600060208201905081810360008301526139cd81613991565b9050919050565b60006139df82612b86565b91506139ea83612b86565b9250828203905081811115613a0257613a01613079565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a64602683612c07565b9150613a6f82613a08565b604082019050919050565b60006020820190508181036000830152613a9381613a57565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613b1d613b18613b1384613af8565b612daf565b612b86565b9050919050565b613b2d81613b02565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b6881612cce565b82525050565b6000613b7a8383613b5f565b60208301905092915050565b6000602082019050919050565b6000613b9e82613b33565b613ba88185613b3e565b9350613bb383613b4f565b8060005b83811015613be4578151613bcb8882613b6e565b9750613bd683613b86565b925050600181019050613bb7565b5085935050505092915050565b600060a082019050613c066000830188612e29565b613c136020830187613b24565b8181036040830152613c258186613b93565b9050613c346060830185612ed3565b613c416080830184612e29565b969550505050505056fea26469706673582212205f3ae3a8d1ed4d7a4a4b465d6688ebf0720b0760582a4a57e1e00124332eedf864736f6c63430008110033

Deployed Bytecode Sourcemap

24146:10829:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29517:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9002:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11169:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25111:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24226:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10122:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30033:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28280:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11820:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24329:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9964:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24284:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24640:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30232:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29198:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24864:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24720:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10293:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2237:103;;;;;;;;;;;;;:::i;:::-;;27584:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28827:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27420:112;;;;;;;;;;;;;:::i;:::-;;1586:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24492:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29090:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9221:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24794:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24899:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10633:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24389:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24680:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29843:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28563:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24525:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27775:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24760:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10871:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24567:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24825:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2495:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24931:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24607:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29517:318;1817:12;:10;:12::i;:::-;1806:23;;:7;:5;:7::i;:::-;:23;;;1798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29649:7:::1;29636:10;:20;;;;29686:13;29667:16;:32;;;;29739:16;;29726:10;;:29;;;;:::i;:::-;29710:13;:45;;;;29791:2;29774:13;;:19;;29766:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29517:318:::0;;:::o;9002:100::-;9056:13;9089:5;9082:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9002:100;:::o;11169:169::-;11252:4;11269:39;11278:12;:10;:12::i;:::-;11292:7;11301:6;11269:8;:39::i;:::-;11326:4;11319:11;;11169:169;;;;:::o;25111:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;24226:51::-;;;:::o;10122:108::-;10183:7;10210:12;;10203:19;;10122:108;:::o;30033:189::-;1817:12;:10;:12::i;:::-;1806:23;;:7;:5;:7::i;:::-;:23;;;1798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30169:9:::1;;;;;;;;;;;30138:41;;30155:12;30138:41;;;;;;;;;;;;30202:12;30190:9;;:24;;;;;;;;;;;;;;;;;;30033:189:::0;:::o;28280:275::-;1817:12;:10;:12::i;:::-;1806:23;;:7;:5;:7::i;:::-;:23;;;1798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28417:4:::1;28409;28404:1;28388:13;:11;:13::i;:::-;:17;;;;:::i;:::-;28387:26;;;;:::i;:::-;28386:35;;;;:::i;:::-;28376:6;:45;;28354:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;28540:6;28530;:17;;;;:::i;:::-;28507:20;:40;;;;28280:275:::0;:::o;11820:492::-;11960:4;11977:36;11987:6;11995:9;12006:6;11977:9;:36::i;:::-;12026:24;12053:11;:19;12065:6;12053:19;;;;;;;;;;;;;;;:33;12073:12;:10;:12::i;:::-;12053:33;;;;;;;;;;;;;;;;12026:60;;12125:6;12105:16;:26;;12097:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12212:57;12221:6;12229:12;:10;:12::i;:::-;12262:6;12243:16;:25;12212:8;:57::i;:::-;12300:4;12293:11;;;11820:492;;;;;:::o;24329:53::-;24375:6;24329:53;:::o;9964:93::-;10022:5;10047:2;10040:9;;9964:93;:::o;24284:38::-;;;:::o;24640:33::-;;;;;;;;;;;;;:::o;30232:126::-;30298:4;30322:19;:28;30342:7;30322:28;;;;;;;;;;;;;;;;;;;;;;;;;30315:35;;30232:126;;;:::o;29198:311::-;1817:12;:10;:12::i;:::-;1806:23;;:7;:5;:7::i;:::-;:23;;;1798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29328:7:::1;29316:9;:19;;;;29364:13;29346:15;:31;;;;29415:15;;29403:9;;:27;;;;:::i;:::-;29388:12;:42;;;;29465:2;29449:12;;:18;;29441:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;29198:311:::0;;:::o;24864:28::-;;;;:::o;24720:31::-;;;;;;;;;;;;;:::o;10293:127::-;10367:7;10394:9;:18;10404:7;10394:18;;;;;;;;;;;;;;;;10387:25;;10293:127;;;:::o;2237:103::-;1817:12;:10;:12::i;:::-;1806:23;;:7;:5;:7::i;:::-;:23;;;1798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2302:30:::1;2329:1;2302:18;:30::i;:::-;2237:103::o:0;27584:121::-;27636:4;1817:12;:10;:12::i;:::-;1806:23;;:7;:5;:7::i;:::-;:23;;;1798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27670:5:::1;27653:14;;:22;;;;;;;;;;;;;;;;;;27693:4;27686:11;;27584:121:::0;:::o;28827:167::-;1817:12;:10;:12::i;:::-;1806:23;;:7;:5;:7::i;:::-;:23;;;1798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28982:4:::1;28940:31;:39;28972:6;28940:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;28827:167:::0;;:::o;27420:112::-;1817:12;:10;:12::i;:::-;1806:23;;:7;:5;:7::i;:::-;:23;;;1798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27491:4:::1;27475:13;;:20;;;;;;;;;;;;;;;;;;27520:4;27506:11;;:18;;;;;;;;;;;;;;;;;;27420:112::o:0;1586:87::-;1632:7;1659:6;;;;;;;;;;;1652:13;;1586:87;:::o;24492:24::-;;;;;;;;;;;;;:::o;29090:100::-;1817:12;:10;:12::i;:::-;1806:23;;:7;:5;:7::i;:::-;:23;;;1798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29175:7:::1;29161:11;;:21;;;;;;;;;;;;;;;;;;29090:100:::0;:::o;9221:104::-;9277:13;9310:7;9303:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9221:104;:::o;24794:24::-;;;;:::o;24899:25::-;;;;:::o;10633:175::-;10719:4;10736:42;10746:12;:10;:12::i;:::-;10760:9;10771:6;10736:9;:42::i;:::-;10796:4;10789:11;;10633:175;;;;:::o;24389:64::-;;;;;;;;;;;;;:::o;24680:33::-;;;;;;;;;;;;;:::o;29843:182::-;1817:12;:10;:12::i;:::-;1806:23;;:7;:5;:7::i;:::-;:23;;;1798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29959:8:::1;29928:19;:28;29948:7;29928:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;29999:7;29983:34;;;30008:8;29983:34;;;;;;:::i;:::-;;;;;;;;29843:182:::0;;:::o;28563:256::-;1817:12;:10;:12::i;:::-;1806:23;;:7;:5;:7::i;:::-;:23;;;1798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28703:4:::1;28695;28690:1;28674:13;:11;:13::i;:::-;:17;;;;:::i;:::-;28673:26;;;;:::i;:::-;28672:35;;;;:::i;:::-;28662:6;:45;;28640:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;28804:6;28794;:17;;;;:::i;:::-;28782:9;:29;;;;28563:256:::0;:::o;24525:35::-;;;;:::o;27775:497::-;27883:4;1817:12;:10;:12::i;:::-;1806:23;;:7;:5;:7::i;:::-;:23;;;1798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27962:6:::1;27957:1;27941:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27940:28;;;;:::i;:::-;27927:9;:41;;27905:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;28117:4;28112:1;28096:13;:11;:13::i;:::-;:17;;;;:::i;:::-;28095:26;;;;:::i;:::-;28082:9;:39;;28060:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;28233:9;28212:18;:30;;;;28260:4;28253:11;;27775:497:::0;;;:::o;24760:27::-;;;;:::o;10871:151::-;10960:7;10987:11;:18;10999:5;10987:18;;;;;;;;;;;;;;;:27;11006:7;10987:27;;;;;;;;;;;;;;;;10980:34;;10871:151;;;;:::o;24567:33::-;;;;:::o;24825:30::-;;;;:::o;2495:201::-;1817:12;:10;:12::i;:::-;1806:23;;:7;:5;:7::i;:::-;:23;;;1798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2604:1:::1;2584:22;;:8;:22;;::::0;2576:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2660:28;2679:8;2660:18;:28::i;:::-;2495:201:::0;:::o;24931:31::-;;;;:::o;24607:24::-;;;;:::o;960:98::-;1013:7;1040:10;1033:17;;960:98;:::o;14661:380::-;14814:1;14797:19;;:5;:19;;;14789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14895:1;14876:21;;:7;:21;;;14868:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14979:6;14949:11;:18;14961:5;14949:18;;;;;;;;;;;;;;;:27;14968:7;14949:27;;;;;;;;;;;;;;;:36;;;;15017:7;15001:32;;15010:5;15001:32;;;15026:6;15001:32;;;;;;:::i;:::-;;;;;;;;14661:380;;;:::o;30366:3679::-;30514:1;30498:18;;:4;:18;;;30490:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30591:1;30577:16;;:2;:16;;;30569:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30660:1;30650:6;:11;30646:93;;30678:28;30694:4;30700:2;30704:1;30678:15;:28::i;:::-;30721:7;;30646:93;30755:14;;;;;;;;;;;30751:1430;;;30816:7;:5;:7::i;:::-;30808:15;;:4;:15;;;;:49;;;;;30850:7;:5;:7::i;:::-;30844:13;;:2;:13;;;;30808:49;:86;;;;;30892:1;30878:16;;:2;:16;;;;30808:86;:128;;;;;30929:6;30915:21;;:2;:21;;;;30808:128;:158;;;;;30958:8;;;;;;;;;;;30957:9;30808:158;30786:1384;;;31006:13;;;;;;;;;;;31001:223;;31078:19;:25;31098:4;31078:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;31107:19;:23;31127:2;31107:23;;;;;;;;;;;;;;;;;;;;;;;;;31078:52;31044:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;31001:223;31438:13;31430:21;;:4;:21;;;:82;;;;;31477:31;:35;31509:2;31477:35;;;;;;;;;;;;;;;;;;;;;;;;;31476:36;31430:82;31404:751;;;31599:20;;31589:6;:30;;31555:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;31807:9;;31790:13;31800:2;31790:9;:13::i;:::-;31781:6;:22;;;;:::i;:::-;:35;;31747:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;31404:751;;;31935:31;:35;31967:2;31935:35;;;;;;;;;;;;;;;;;;;;;;;;;31930:225;;32055:9;;32038:13;32048:2;32038:9;:13::i;:::-;32029:6;:22;;;;:::i;:::-;:35;;31995:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;31930:225;31404:751;30786:1384;30751:1430;32193:28;32224:24;32242:4;32224:9;:24::i;:::-;32193:55;;32261:12;32300:18;;32276:20;:42;;32261:57;;32349:7;:35;;;;;32373:11;;;;;;;;;;;32349:35;:61;;;;;32402:8;;;;;;;;;;;32401:9;32349:61;:97;;;;;32433:13;32427:19;;:2;:19;;;32349:97;:140;;;;;32464:19;:25;32484:4;32464:25;;;;;;;;;;;;;;;;;;;;;;;;;32463:26;32349:140;:181;;;;;32507:19;:23;32527:2;32507:23;;;;;;;;;;;;;;;;;;;;;;;;;32506:24;32349:181;32331:313;;;32568:4;32557:8;;:15;;;;;;;;;;;;;;;;;;32589:10;:8;:10::i;:::-;32627:5;32616:8;;:16;;;;;;;;;;;;;;;;;;32331:313;32656:12;32672:8;;;;;;;;;;;32671:9;32656:24;;32782:19;:25;32802:4;32782:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;32811:19;:23;32831:2;32811:23;;;;;;;;;;;;;;;;;;;;;;;;;32782:52;32778:100;;;32861:5;32851:15;;32778:100;32890:12;32917:26;32958:20;33071:7;33067:925;;;33129:13;33123:19;;:2;:19;;;:40;;;;;33162:1;33146:13;;:17;33123:40;33119:583;;;33191:34;33221:3;33191:25;33202:13;;33191:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;33184:41;;33293:13;;33273:16;;33266:4;:23;;;;:::i;:::-;33265:41;;;;:::i;:::-;33244:62;;33362:13;;33348:10;;33341:4;:17;;;;:::i;:::-;33340:35;;;;:::i;:::-;33325:50;;33119:583;;;33445:13;33437:21;;:4;:21;;;:41;;;;;33477:1;33462:12;;:16;33437:41;33433:269;;;33506:33;33535:3;33506:24;33517:12;;33506:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;33499:40;;33606:12;;33587:15;;33580:4;:22;;;;:::i;:::-;33579:39;;;;:::i;:::-;33558:60;;33674:12;;33661:9;;33654:4;:16;;;;:::i;:::-;33653:33;;;;:::i;:::-;33638:48;;33433:269;33119:583;33728:1;33722:4;:7;33718:90;;;33750:42;33766:4;33780;33787;33750:15;:42::i;:::-;33718:90;33847:1;33826:18;:22;33822:128;;;33869:65;33893:4;33900:13;33915:18;33869:15;:65::i;:::-;33822:128;33976:4;33966:14;;;;;:::i;:::-;;;33067:925;34004:33;34020:4;34026:2;34030:6;34004:15;:33::i;:::-;30479:3566;;;;;;30366:3679;;;;:::o;2856:191::-;2930:16;2949:6;;;;;;;;;;;2930:25;;2975:8;2966:6;;:17;;;;;;;;;;;;;;;;;;3030:8;2999:40;;3020:8;2999:40;;;;;;;;;;;;2919:128;2856:191;:::o;12802:733::-;12960:1;12942:20;;:6;:20;;;12934:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13044:1;13023:23;;:9;:23;;;13015:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13099:47;13120:6;13128:9;13139:6;13099:20;:47::i;:::-;13159:21;13183:9;:17;13193:6;13183:17;;;;;;;;;;;;;;;;13159:41;;13236:6;13219:13;:23;;13211:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;13357:6;13341:13;:22;13321:9;:17;13331:6;13321:17;;;;;;;;;;;;;;;:42;;;;13409:6;13385:9;:20;13395:9;13385:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;13450:9;13433:35;;13442:6;13433:35;;;13461:6;13433:35;;;;;;:::i;:::-;;;;;;;;13481:46;13501:6;13509:9;13520:6;13481:19;:46::i;:::-;12923:612;12802:733;;;:::o;34631:339::-;34670:23;34696:24;34714:4;34696:9;:24::i;:::-;34670:50;;34754:1;34735:15;:20;34731:59;;34772:7;;;34731:59;34845:2;34824:18;;:23;;;;:::i;:::-;34806:15;:41;34802:115;;;34903:2;34882:18;;:23;;;;:::i;:::-;34864:41;;34802:115;34929:33;34946:15;34929:16;:33::i;:::-;34659:311;34631:339;:::o;20114:98::-;20172:7;20203:1;20199;:5;;;;:::i;:::-;20192:12;;20114:98;;;;:::o;20513:::-;20571:7;20602:1;20598;:5;;;;:::i;:::-;20591:12;;20513:98;;;;:::o;15641:125::-;;;;:::o;16370:124::-;;;;:::o;34053:570::-;34179:21;34217:1;34203:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34179:40;;34248:4;34230;34235:1;34230:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;34274:4;;;;;;;;;;;34264;34269:1;34264:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;;;34291:62;34308:4;34323:15;34341:11;34291:8;:62::i;:::-;34392:15;:69;;;34476:11;34502:1;34546:4;34565:9;;;;;;;;;;;34589:15;34392:223;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34108:515;34053:570;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:246::-;1531:1;1541:113;1555:6;1552:1;1549:13;1541:113;;;1640:1;1635:3;1631:11;1625:18;1621:1;1616:3;1612:11;1605:39;1577:2;1574:1;1570:10;1565:15;;1541:113;;;1688:1;1679:6;1674:3;1670:16;1663:27;1512:184;1450:246;;;:::o;1702:102::-;1743:6;1794:2;1790:7;1785:2;1778:5;1774:14;1770:28;1760:38;;1702:102;;;:::o;1810:377::-;1898:3;1926:39;1959:5;1926:39;:::i;:::-;1981:71;2045:6;2040:3;1981:71;:::i;:::-;1974:78;;2061:65;2119:6;2114:3;2107:4;2100:5;2096:16;2061:65;:::i;:::-;2151:29;2173:6;2151:29;:::i;:::-;2146:3;2142:39;2135:46;;1902:285;1810:377;;;;:::o;2193:313::-;2306:4;2344:2;2333:9;2329:18;2321:26;;2393:9;2387:4;2383:20;2379:1;2368:9;2364:17;2357:47;2421:78;2494:4;2485:6;2421:78;:::i;:::-;2413:86;;2193:313;;;;:::o;2512:126::-;2549:7;2589:42;2582:5;2578:54;2567:65;;2512:126;;;:::o;2644:96::-;2681:7;2710:24;2728:5;2710:24;:::i;:::-;2699:35;;2644:96;;;:::o;2746:122::-;2819:24;2837:5;2819:24;:::i;:::-;2812:5;2809:35;2799:63;;2858:1;2855;2848:12;2799:63;2746:122;:::o;2874:139::-;2920:5;2958:6;2945:20;2936:29;;2974:33;3001:5;2974:33;:::i;:::-;2874:139;;;;:::o;3019:474::-;3087:6;3095;3144:2;3132:9;3123:7;3119:23;3115:32;3112:119;;;3150:79;;:::i;:::-;3112:119;3270:1;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3241:117;3397:2;3423:53;3468:7;3459:6;3448:9;3444:22;3423:53;:::i;:::-;3413:63;;3368:118;3019:474;;;;;:::o;3499:90::-;3533:7;3576:5;3569:13;3562:21;3551:32;;3499:90;;;:::o;3595:109::-;3676:21;3691:5;3676:21;:::i;:::-;3671:3;3664:34;3595:109;;:::o;3710:210::-;3797:4;3835:2;3824:9;3820:18;3812:26;;3848:65;3910:1;3899:9;3895:17;3886:6;3848:65;:::i;:::-;3710:210;;;;:::o;3926:329::-;3985:6;4034:2;4022:9;4013:7;4009:23;4005:32;4002:119;;;4040:79;;:::i;:::-;4002:119;4160:1;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4131:117;3926:329;;;;:::o;4261:60::-;4289:3;4310:5;4303:12;;4261:60;;;:::o;4327:142::-;4377:9;4410:53;4428:34;4437:24;4455:5;4437:24;:::i;:::-;4428:34;:::i;:::-;4410:53;:::i;:::-;4397:66;;4327:142;;;:::o;4475:126::-;4525:9;4558:37;4589:5;4558:37;:::i;:::-;4545:50;;4475:126;;;:::o;4607:152::-;4683:9;4716:37;4747:5;4716:37;:::i;:::-;4703:50;;4607:152;;;:::o;4765:183::-;4878:63;4935:5;4878:63;:::i;:::-;4873:3;4866:76;4765:183;;:::o;4954:274::-;5073:4;5111:2;5100:9;5096:18;5088:26;;5124:97;5218:1;5207:9;5203:17;5194:6;5124:97;:::i;:::-;4954:274;;;;:::o;5234:118::-;5321:24;5339:5;5321:24;:::i;:::-;5316:3;5309:37;5234:118;;:::o;5358:222::-;5451:4;5489:2;5478:9;5474:18;5466:26;;5502:71;5570:1;5559:9;5555:17;5546:6;5502:71;:::i;:::-;5358:222;;;;:::o;5586:329::-;5645:6;5694:2;5682:9;5673:7;5669:23;5665:32;5662:119;;;5700:79;;:::i;:::-;5662:119;5820:1;5845:53;5890:7;5881:6;5870:9;5866:22;5845:53;:::i;:::-;5835:63;;5791:117;5586:329;;;;:::o;5921:619::-;5998:6;6006;6014;6063:2;6051:9;6042:7;6038:23;6034:32;6031:119;;;6069:79;;:::i;:::-;6031:119;6189:1;6214:53;6259:7;6250:6;6239:9;6235:22;6214:53;:::i;:::-;6204:63;;6160:117;6316:2;6342:53;6387:7;6378:6;6367:9;6363:22;6342:53;:::i;:::-;6332:63;;6287:118;6444:2;6470:53;6515:7;6506:6;6495:9;6491:22;6470:53;:::i;:::-;6460:63;;6415:118;5921:619;;;;;:::o;6546:118::-;6633:24;6651:5;6633:24;:::i;:::-;6628:3;6621:37;6546:118;;:::o;6670:222::-;6763:4;6801:2;6790:9;6786:18;6778:26;;6814:71;6882:1;6871:9;6867:17;6858:6;6814:71;:::i;:::-;6670:222;;;;:::o;6898:86::-;6933:7;6973:4;6966:5;6962:16;6951:27;;6898:86;;;:::o;6990:112::-;7073:22;7089:5;7073:22;:::i;:::-;7068:3;7061:35;6990:112;;:::o;7108:214::-;7197:4;7235:2;7224:9;7220:18;7212:26;;7248:67;7312:1;7301:9;7297:17;7288:6;7248:67;:::i;:::-;7108:214;;;;:::o;7328:116::-;7398:21;7413:5;7398:21;:::i;:::-;7391:5;7388:32;7378:60;;7434:1;7431;7424:12;7378:60;7328:116;:::o;7450:133::-;7493:5;7531:6;7518:20;7509:29;;7547:30;7571:5;7547:30;:::i;:::-;7450:133;;;;:::o;7589:468::-;7654:6;7662;7711:2;7699:9;7690:7;7686:23;7682:32;7679:119;;;7717:79;;:::i;:::-;7679:119;7837:1;7862:53;7907:7;7898:6;7887:9;7883:22;7862:53;:::i;:::-;7852:63;;7808:117;7964:2;7990:50;8032:7;8023:6;8012:9;8008:22;7990:50;:::i;:::-;7980:60;;7935:115;7589:468;;;;;:::o;8063:323::-;8119:6;8168:2;8156:9;8147:7;8143:23;8139:32;8136:119;;;8174:79;;:::i;:::-;8136:119;8294:1;8319:50;8361:7;8352:6;8341:9;8337:22;8319:50;:::i;:::-;8309:60;;8265:114;8063:323;;;;:::o;8392:474::-;8460:6;8468;8517:2;8505:9;8496:7;8492:23;8488:32;8485:119;;;8523:79;;:::i;:::-;8485:119;8643:1;8668:53;8713:7;8704:6;8693:9;8689:22;8668:53;:::i;:::-;8658:63;;8614:117;8770:2;8796:53;8841:7;8832:6;8821:9;8817:22;8796:53;:::i;:::-;8786:63;;8741:118;8392:474;;;;;:::o;8872:182::-;9012:34;9008:1;9000:6;8996:14;8989:58;8872:182;:::o;9060:366::-;9202:3;9223:67;9287:2;9282:3;9223:67;:::i;:::-;9216:74;;9299:93;9388:3;9299:93;:::i;:::-;9417:2;9412:3;9408:12;9401:19;;9060:366;;;:::o;9432:419::-;9598:4;9636:2;9625:9;9621:18;9613:26;;9685:9;9679:4;9675:20;9671:1;9660:9;9656:17;9649:47;9713:131;9839:4;9713:131;:::i;:::-;9705:139;;9432:419;;;:::o;9857:180::-;9905:77;9902:1;9895:88;10002:4;9999:1;9992:15;10026:4;10023:1;10016:15;10043:191;10083:3;10102:20;10120:1;10102:20;:::i;:::-;10097:25;;10136:20;10154:1;10136:20;:::i;:::-;10131:25;;10179:1;10176;10172:9;10165:16;;10200:3;10197:1;10194:10;10191:36;;;10207:18;;:::i;:::-;10191:36;10043:191;;;;:::o;10240:179::-;10380:31;10376:1;10368:6;10364:14;10357:55;10240:179;:::o;10425:366::-;10567:3;10588:67;10652:2;10647:3;10588:67;:::i;:::-;10581:74;;10664:93;10753:3;10664:93;:::i;:::-;10782:2;10777:3;10773:12;10766:19;;10425:366;;;:::o;10797:419::-;10963:4;11001:2;10990:9;10986:18;10978:26;;11050:9;11044:4;11040:20;11036:1;11025:9;11021:17;11014:47;11078:131;11204:4;11078:131;:::i;:::-;11070:139;;10797:419;;;:::o;11222:180::-;11270:77;11267:1;11260:88;11367:4;11364:1;11357:15;11391:4;11388:1;11381:15;11408:320;11452:6;11489:1;11483:4;11479:12;11469:22;;11536:1;11530:4;11526:12;11557:18;11547:81;;11613:4;11605:6;11601:17;11591:27;;11547:81;11675:2;11667:6;11664:14;11644:18;11641:38;11638:84;;11694:18;;:::i;:::-;11638:84;11459:269;11408:320;;;:::o;11734:410::-;11774:7;11797:20;11815:1;11797:20;:::i;:::-;11792:25;;11831:20;11849:1;11831:20;:::i;:::-;11826:25;;11886:1;11883;11879:9;11908:30;11926:11;11908:30;:::i;:::-;11897:41;;12087:1;12078:7;12074:15;12071:1;12068:22;12048:1;12041:9;12021:83;11998:139;;12117:18;;:::i;:::-;11998:139;11782:362;11734:410;;;;:::o;12150:180::-;12198:77;12195:1;12188:88;12295:4;12292:1;12285:15;12319:4;12316:1;12309:15;12336:185;12376:1;12393:20;12411:1;12393:20;:::i;:::-;12388:25;;12427:20;12445:1;12427:20;:::i;:::-;12422:25;;12466:1;12456:35;;12471:18;;:::i;:::-;12456:35;12513:1;12510;12506:9;12501:14;;12336:185;;;;:::o;12527:234::-;12667:34;12663:1;12655:6;12651:14;12644:58;12736:17;12731:2;12723:6;12719:15;12712:42;12527:234;:::o;12767:366::-;12909:3;12930:67;12994:2;12989:3;12930:67;:::i;:::-;12923:74;;13006:93;13095:3;13006:93;:::i;:::-;13124:2;13119:3;13115:12;13108:19;;12767:366;;;:::o;13139:419::-;13305:4;13343:2;13332:9;13328:18;13320:26;;13392:9;13386:4;13382:20;13378:1;13367:9;13363:17;13356:47;13420:131;13546:4;13420:131;:::i;:::-;13412:139;;13139:419;;;:::o;13564:227::-;13704:34;13700:1;13692:6;13688:14;13681:58;13773:10;13768:2;13760:6;13756:15;13749:35;13564:227;:::o;13797:366::-;13939:3;13960:67;14024:2;14019:3;13960:67;:::i;:::-;13953:74;;14036:93;14125:3;14036:93;:::i;:::-;14154:2;14149:3;14145:12;14138:19;;13797:366;;;:::o;14169:419::-;14335:4;14373:2;14362:9;14358:18;14350:26;;14422:9;14416:4;14412:20;14408:1;14397:9;14393:17;14386:47;14450:131;14576:4;14450:131;:::i;:::-;14442:139;;14169:419;;;:::o;14594:179::-;14734:31;14730:1;14722:6;14718:14;14711:55;14594:179;:::o;14779:366::-;14921:3;14942:67;15006:2;15001:3;14942:67;:::i;:::-;14935:74;;15018:93;15107:3;15018:93;:::i;:::-;15136:2;15131:3;15127:12;15120:19;;14779:366;;;:::o;15151:419::-;15317:4;15355:2;15344:9;15340:18;15332:26;;15404:9;15398:4;15394:20;15390:1;15379:9;15375:17;15368:47;15432:131;15558:4;15432:131;:::i;:::-;15424:139;;15151:419;;;:::o;15576:223::-;15716:34;15712:1;15704:6;15700:14;15693:58;15785:6;15780:2;15772:6;15768:15;15761:31;15576:223;:::o;15805:366::-;15947:3;15968:67;16032:2;16027:3;15968:67;:::i;:::-;15961:74;;16044:93;16133:3;16044:93;:::i;:::-;16162:2;16157:3;16153:12;16146:19;;15805:366;;;:::o;16177:419::-;16343:4;16381:2;16370:9;16366:18;16358:26;;16430:9;16424:4;16420:20;16416:1;16405:9;16401:17;16394:47;16458:131;16584:4;16458:131;:::i;:::-;16450:139;;16177:419;;;:::o;16602:240::-;16742:34;16738:1;16730:6;16726:14;16719:58;16811:23;16806:2;16798:6;16794:15;16787:48;16602:240;:::o;16848:366::-;16990:3;17011:67;17075:2;17070:3;17011:67;:::i;:::-;17004:74;;17087:93;17176:3;17087:93;:::i;:::-;17205:2;17200:3;17196:12;17189:19;;16848:366;;;:::o;17220:419::-;17386:4;17424:2;17413:9;17409:18;17401:26;;17473:9;17467:4;17463:20;17459:1;17448:9;17444:17;17437:47;17501:131;17627:4;17501:131;:::i;:::-;17493:139;;17220:419;;;:::o;17645:239::-;17785:34;17781:1;17773:6;17769:14;17762:58;17854:22;17849:2;17841:6;17837:15;17830:47;17645:239;:::o;17890:366::-;18032:3;18053:67;18117:2;18112:3;18053:67;:::i;:::-;18046:74;;18129:93;18218:3;18129:93;:::i;:::-;18247:2;18242:3;18238:12;18231:19;;17890:366;;;:::o;18262:419::-;18428:4;18466:2;18455:9;18451:18;18443:26;;18515:9;18509:4;18505:20;18501:1;18490:9;18486:17;18479:47;18543:131;18669:4;18543:131;:::i;:::-;18535:139;;18262:419;;;:::o;18687:225::-;18827:34;18823:1;18815:6;18811:14;18804:58;18896:8;18891:2;18883:6;18879:15;18872:33;18687:225;:::o;18918:366::-;19060:3;19081:67;19145:2;19140:3;19081:67;:::i;:::-;19074:74;;19157:93;19246:3;19157:93;:::i;:::-;19275:2;19270:3;19266:12;19259:19;;18918:366;;;:::o;19290:419::-;19456:4;19494:2;19483:9;19479:18;19471:26;;19543:9;19537:4;19533:20;19529:1;19518:9;19514:17;19507:47;19571:131;19697:4;19571:131;:::i;:::-;19563:139;;19290:419;;;:::o;19715:223::-;19855:34;19851:1;19843:6;19839:14;19832:58;19924:6;19919:2;19911:6;19907:15;19900:31;19715:223;:::o;19944:366::-;20086:3;20107:67;20171:2;20166:3;20107:67;:::i;:::-;20100:74;;20183:93;20272:3;20183:93;:::i;:::-;20301:2;20296:3;20292:12;20285:19;;19944:366;;;:::o;20316:419::-;20482:4;20520:2;20509:9;20505:18;20497:26;;20569:9;20563:4;20559:20;20555:1;20544:9;20540:17;20533:47;20597:131;20723:4;20597:131;:::i;:::-;20589:139;;20316:419;;;:::o;20741:221::-;20881:34;20877:1;20869:6;20865:14;20858:58;20950:4;20945:2;20937:6;20933:15;20926:29;20741:221;:::o;20968:366::-;21110:3;21131:67;21195:2;21190:3;21131:67;:::i;:::-;21124:74;;21207:93;21296:3;21207:93;:::i;:::-;21325:2;21320:3;21316:12;21309:19;;20968:366;;;:::o;21340:419::-;21506:4;21544:2;21533:9;21529:18;21521:26;;21593:9;21587:4;21583:20;21579:1;21568:9;21564:17;21557:47;21621:131;21747:4;21621:131;:::i;:::-;21613:139;;21340:419;;;:::o;21765:224::-;21905:34;21901:1;21893:6;21889:14;21882:58;21974:7;21969:2;21961:6;21957:15;21950:32;21765:224;:::o;21995:366::-;22137:3;22158:67;22222:2;22217:3;22158:67;:::i;:::-;22151:74;;22234:93;22323:3;22234:93;:::i;:::-;22352:2;22347:3;22343:12;22336:19;;21995:366;;;:::o;22367:419::-;22533:4;22571:2;22560:9;22556:18;22548:26;;22620:9;22614:4;22610:20;22606:1;22595:9;22591:17;22584:47;22648:131;22774:4;22648:131;:::i;:::-;22640:139;;22367:419;;;:::o;22792:222::-;22932:34;22928:1;22920:6;22916:14;22909:58;23001:5;22996:2;22988:6;22984:15;22977:30;22792:222;:::o;23020:366::-;23162:3;23183:67;23247:2;23242:3;23183:67;:::i;:::-;23176:74;;23259:93;23348:3;23259:93;:::i;:::-;23377:2;23372:3;23368:12;23361:19;;23020:366;;;:::o;23392:419::-;23558:4;23596:2;23585:9;23581:18;23573:26;;23645:9;23639:4;23635:20;23631:1;23620:9;23616:17;23609:47;23673:131;23799:4;23673:131;:::i;:::-;23665:139;;23392:419;;;:::o;23817:172::-;23957:24;23953:1;23945:6;23941:14;23934:48;23817:172;:::o;23995:366::-;24137:3;24158:67;24222:2;24217:3;24158:67;:::i;:::-;24151:74;;24234:93;24323:3;24234:93;:::i;:::-;24352:2;24347:3;24343:12;24336:19;;23995:366;;;:::o;24367:419::-;24533:4;24571:2;24560:9;24556:18;24548:26;;24620:9;24614:4;24610:20;24606:1;24595:9;24591:17;24584:47;24648:131;24774:4;24648:131;:::i;:::-;24640:139;;24367:419;;;:::o;24792:240::-;24932:34;24928:1;24920:6;24916:14;24909:58;25001:23;24996:2;24988:6;24984:15;24977:48;24792:240;:::o;25038:366::-;25180:3;25201:67;25265:2;25260:3;25201:67;:::i;:::-;25194:74;;25277:93;25366:3;25277:93;:::i;:::-;25395:2;25390:3;25386:12;25379:19;;25038:366;;;:::o;25410:419::-;25576:4;25614:2;25603:9;25599:18;25591:26;;25663:9;25657:4;25653:20;25649:1;25638:9;25634:17;25627:47;25691:131;25817:4;25691:131;:::i;:::-;25683:139;;25410:419;;;:::o;25835:169::-;25975:21;25971:1;25963:6;25959:14;25952:45;25835:169;:::o;26010:366::-;26152:3;26173:67;26237:2;26232:3;26173:67;:::i;:::-;26166:74;;26249:93;26338:3;26249:93;:::i;:::-;26367:2;26362:3;26358:12;26351:19;;26010:366;;;:::o;26382:419::-;26548:4;26586:2;26575:9;26571:18;26563:26;;26635:9;26629:4;26625:20;26621:1;26610:9;26606:17;26599:47;26663:131;26789:4;26663:131;:::i;:::-;26655:139;;26382:419;;;:::o;26807:194::-;26847:4;26867:20;26885:1;26867:20;:::i;:::-;26862:25;;26901:20;26919:1;26901:20;:::i;:::-;26896:25;;26945:1;26942;26938:9;26930:17;;26969:1;26963:4;26960:11;26957:37;;;26974:18;;:::i;:::-;26957:37;26807:194;;;;:::o;27007:225::-;27147:34;27143:1;27135:6;27131:14;27124:58;27216:8;27211:2;27203:6;27199:15;27192:33;27007:225;:::o;27238:366::-;27380:3;27401:67;27465:2;27460:3;27401:67;:::i;:::-;27394:74;;27477:93;27566:3;27477:93;:::i;:::-;27595:2;27590:3;27586:12;27579:19;;27238:366;;;:::o;27610:419::-;27776:4;27814:2;27803:9;27799:18;27791:26;;27863:9;27857:4;27853:20;27849:1;27838:9;27834:17;27827:47;27891:131;28017:4;27891:131;:::i;:::-;27883:139;;27610:419;;;:::o;28035:180::-;28083:77;28080:1;28073:88;28180:4;28177:1;28170:15;28204:4;28201:1;28194:15;28221:180;28269:77;28266:1;28259:88;28366:4;28363:1;28356:15;28390:4;28387:1;28380:15;28407:85;28452:7;28481:5;28470:16;;28407:85;;;:::o;28498:158::-;28556:9;28589:61;28607:42;28616:32;28642:5;28616:32;:::i;:::-;28607:42;:::i;:::-;28589:61;:::i;:::-;28576:74;;28498:158;;;:::o;28662:147::-;28757:45;28796:5;28757:45;:::i;:::-;28752:3;28745:58;28662:147;;:::o;28815:114::-;28882:6;28916:5;28910:12;28900:22;;28815:114;;;:::o;28935:184::-;29034:11;29068:6;29063:3;29056:19;29108:4;29103:3;29099:14;29084:29;;28935:184;;;;:::o;29125:132::-;29192:4;29215:3;29207:11;;29245:4;29240:3;29236:14;29228:22;;29125:132;;;:::o;29263:108::-;29340:24;29358:5;29340:24;:::i;:::-;29335:3;29328:37;29263:108;;:::o;29377:179::-;29446:10;29467:46;29509:3;29501:6;29467:46;:::i;:::-;29545:4;29540:3;29536:14;29522:28;;29377:179;;;;:::o;29562:113::-;29632:4;29664;29659:3;29655:14;29647:22;;29562:113;;;:::o;29711:732::-;29830:3;29859:54;29907:5;29859:54;:::i;:::-;29929:86;30008:6;30003:3;29929:86;:::i;:::-;29922:93;;30039:56;30089:5;30039:56;:::i;:::-;30118:7;30149:1;30134:284;30159:6;30156:1;30153:13;30134:284;;;30235:6;30229:13;30262:63;30321:3;30306:13;30262:63;:::i;:::-;30255:70;;30348:60;30401:6;30348:60;:::i;:::-;30338:70;;30194:224;30181:1;30178;30174:9;30169:14;;30134:284;;;30138:14;30434:3;30427:10;;29835:608;;;29711:732;;;;:::o;30449:831::-;30712:4;30750:3;30739:9;30735:19;30727:27;;30764:71;30832:1;30821:9;30817:17;30808:6;30764:71;:::i;:::-;30845:80;30921:2;30910:9;30906:18;30897:6;30845:80;:::i;:::-;30972:9;30966:4;30962:20;30957:2;30946:9;30942:18;30935:48;31000:108;31103:4;31094:6;31000:108;:::i;:::-;30992:116;;31118:72;31186:2;31175:9;31171:18;31162:6;31118:72;:::i;:::-;31200:73;31268:3;31257:9;31253:19;31244:6;31200:73;:::i;:::-;30449:831;;;;;;;;:::o

Swarm Source

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