ETH Price: $3,360.32 (-1.70%)
Gas: 11 Gwei

Token

Teh Bone (BONE)
 

Overview

Max Total Supply

300,000,000 BONE

Holders

88

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Shiba Inu: Deployer 2
Balance
6,000,000 BONE

Value
$0.00
0xc7d0445ac2947760b3dd388b8586adf079972bf3
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:
TehBone

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-21
*/

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

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


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

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

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

/* pragma solidity ^0.8.0; */

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

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 TehBone is ERC20, Ownable {
    using SafeMath for uint256;

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

    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("Teh Bone", "BONE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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


        uint256 _buyDevFee = 25;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellDevFee = 25;
        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 300_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 2 / 100; // 2% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 2 / 100; // 2% 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(0x7fcCfB61cEcf450Cb8c33fAa74a5a32b45Fe3bD8); // set as dev wallet

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

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

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

    receive() external payable {}

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

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

    // 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 {
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        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 <= 10, "Must keep fees at 10% 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 swapTokensForUSDC(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = USDC;

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

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

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

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

        swapTokensForUSDC(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":"USDC","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"}]

60c060405273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280600881526020017f54656820426f6e650000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424f4e450000000000000000000000000000000000000000000000000000000081525081600390805190602001906200013c929190620009b0565b50806004908051906020019062000155929190620009b0565b505050620001786200016c6200051160201b60201c565b6200051960201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001a4816001620005df60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000224573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024a919062000aca565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401620002a892919062000b0d565b6020604051808303816000875af1158015620002c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ee919062000aca565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033660a0516001620005df60201b60201c565b600060199050600080601990506000806af8277896582678ac0000009050606460028262000365919062000b73565b62000371919062000c03565b600881905550606460028262000388919062000b73565b62000394919062000c03565b600a81905550612710600582620003ac919062000b73565b620003b8919062000c03565b60098190555084600d8190555083600e81905550600e54600d54620003de919062000c3b565b600c81905550826010819055508160118190555060115460105462000404919062000c3b565b600f81905550737fccfb61cecf450cb8c33faa74a5a32b45fe3bd8600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200048162000473620006c960201b60201c565b6001620006f360201b60201c565b62000494306001620006f360201b60201c565b620004a961dead6001620006f360201b60201c565b620004cb620004bd620006c960201b60201c565b6001620005df60201b60201c565b620004de306001620005df60201b60201c565b620004f361dead6001620005df60201b60201c565b6200050533826200082d60201b60201c565b50505050505062000e5a565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005ef6200051160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000615620006c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200066e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006659062000cf9565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007036200051160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000729620006c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007799062000cf9565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000821919062000d38565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620008a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008979062000da5565b60405180910390fd5b620008b460008383620009a660201b60201c565b8060026000828254620008c8919062000c3b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200091f919062000c3b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000986919062000dd8565b60405180910390a3620009a260008383620009ab60201b60201c565b5050565b505050565b505050565b828054620009be9062000e24565b90600052602060002090601f016020900481019282620009e2576000855562000a2e565b82601f10620009fd57805160ff191683800117855562000a2e565b8280016001018555821562000a2e579182015b8281111562000a2d57825182559160200191906001019062000a10565b5b50905062000a3d919062000a41565b5090565b5b8082111562000a5c57600081600090555060010162000a42565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a928262000a65565b9050919050565b62000aa48162000a85565b811462000ab057600080fd5b50565b60008151905062000ac48162000a99565b92915050565b60006020828403121562000ae35762000ae262000a60565b5b600062000af38482850162000ab3565b91505092915050565b62000b078162000a85565b82525050565b600060408201905062000b24600083018562000afc565b62000b33602083018462000afc565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b808262000b3a565b915062000b8d8362000b3a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000bc95762000bc862000b44565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000c108262000b3a565b915062000c1d8362000b3a565b92508262000c305762000c2f62000bd4565b5b828204905092915050565b600062000c488262000b3a565b915062000c558362000b3a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c8d5762000c8c62000b44565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ce160208362000c98565b915062000cee8262000ca9565b602082019050919050565b6000602082019050818103600083015262000d148162000cd2565b9050919050565b60008115159050919050565b62000d328162000d1b565b82525050565b600060208201905062000d4f600083018462000d27565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d8d601f8362000c98565b915062000d9a8262000d55565b602082019050919050565b6000602082019050818103600083015262000dc08162000d7e565b9050919050565b62000dd28162000b3a565b82525050565b600060208201905062000def600083018462000dc7565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e3d57607f821691505b6020821081141562000e545762000e5362000df5565b5b50919050565b60805160a051613a5262000eb160003960008181610e8b01528181611e88015281816120d1015281816122dc015281816123a70152612491015260008181610b81015281816129bf01526129e60152613a526000f3fe6080604052600436106102555760003560e01c806389a3027111610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e146108b3578063e2f45605146108f0578063f11a24d31461091b578063f2fde38b14610946578063f63743421461096f578063f8b45b051461099a5761025c565b8063c0246668146107ce578063c18bc195146107f7578063c8c8ebe414610820578063d257b34f1461084b578063d85ba063146108885761025c565b806395d89b41116100fd57806395d89b41146106e55780639c3b4fdc14610710578063a0d82dc51461073b578063a9059cbb14610766578063bbc0c742146107a35761025c565b806389a30271146106245780638a8c523c1461064f5780638da5cb5b146106665780638ea5220f14610691578063924de9b7146106bc5761025c565b8063313ce567116101d25780636a486a8e116101965780636a486a8e146105265780636ddd17131461055157806370a082311461057c578063715018a6146105b9578063751039fc146105d05780637571336a146105fb5761025c565b8063313ce5671461043f57806349bd5a5e1461046a5780634a62bb65146104955780634fbee193146104c057806366ca9b83146104fd5761025c565b806318160ddd1161021957806318160ddd1461035a5780631816467f14610385578063203e727e146103ae57806323b872dd146103d757806327c8f835146104145761025c565b806302dbd8f81461026157806306fdde031461028a578063095ea7b3146102b557806310d5de53146102f25780631694505e1461032f5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612ad9565b6109c5565b005b34801561029657600080fd5b5061029f610aaf565b6040516102ac9190612bb2565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612c32565b610b41565b6040516102e99190612c8d565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190612ca8565b610b5f565b6040516103269190612c8d565b60405180910390f35b34801561033b57600080fd5b50610344610b7f565b6040516103519190612d34565b60405180910390f35b34801561036657600080fd5b5061036f610ba3565b60405161037c9190612d5e565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190612ca8565b610bad565b005b3480156103ba57600080fd5b506103d560048036038101906103d09190612d79565b610ce9565b005b3480156103e357600080fd5b506103fe60048036038101906103f99190612da6565b610d82565b60405161040b9190612c8d565b60405180910390f35b34801561042057600080fd5b50610429610e7a565b6040516104369190612e08565b60405180910390f35b34801561044b57600080fd5b50610454610e80565b6040516104619190612e3f565b60405180910390f35b34801561047657600080fd5b5061047f610e89565b60405161048c9190612e08565b60405180910390f35b3480156104a157600080fd5b506104aa610ead565b6040516104b79190612c8d565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612ca8565b610ec0565b6040516104f49190612c8d565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190612ad9565b610f16565b005b34801561053257600080fd5b5061053b611000565b6040516105489190612d5e565b60405180910390f35b34801561055d57600080fd5b50610566611006565b6040516105739190612c8d565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190612ca8565b611019565b6040516105b09190612d5e565b60405180910390f35b3480156105c557600080fd5b506105ce611061565b005b3480156105dc57600080fd5b506105e56110e9565b6040516105f29190612c8d565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190612e86565b611189565b005b34801561063057600080fd5b50610639611260565b6040516106469190612e08565b60405180910390f35b34801561065b57600080fd5b50610664611286565b005b34801561067257600080fd5b5061067b61133a565b6040516106889190612e08565b60405180910390f35b34801561069d57600080fd5b506106a6611364565b6040516106b39190612e08565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de9190612ec6565b61138a565b005b3480156106f157600080fd5b506106fa611423565b6040516107079190612bb2565b60405180910390f35b34801561071c57600080fd5b506107256114b5565b6040516107329190612d5e565b60405180910390f35b34801561074757600080fd5b506107506114bb565b60405161075d9190612d5e565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612c32565b6114c1565b60405161079a9190612c8d565b60405180910390f35b3480156107af57600080fd5b506107b86114df565b6040516107c59190612c8d565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190612e86565b6114f2565b005b34801561080357600080fd5b5061081e60048036038101906108199190612d79565b611617565b005b34801561082c57600080fd5b506108356116b0565b6040516108429190612d5e565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d9190612d79565b6116b6565b60405161087f9190612c8d565b60405180910390f35b34801561089457600080fd5b5061089d61180b565b6040516108aa9190612d5e565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d59190612ef3565b611811565b6040516108e79190612d5e565b60405180910390f35b3480156108fc57600080fd5b50610905611898565b6040516109129190612d5e565b60405180910390f35b34801561092757600080fd5b5061093061189e565b60405161093d9190612d5e565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190612ca8565b6118a4565b005b34801561097b57600080fd5b5061098461199c565b6040516109919190612d5e565b60405180910390f35b3480156109a657600080fd5b506109af6119a2565b6040516109bc9190612d5e565b60405180910390f35b6109cd6119a8565b73ffffffffffffffffffffffffffffffffffffffff166109eb61133a565b73ffffffffffffffffffffffffffffffffffffffff1614610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3890612f7f565b60405180910390fd5b8160108190555080601181905550601154601054610a5f9190612fce565b600f81905550600a600f541115610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa290613070565b60405180910390fd5b5050565b606060038054610abe906130bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610aea906130bf565b8015610b375780601f10610b0c57610100808354040283529160200191610b37565b820191906000526020600020905b815481529060010190602001808311610b1a57829003601f168201915b5050505050905090565b6000610b55610b4e6119a8565b84846119b0565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610bb56119a8565b73ffffffffffffffffffffffffffffffffffffffff16610bd361133a565b73ffffffffffffffffffffffffffffffffffffffff1614610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2090612f7f565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cf16119a8565b73ffffffffffffffffffffffffffffffffffffffff16610d0f61133a565b73ffffffffffffffffffffffffffffffffffffffff1614610d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c90612f7f565b60405180910390fd5b670de0b6b3a764000081610d7991906130f1565b60088190555050565b6000610d8f848484611b7b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610dda6119a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e51906131bd565b60405180910390fd5b610e6e85610e666119a8565b8584036119b0565b60019150509392505050565b61dead81565b60006012905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610f1e6119a8565b73ffffffffffffffffffffffffffffffffffffffff16610f3c61133a565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990612f7f565b60405180910390fd5b81600d8190555080600e81905550600e54600d54610fb09190612fce565b600c81905550600a600c541115610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390613070565b60405180910390fd5b5050565b600f5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110696119a8565b73ffffffffffffffffffffffffffffffffffffffff1661108761133a565b73ffffffffffffffffffffffffffffffffffffffff16146110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490612f7f565b60405180910390fd5b6110e760006124dd565b565b60006110f36119a8565b73ffffffffffffffffffffffffffffffffffffffff1661111161133a565b73ffffffffffffffffffffffffffffffffffffffff1614611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e90612f7f565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6111916119a8565b73ffffffffffffffffffffffffffffffffffffffff166111af61133a565b73ffffffffffffffffffffffffffffffffffffffff1614611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90612f7f565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61128e6119a8565b73ffffffffffffffffffffffffffffffffffffffff166112ac61133a565b73ffffffffffffffffffffffffffffffffffffffff1614611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990612f7f565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113926119a8565b73ffffffffffffffffffffffffffffffffffffffff166113b061133a565b73ffffffffffffffffffffffffffffffffffffffff1614611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90612f7f565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611432906130bf565b80601f016020809104026020016040519081016040528092919081815260200182805461145e906130bf565b80156114ab5780601f10611480576101008083540402835291602001916114ab565b820191906000526020600020905b81548152906001019060200180831161148e57829003601f168201915b5050505050905090565b600d5481565b60105481565b60006114d56114ce6119a8565b8484611b7b565b6001905092915050565b600b60019054906101000a900460ff1681565b6114fa6119a8565b73ffffffffffffffffffffffffffffffffffffffff1661151861133a565b73ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156590612f7f565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161160b9190612c8d565b60405180910390a25050565b61161f6119a8565b73ffffffffffffffffffffffffffffffffffffffff1661163d61133a565b73ffffffffffffffffffffffffffffffffffffffff1614611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90612f7f565b60405180910390fd5b670de0b6b3a7640000816116a791906130f1565b600a8190555050565b60085481565b60006116c06119a8565b73ffffffffffffffffffffffffffffffffffffffff166116de61133a565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90612f7f565b60405180910390fd5b620186a06001611742610ba3565b61174c91906130f1565b611756919061320c565b821015611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f906132af565b60405180910390fd5b6103e860056117a5610ba3565b6117af91906130f1565b6117b9919061320c565b8211156117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f290613341565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600e5481565b6118ac6119a8565b73ffffffffffffffffffffffffffffffffffffffff166118ca61133a565b73ffffffffffffffffffffffffffffffffffffffff1614611920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191790612f7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611987906133d3565b60405180910390fd5b611999816124dd565b50565b60115481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790613465565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a87906134f7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b6e9190612d5e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be290613589565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c529061361b565b60405180910390fd5b6000811415611c7557611c70838360006125a3565b6124d8565b600b60009054906101000a900460ff161561207f57611c9261133a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d005750611cd061133a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d395750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d73575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d8c5750600660149054906101000a900460ff16155b1561207e57600b60019054906101000a900460ff16611e8657601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e465750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90613687565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611f2b5750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611fd257600854811115611f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6c90613719565b60405180910390fd5b600a54611f8183611019565b82611f8c9190612fce565b1115611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc490613785565b60405180910390fd5b61207d565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661207c57600a5461202f83611019565b8261203a9190612fce565b111561207b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207290613785565b60405180910390fd5b5b5b5b5b600061208a30611019565b9050600060095482101590508080156120af5750600b60029054906101000a900460ff165b80156120c85750600660149054906101000a900460ff16155b801561211f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156121755750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121cb5750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561220f576001600660146101000a81548160ff0219169083151502179055506121f3612824565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122c55750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156122cf57600090505b600080600083156124c6577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614801561233757506000600f54115b156123a5576123646064612356600f548a61287590919063ffffffff16565b61288b90919063ffffffff16565b9250600f546011548461237791906130f1565b612381919061320c565b9150600f546010548461239491906130f1565b61239e919061320c565b905061246d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561240257506000600c54115b1561246c5761242f6064612421600c548a61287590919063ffffffff16565b61288b90919063ffffffff16565b9250600c54600e548461244291906130f1565b61244c919061320c565b9150600c54600d548461245f91906130f1565b612469919061320c565b90505b5b6000831115612482576124818930856125a3565b5b60008211156124b7576124b6307f0000000000000000000000000000000000000000000000000000000000000000846125a3565b5b82876124c391906137a5565b96505b6124d18989896125a3565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260a90613589565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267a9061361b565b60405180910390fd5b61268e8383836128a1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270b9061384b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127a79190612fce565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161280b9190612d5e565b60405180910390a361281e8484846128a6565b50505050565b600061282f30611019565b905060008114156128405750612873565b601460095461284f91906130f1565b81111561286857601460095461286591906130f1565b90505b612871816128ab565b505b565b6000818361288391906130f1565b905092915050565b60008183612899919061320c565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156128c8576128c761386b565b5b6040519080825280602002602001820160405280156128f65781602001602082028036833780820191505090505b509050308160008151811061290e5761290d61389a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811061297f5761297e61389a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506129e4307f0000000000000000000000000000000000000000000000000000000000000000846119b0565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612a689594939291906139c2565b600060405180830381600087803b158015612a8257600080fd5b505af1158015612a96573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612ab681612aa3565b8114612ac157600080fd5b50565b600081359050612ad381612aad565b92915050565b60008060408385031215612af057612aef612a9e565b5b6000612afe85828601612ac4565b9250506020612b0f85828601612ac4565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b53578082015181840152602081019050612b38565b83811115612b62576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b8482612b19565b612b8e8185612b24565b9350612b9e818560208601612b35565b612ba781612b68565b840191505092915050565b60006020820190508181036000830152612bcc8184612b79565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bff82612bd4565b9050919050565b612c0f81612bf4565b8114612c1a57600080fd5b50565b600081359050612c2c81612c06565b92915050565b60008060408385031215612c4957612c48612a9e565b5b6000612c5785828601612c1d565b9250506020612c6885828601612ac4565b9150509250929050565b60008115159050919050565b612c8781612c72565b82525050565b6000602082019050612ca26000830184612c7e565b92915050565b600060208284031215612cbe57612cbd612a9e565b5b6000612ccc84828501612c1d565b91505092915050565b6000819050919050565b6000612cfa612cf5612cf084612bd4565b612cd5565b612bd4565b9050919050565b6000612d0c82612cdf565b9050919050565b6000612d1e82612d01565b9050919050565b612d2e81612d13565b82525050565b6000602082019050612d496000830184612d25565b92915050565b612d5881612aa3565b82525050565b6000602082019050612d736000830184612d4f565b92915050565b600060208284031215612d8f57612d8e612a9e565b5b6000612d9d84828501612ac4565b91505092915050565b600080600060608486031215612dbf57612dbe612a9e565b5b6000612dcd86828701612c1d565b9350506020612dde86828701612c1d565b9250506040612def86828701612ac4565b9150509250925092565b612e0281612bf4565b82525050565b6000602082019050612e1d6000830184612df9565b92915050565b600060ff82169050919050565b612e3981612e23565b82525050565b6000602082019050612e546000830184612e30565b92915050565b612e6381612c72565b8114612e6e57600080fd5b50565b600081359050612e8081612e5a565b92915050565b60008060408385031215612e9d57612e9c612a9e565b5b6000612eab85828601612c1d565b9250506020612ebc85828601612e71565b9150509250929050565b600060208284031215612edc57612edb612a9e565b5b6000612eea84828501612e71565b91505092915050565b60008060408385031215612f0a57612f09612a9e565b5b6000612f1885828601612c1d565b9250506020612f2985828601612c1d565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f69602083612b24565b9150612f7482612f33565b602082019050919050565b60006020820190508181036000830152612f9881612f5c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fd982612aa3565b9150612fe483612aa3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561301957613018612f9f565b5b828201905092915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b600061305a601d83612b24565b915061306582613024565b602082019050919050565b600060208201905081810360008301526130898161304d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130d757607f821691505b602082108114156130eb576130ea613090565b5b50919050565b60006130fc82612aa3565b915061310783612aa3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131405761313f612f9f565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006131a7602883612b24565b91506131b28261314b565b604082019050919050565b600060208201905081810360008301526131d68161319a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061321782612aa3565b915061322283612aa3565b925082613232576132316131dd565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613299603583612b24565b91506132a48261323d565b604082019050919050565b600060208201905081810360008301526132c88161328c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061332b603483612b24565b9150613336826132cf565b604082019050919050565b6000602082019050818103600083015261335a8161331e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133bd602683612b24565b91506133c882613361565b604082019050919050565b600060208201905081810360008301526133ec816133b0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061344f602483612b24565b915061345a826133f3565b604082019050919050565b6000602082019050818103600083015261347e81613442565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006134e1602283612b24565b91506134ec82613485565b604082019050919050565b60006020820190508181036000830152613510816134d4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613573602583612b24565b915061357e82613517565b604082019050919050565b600060208201905081810360008301526135a281613566565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613605602383612b24565b9150613610826135a9565b604082019050919050565b60006020820190508181036000830152613634816135f8565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613671601683612b24565b915061367c8261363b565b602082019050919050565b600060208201905081810360008301526136a081613664565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613703603583612b24565b915061370e826136a7565b604082019050919050565b60006020820190508181036000830152613732816136f6565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061376f601383612b24565b915061377a82613739565b602082019050919050565b6000602082019050818103600083015261379e81613762565b9050919050565b60006137b082612aa3565b91506137bb83612aa3565b9250828210156137ce576137cd612f9f565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613835602683612b24565b9150613840826137d9565b604082019050919050565b6000602082019050818103600083015261386481613828565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006138ee6138e96138e4846138c9565b612cd5565b612aa3565b9050919050565b6138fe816138d3565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61393981612bf4565b82525050565b600061394b8383613930565b60208301905092915050565b6000602082019050919050565b600061396f82613904565b613979818561390f565b935061398483613920565b8060005b838110156139b557815161399c888261393f565b97506139a783613957565b925050600181019050613988565b5085935050505092915050565b600060a0820190506139d76000830188612d4f565b6139e460208301876138f5565b81810360408301526139f68186613964565b9050613a056060830185612df9565b613a126080830184612d4f565b969550505050505056fea264697066735822122003ff4d7642132bbf22bfb8852f0e4618bade06399837157f421dad8d77ce7cb864736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102555760003560e01c806389a3027111610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e146108b3578063e2f45605146108f0578063f11a24d31461091b578063f2fde38b14610946578063f63743421461096f578063f8b45b051461099a5761025c565b8063c0246668146107ce578063c18bc195146107f7578063c8c8ebe414610820578063d257b34f1461084b578063d85ba063146108885761025c565b806395d89b41116100fd57806395d89b41146106e55780639c3b4fdc14610710578063a0d82dc51461073b578063a9059cbb14610766578063bbc0c742146107a35761025c565b806389a30271146106245780638a8c523c1461064f5780638da5cb5b146106665780638ea5220f14610691578063924de9b7146106bc5761025c565b8063313ce567116101d25780636a486a8e116101965780636a486a8e146105265780636ddd17131461055157806370a082311461057c578063715018a6146105b9578063751039fc146105d05780637571336a146105fb5761025c565b8063313ce5671461043f57806349bd5a5e1461046a5780634a62bb65146104955780634fbee193146104c057806366ca9b83146104fd5761025c565b806318160ddd1161021957806318160ddd1461035a5780631816467f14610385578063203e727e146103ae57806323b872dd146103d757806327c8f835146104145761025c565b806302dbd8f81461026157806306fdde031461028a578063095ea7b3146102b557806310d5de53146102f25780631694505e1461032f5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612ad9565b6109c5565b005b34801561029657600080fd5b5061029f610aaf565b6040516102ac9190612bb2565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612c32565b610b41565b6040516102e99190612c8d565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190612ca8565b610b5f565b6040516103269190612c8d565b60405180910390f35b34801561033b57600080fd5b50610344610b7f565b6040516103519190612d34565b60405180910390f35b34801561036657600080fd5b5061036f610ba3565b60405161037c9190612d5e565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190612ca8565b610bad565b005b3480156103ba57600080fd5b506103d560048036038101906103d09190612d79565b610ce9565b005b3480156103e357600080fd5b506103fe60048036038101906103f99190612da6565b610d82565b60405161040b9190612c8d565b60405180910390f35b34801561042057600080fd5b50610429610e7a565b6040516104369190612e08565b60405180910390f35b34801561044b57600080fd5b50610454610e80565b6040516104619190612e3f565b60405180910390f35b34801561047657600080fd5b5061047f610e89565b60405161048c9190612e08565b60405180910390f35b3480156104a157600080fd5b506104aa610ead565b6040516104b79190612c8d565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612ca8565b610ec0565b6040516104f49190612c8d565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190612ad9565b610f16565b005b34801561053257600080fd5b5061053b611000565b6040516105489190612d5e565b60405180910390f35b34801561055d57600080fd5b50610566611006565b6040516105739190612c8d565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190612ca8565b611019565b6040516105b09190612d5e565b60405180910390f35b3480156105c557600080fd5b506105ce611061565b005b3480156105dc57600080fd5b506105e56110e9565b6040516105f29190612c8d565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190612e86565b611189565b005b34801561063057600080fd5b50610639611260565b6040516106469190612e08565b60405180910390f35b34801561065b57600080fd5b50610664611286565b005b34801561067257600080fd5b5061067b61133a565b6040516106889190612e08565b60405180910390f35b34801561069d57600080fd5b506106a6611364565b6040516106b39190612e08565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de9190612ec6565b61138a565b005b3480156106f157600080fd5b506106fa611423565b6040516107079190612bb2565b60405180910390f35b34801561071c57600080fd5b506107256114b5565b6040516107329190612d5e565b60405180910390f35b34801561074757600080fd5b506107506114bb565b60405161075d9190612d5e565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612c32565b6114c1565b60405161079a9190612c8d565b60405180910390f35b3480156107af57600080fd5b506107b86114df565b6040516107c59190612c8d565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190612e86565b6114f2565b005b34801561080357600080fd5b5061081e60048036038101906108199190612d79565b611617565b005b34801561082c57600080fd5b506108356116b0565b6040516108429190612d5e565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d9190612d79565b6116b6565b60405161087f9190612c8d565b60405180910390f35b34801561089457600080fd5b5061089d61180b565b6040516108aa9190612d5e565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d59190612ef3565b611811565b6040516108e79190612d5e565b60405180910390f35b3480156108fc57600080fd5b50610905611898565b6040516109129190612d5e565b60405180910390f35b34801561092757600080fd5b5061093061189e565b60405161093d9190612d5e565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190612ca8565b6118a4565b005b34801561097b57600080fd5b5061098461199c565b6040516109919190612d5e565b60405180910390f35b3480156109a657600080fd5b506109af6119a2565b6040516109bc9190612d5e565b60405180910390f35b6109cd6119a8565b73ffffffffffffffffffffffffffffffffffffffff166109eb61133a565b73ffffffffffffffffffffffffffffffffffffffff1614610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3890612f7f565b60405180910390fd5b8160108190555080601181905550601154601054610a5f9190612fce565b600f81905550600a600f541115610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa290613070565b60405180910390fd5b5050565b606060038054610abe906130bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610aea906130bf565b8015610b375780601f10610b0c57610100808354040283529160200191610b37565b820191906000526020600020905b815481529060010190602001808311610b1a57829003601f168201915b5050505050905090565b6000610b55610b4e6119a8565b84846119b0565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610bb56119a8565b73ffffffffffffffffffffffffffffffffffffffff16610bd361133a565b73ffffffffffffffffffffffffffffffffffffffff1614610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2090612f7f565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610cf16119a8565b73ffffffffffffffffffffffffffffffffffffffff16610d0f61133a565b73ffffffffffffffffffffffffffffffffffffffff1614610d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c90612f7f565b60405180910390fd5b670de0b6b3a764000081610d7991906130f1565b60088190555050565b6000610d8f848484611b7b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610dda6119a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e51906131bd565b60405180910390fd5b610e6e85610e666119a8565b8584036119b0565b60019150509392505050565b61dead81565b60006012905090565b7f0000000000000000000000009217ba1230887163aef0a2f59da2e4b4d7ee02f581565b600b60009054906101000a900460ff1681565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610f1e6119a8565b73ffffffffffffffffffffffffffffffffffffffff16610f3c61133a565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990612f7f565b60405180910390fd5b81600d8190555080600e81905550600e54600d54610fb09190612fce565b600c81905550600a600c541115610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390613070565b60405180910390fd5b5050565b600f5481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110696119a8565b73ffffffffffffffffffffffffffffffffffffffff1661108761133a565b73ffffffffffffffffffffffffffffffffffffffff16146110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490612f7f565b60405180910390fd5b6110e760006124dd565b565b60006110f36119a8565b73ffffffffffffffffffffffffffffffffffffffff1661111161133a565b73ffffffffffffffffffffffffffffffffffffffff1614611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e90612f7f565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6111916119a8565b73ffffffffffffffffffffffffffffffffffffffff166111af61133a565b73ffffffffffffffffffffffffffffffffffffffff1614611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90612f7f565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61128e6119a8565b73ffffffffffffffffffffffffffffffffffffffff166112ac61133a565b73ffffffffffffffffffffffffffffffffffffffff1614611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990612f7f565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113926119a8565b73ffffffffffffffffffffffffffffffffffffffff166113b061133a565b73ffffffffffffffffffffffffffffffffffffffff1614611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90612f7f565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611432906130bf565b80601f016020809104026020016040519081016040528092919081815260200182805461145e906130bf565b80156114ab5780601f10611480576101008083540402835291602001916114ab565b820191906000526020600020905b81548152906001019060200180831161148e57829003601f168201915b5050505050905090565b600d5481565b60105481565b60006114d56114ce6119a8565b8484611b7b565b6001905092915050565b600b60019054906101000a900460ff1681565b6114fa6119a8565b73ffffffffffffffffffffffffffffffffffffffff1661151861133a565b73ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156590612f7f565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161160b9190612c8d565b60405180910390a25050565b61161f6119a8565b73ffffffffffffffffffffffffffffffffffffffff1661163d61133a565b73ffffffffffffffffffffffffffffffffffffffff1614611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90612f7f565b60405180910390fd5b670de0b6b3a7640000816116a791906130f1565b600a8190555050565b60085481565b60006116c06119a8565b73ffffffffffffffffffffffffffffffffffffffff166116de61133a565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90612f7f565b60405180910390fd5b620186a06001611742610ba3565b61174c91906130f1565b611756919061320c565b821015611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f906132af565b60405180910390fd5b6103e860056117a5610ba3565b6117af91906130f1565b6117b9919061320c565b8211156117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f290613341565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600e5481565b6118ac6119a8565b73ffffffffffffffffffffffffffffffffffffffff166118ca61133a565b73ffffffffffffffffffffffffffffffffffffffff1614611920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191790612f7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611987906133d3565b60405180910390fd5b611999816124dd565b50565b60115481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790613465565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a87906134f7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b6e9190612d5e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be290613589565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c529061361b565b60405180910390fd5b6000811415611c7557611c70838360006125a3565b6124d8565b600b60009054906101000a900460ff161561207f57611c9261133a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d005750611cd061133a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d395750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d73575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d8c5750600660149054906101000a900460ff16155b1561207e57600b60019054906101000a900460ff16611e8657601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e465750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90613687565b60405180910390fd5b5b7f0000000000000000000000009217ba1230887163aef0a2f59da2e4b4d7ee02f573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611f2b5750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611fd257600854811115611f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6c90613719565b60405180910390fd5b600a54611f8183611019565b82611f8c9190612fce565b1115611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc490613785565b60405180910390fd5b61207d565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661207c57600a5461202f83611019565b8261203a9190612fce565b111561207b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207290613785565b60405180910390fd5b5b5b5b5b600061208a30611019565b9050600060095482101590508080156120af5750600b60029054906101000a900460ff165b80156120c85750600660149054906101000a900460ff16155b801561211f57507f0000000000000000000000009217ba1230887163aef0a2f59da2e4b4d7ee02f573ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156121755750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121cb5750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561220f576001600660146101000a81548160ff0219169083151502179055506121f3612824565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122c55750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156122cf57600090505b600080600083156124c6577f0000000000000000000000009217ba1230887163aef0a2f59da2e4b4d7ee02f573ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614801561233757506000600f54115b156123a5576123646064612356600f548a61287590919063ffffffff16565b61288b90919063ffffffff16565b9250600f546011548461237791906130f1565b612381919061320c565b9150600f546010548461239491906130f1565b61239e919061320c565b905061246d565b7f0000000000000000000000009217ba1230887163aef0a2f59da2e4b4d7ee02f573ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561240257506000600c54115b1561246c5761242f6064612421600c548a61287590919063ffffffff16565b61288b90919063ffffffff16565b9250600c54600e548461244291906130f1565b61244c919061320c565b9150600c54600d548461245f91906130f1565b612469919061320c565b90505b5b6000831115612482576124818930856125a3565b5b60008211156124b7576124b6307f0000000000000000000000009217ba1230887163aef0a2f59da2e4b4d7ee02f5846125a3565b5b82876124c391906137a5565b96505b6124d18989896125a3565b5050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260a90613589565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267a9061361b565b60405180910390fd5b61268e8383836128a1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270b9061384b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127a79190612fce565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161280b9190612d5e565b60405180910390a361281e8484846128a6565b50505050565b600061282f30611019565b905060008114156128405750612873565b601460095461284f91906130f1565b81111561286857601460095461286591906130f1565b90505b612871816128ab565b505b565b6000818361288391906130f1565b905092915050565b60008183612899919061320c565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156128c8576128c761386b565b5b6040519080825280602002602001820160405280156128f65781602001602082028036833780820191505090505b509050308160008151811061290e5761290d61389a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811061297f5761297e61389a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506129e4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846119b0565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612a689594939291906139c2565b600060405180830381600087803b158015612a8257600080fd5b505af1158015612a96573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612ab681612aa3565b8114612ac157600080fd5b50565b600081359050612ad381612aad565b92915050565b60008060408385031215612af057612aef612a9e565b5b6000612afe85828601612ac4565b9250506020612b0f85828601612ac4565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b53578082015181840152602081019050612b38565b83811115612b62576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b8482612b19565b612b8e8185612b24565b9350612b9e818560208601612b35565b612ba781612b68565b840191505092915050565b60006020820190508181036000830152612bcc8184612b79565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bff82612bd4565b9050919050565b612c0f81612bf4565b8114612c1a57600080fd5b50565b600081359050612c2c81612c06565b92915050565b60008060408385031215612c4957612c48612a9e565b5b6000612c5785828601612c1d565b9250506020612c6885828601612ac4565b9150509250929050565b60008115159050919050565b612c8781612c72565b82525050565b6000602082019050612ca26000830184612c7e565b92915050565b600060208284031215612cbe57612cbd612a9e565b5b6000612ccc84828501612c1d565b91505092915050565b6000819050919050565b6000612cfa612cf5612cf084612bd4565b612cd5565b612bd4565b9050919050565b6000612d0c82612cdf565b9050919050565b6000612d1e82612d01565b9050919050565b612d2e81612d13565b82525050565b6000602082019050612d496000830184612d25565b92915050565b612d5881612aa3565b82525050565b6000602082019050612d736000830184612d4f565b92915050565b600060208284031215612d8f57612d8e612a9e565b5b6000612d9d84828501612ac4565b91505092915050565b600080600060608486031215612dbf57612dbe612a9e565b5b6000612dcd86828701612c1d565b9350506020612dde86828701612c1d565b9250506040612def86828701612ac4565b9150509250925092565b612e0281612bf4565b82525050565b6000602082019050612e1d6000830184612df9565b92915050565b600060ff82169050919050565b612e3981612e23565b82525050565b6000602082019050612e546000830184612e30565b92915050565b612e6381612c72565b8114612e6e57600080fd5b50565b600081359050612e8081612e5a565b92915050565b60008060408385031215612e9d57612e9c612a9e565b5b6000612eab85828601612c1d565b9250506020612ebc85828601612e71565b9150509250929050565b600060208284031215612edc57612edb612a9e565b5b6000612eea84828501612e71565b91505092915050565b60008060408385031215612f0a57612f09612a9e565b5b6000612f1885828601612c1d565b9250506020612f2985828601612c1d565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f69602083612b24565b9150612f7482612f33565b602082019050919050565b60006020820190508181036000830152612f9881612f5c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fd982612aa3565b9150612fe483612aa3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561301957613018612f9f565b5b828201905092915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b600061305a601d83612b24565b915061306582613024565b602082019050919050565b600060208201905081810360008301526130898161304d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130d757607f821691505b602082108114156130eb576130ea613090565b5b50919050565b60006130fc82612aa3565b915061310783612aa3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131405761313f612f9f565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006131a7602883612b24565b91506131b28261314b565b604082019050919050565b600060208201905081810360008301526131d68161319a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061321782612aa3565b915061322283612aa3565b925082613232576132316131dd565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613299603583612b24565b91506132a48261323d565b604082019050919050565b600060208201905081810360008301526132c88161328c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061332b603483612b24565b9150613336826132cf565b604082019050919050565b6000602082019050818103600083015261335a8161331e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133bd602683612b24565b91506133c882613361565b604082019050919050565b600060208201905081810360008301526133ec816133b0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061344f602483612b24565b915061345a826133f3565b604082019050919050565b6000602082019050818103600083015261347e81613442565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006134e1602283612b24565b91506134ec82613485565b604082019050919050565b60006020820190508181036000830152613510816134d4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613573602583612b24565b915061357e82613517565b604082019050919050565b600060208201905081810360008301526135a281613566565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613605602383612b24565b9150613610826135a9565b604082019050919050565b60006020820190508181036000830152613634816135f8565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613671601683612b24565b915061367c8261363b565b602082019050919050565b600060208201905081810360008301526136a081613664565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613703603583612b24565b915061370e826136a7565b604082019050919050565b60006020820190508181036000830152613732816136f6565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061376f601383612b24565b915061377a82613739565b602082019050919050565b6000602082019050818103600083015261379e81613762565b9050919050565b60006137b082612aa3565b91506137bb83612aa3565b9250828210156137ce576137cd612f9f565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613835602683612b24565b9150613840826137d9565b604082019050919050565b6000602082019050818103600083015261386481613828565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006138ee6138e96138e4846138c9565b612cd5565b612aa3565b9050919050565b6138fe816138d3565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61393981612bf4565b82525050565b600061394b8383613930565b60208301905092915050565b6000602082019050919050565b600061396f82613904565b613979818561390f565b935061398483613920565b8060005b838110156139b557815161399c888261393f565b97506139a783613957565b925050600181019050613988565b5085935050505092915050565b600060a0820190506139d76000830188612d4f565b6139e460208301876138f5565b81810360408301526139f68186613964565b9050613a056060830185612df9565b613a126080830184612d4f565b969550505050505056fea264697066735822122003ff4d7642132bbf22bfb8852f0e4618bade06399837157f421dad8d77ce7cb864736f6c634300080a0033

Deployed Bytecode Sourcemap

23630:10468:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28637:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8486:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10653:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24592:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23707:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9606:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29153:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27695:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11304:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23810:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9448:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23765:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24121:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29352:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28318:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24345:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24201:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9777:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1721:103;;;;;;;;;;;;;:::i;:::-;;26999:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27947:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23870:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26835:112;;;;;;;;;;;;;:::i;:::-;;1070:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23973:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28210:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8705:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24275:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24380:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10117:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24161:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28963:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27825:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24006:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27190:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24241:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10355:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24048:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24306:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1979:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24412:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24088:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28637:318;1301:12;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28769:7:::1;28756:10;:20;;;;28806:13;28787:16;:32;;;;28859:16;;28846:10;;:29;;;;:::i;:::-;28830:13;:45;;;;28911:2;28894:13;;:19;;28886:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28637:318:::0;;:::o;8486:100::-;8540:13;8573:5;8566:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8486:100;:::o;10653:169::-;10736:4;10753:39;10762:12;:10;:12::i;:::-;10776:7;10785:6;10753:8;:39::i;:::-;10810:4;10803:11;;10653:169;;;;:::o;24592:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;23707:51::-;;;:::o;9606:108::-;9667:7;9694:12;;9687:19;;9606:108;:::o;29153:189::-;1301:12;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29289:9:::1;;;;;;;;;;;29258:41;;29275:12;29258:41;;;;;;;;;;;;29322:12;29310:9;;:24;;;;;;;;;;;;;;;;;;29153:189:::0;:::o;27695:122::-;1301:12;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27802:6:::1;27792;:17;;;;:::i;:::-;27769:20;:40;;;;27695:122:::0;:::o;11304:492::-;11444:4;11461:36;11471:6;11479:9;11490:6;11461:9;:36::i;:::-;11510:24;11537:11;:19;11549:6;11537:19;;;;;;;;;;;;;;;:33;11557:12;:10;:12::i;:::-;11537:33;;;;;;;;;;;;;;;;11510:60;;11609:6;11589:16;:26;;11581:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11696:57;11705:6;11713:12;:10;:12::i;:::-;11746:6;11727:16;:25;11696:8;:57::i;:::-;11784:4;11777:11;;;11304:492;;;;;:::o;23810:53::-;23856:6;23810:53;:::o;9448:93::-;9506:5;9531:2;9524:9;;9448:93;:::o;23765:38::-;;;:::o;24121:33::-;;;;;;;;;;;;;:::o;29352:126::-;29418:4;29442:19;:28;29462:7;29442:28;;;;;;;;;;;;;;;;;;;;;;;;;29435:35;;29352:126;;;:::o;28318:311::-;1301:12;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28448:7:::1;28436:9;:19;;;;28484:13;28466:15;:31;;;;28535:15;;28523:9;;:27;;;;:::i;:::-;28508:12;:42;;;;28585:2;28569:12;;:18;;28561:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;28318:311:::0;;:::o;24345:28::-;;;;:::o;24201:31::-;;;;;;;;;;;;;:::o;9777:127::-;9851:7;9878:9;:18;9888:7;9878:18;;;;;;;;;;;;;;;;9871:25;;9777:127;;;:::o;1721:103::-;1301:12;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1786:30:::1;1813:1;1786:18;:30::i;:::-;1721:103::o:0;26999:121::-;27051:4;1301:12;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27085:5:::1;27068:14;;:22;;;;;;;;;;;;;;;;;;27108:4;27101:11;;26999:121:::0;:::o;27947:167::-;1301:12;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28102:4:::1;28060:31;:39;28092:6;28060:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;27947:167:::0;;:::o;23870:64::-;;;;;;;;;;;;;:::o;26835:112::-;1301:12;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26906:4:::1;26890:13;;:20;;;;;;;;;;;;;;;;;;26935:4;26921:11;;:18;;;;;;;;;;;;;;;;;;26835:112::o:0;1070:87::-;1116:7;1143:6;;;;;;;;;;;1136:13;;1070:87;:::o;23973:24::-;;;;;;;;;;;;;:::o;28210:100::-;1301:12;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28295:7:::1;28281:11;;:21;;;;;;;;;;;;;;;;;;28210:100:::0;:::o;8705:104::-;8761:13;8794:7;8787:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8705:104;:::o;24275:24::-;;;;:::o;24380:25::-;;;;:::o;10117:175::-;10203:4;10220:42;10230:12;:10;:12::i;:::-;10244:9;10255:6;10220:9;:42::i;:::-;10280:4;10273:11;;10117:175;;;;:::o;24161:33::-;;;;;;;;;;;;;:::o;28963:182::-;1301:12;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29079:8:::1;29048:19;:28;29068:7;29048:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;29119:7;29103:34;;;29128:8;29103:34;;;;;;:::i;:::-;;;;;;;;28963:182:::0;;:::o;27825:114::-;1301:12;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27924:6:::1;27914;:17;;;;:::i;:::-;27902:9;:29;;;;27825:114:::0;:::o;24006:35::-;;;;:::o;27190:497::-;27298:4;1301:12;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27377:6:::1;27372:1;27356:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27355:28;;;;:::i;:::-;27342:9;:41;;27320:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;27532:4;27527:1;27511:13;:11;:13::i;:::-;:17;;;;:::i;:::-;27510:26;;;;:::i;:::-;27497:9;:39;;27475:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;27648:9;27627:18;:30;;;;27675:4;27668:11;;27190:497:::0;;;:::o;24241:27::-;;;;:::o;10355:151::-;10444:7;10471:11;:18;10483:5;10471:18;;;;;;;;;;;;;;;:27;10490:7;10471:27;;;;;;;;;;;;;;;;10464:34;;10355:151;;;;:::o;24048:33::-;;;;:::o;24306:30::-;;;;:::o;1979:201::-;1301:12;:10;:12::i;:::-;1290:23;;:7;:5;:7::i;:::-;:23;;;1282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2088:1:::1;2068:22;;:8;:22;;;;2060:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2144:28;2163:8;2144:18;:28::i;:::-;1979:201:::0;:::o;24412:31::-;;;;:::o;24088:24::-;;;;:::o;250:98::-;303:7;330:10;323:17;;250:98;:::o;14145:380::-;14298:1;14281:19;;:5;:19;;;;14273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14379:1;14360:21;;:7;:21;;;;14352:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14463:6;14433:11;:18;14445:5;14433:18;;;;;;;;;;;;;;;:27;14452:7;14433:27;;;;;;;;;;;;;;;:36;;;;14501:7;14485:32;;14494:5;14485:32;;;14510:6;14485:32;;;;;;:::i;:::-;;;;;;;;14145:380;;;:::o;29486:3679::-;29634:1;29618:18;;:4;:18;;;;29610:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29711:1;29697:16;;:2;:16;;;;29689:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29780:1;29770:6;:11;29766:93;;;29798:28;29814:4;29820:2;29824:1;29798:15;:28::i;:::-;29841:7;;29766:93;29875:14;;;;;;;;;;;29871:1430;;;29936:7;:5;:7::i;:::-;29928:15;;:4;:15;;;;:49;;;;;29970:7;:5;:7::i;:::-;29964:13;;:2;:13;;;;29928:49;:86;;;;;30012:1;29998:16;;:2;:16;;;;29928:86;:128;;;;;30049:6;30035:21;;:2;:21;;;;29928:128;:158;;;;;30078:8;;;;;;;;;;;30077:9;29928:158;29906:1384;;;30126:13;;;;;;;;;;;30121:223;;30198:19;:25;30218:4;30198:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;30227:19;:23;30247:2;30227:23;;;;;;;;;;;;;;;;;;;;;;;;;30198:52;30164:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;30121:223;30558:13;30550:21;;:4;:21;;;:82;;;;;30597:31;:35;30629:2;30597:35;;;;;;;;;;;;;;;;;;;;;;;;;30596:36;30550:82;30524:751;;;30719:20;;30709:6;:30;;30675:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;30927:9;;30910:13;30920:2;30910:9;:13::i;:::-;30901:6;:22;;;;:::i;:::-;:35;;30867:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30524:751;;;31055:31;:35;31087:2;31055:35;;;;;;;;;;;;;;;;;;;;;;;;;31050:225;;31175:9;;31158:13;31168:2;31158:9;:13::i;:::-;31149:6;:22;;;;:::i;:::-;:35;;31115:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;31050:225;30524:751;29906:1384;29871:1430;31313:28;31344:24;31362:4;31344:9;:24::i;:::-;31313:55;;31381:12;31420:18;;31396:20;:42;;31381:57;;31469:7;:35;;;;;31493:11;;;;;;;;;;;31469:35;:61;;;;;31522:8;;;;;;;;;;;31521:9;31469:61;:97;;;;;31553:13;31547:19;;:2;:19;;;31469:97;:140;;;;;31584:19;:25;31604:4;31584:25;;;;;;;;;;;;;;;;;;;;;;;;;31583:26;31469:140;:181;;;;;31627:19;:23;31647:2;31627:23;;;;;;;;;;;;;;;;;;;;;;;;;31626:24;31469:181;31451:313;;;31688:4;31677:8;;:15;;;;;;;;;;;;;;;;;;31709:10;:8;:10::i;:::-;31747:5;31736:8;;:16;;;;;;;;;;;;;;;;;;31451:313;31776:12;31792:8;;;;;;;;;;;31791:9;31776:24;;31902:19;:25;31922:4;31902:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;31931:19;:23;31951:2;31931:23;;;;;;;;;;;;;;;;;;;;;;;;;31902:52;31898:100;;;31981:5;31971:15;;31898:100;32010:12;32037:26;32078:20;32191:7;32187:925;;;32249:13;32243:19;;:2;:19;;;:40;;;;;32282:1;32266:13;;:17;32243:40;32239:583;;;32311:34;32341:3;32311:25;32322:13;;32311:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;32304:41;;32413:13;;32393:16;;32386:4;:23;;;;:::i;:::-;32385:41;;;;:::i;:::-;32364:62;;32482:13;;32468:10;;32461:4;:17;;;;:::i;:::-;32460:35;;;;:::i;:::-;32445:50;;32239:583;;;32565:13;32557:21;;:4;:21;;;:41;;;;;32597:1;32582:12;;:16;32557:41;32553:269;;;32626:33;32655:3;32626:24;32637:12;;32626:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;32619:40;;32726:12;;32707:15;;32700:4;:22;;;;:::i;:::-;32699:39;;;;:::i;:::-;32678:60;;32794:12;;32781:9;;32774:4;:16;;;;:::i;:::-;32773:33;;;;:::i;:::-;32758:48;;32553:269;32239:583;32848:1;32842:4;:7;32838:90;;;32870:42;32886:4;32900;32907;32870:15;:42::i;:::-;32838:90;32967:1;32946:18;:22;32942:128;;;32989:65;33013:4;33020:13;33035:18;32989:15;:65::i;:::-;32942:128;33096:4;33086:14;;;;;:::i;:::-;;;32187:925;33124:33;33140:4;33146:2;33150:6;33124:15;:33::i;:::-;29599:3566;;;;;;29486:3679;;;;:::o;2340:191::-;2414:16;2433:6;;;;;;;;;;;2414:25;;2459:8;2450:6;;:17;;;;;;;;;;;;;;;;;;2514:8;2483:40;;2504:8;2483:40;;;;;;;;;;;;2403:128;2340:191;:::o;12286:733::-;12444:1;12426:20;;:6;:20;;;;12418:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12528:1;12507:23;;:9;:23;;;;12499:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12583:47;12604:6;12612:9;12623:6;12583:20;:47::i;:::-;12643:21;12667:9;:17;12677:6;12667:17;;;;;;;;;;;;;;;;12643:41;;12720:6;12703:13;:23;;12695:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12841:6;12825:13;:22;12805:9;:17;12815:6;12805:17;;;;;;;;;;;;;;;:42;;;;12893:6;12869:9;:20;12879:9;12869:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12934:9;12917:35;;12926:6;12917:35;;;12945:6;12917:35;;;;;;:::i;:::-;;;;;;;;12965:46;12985:6;12993:9;13004:6;12965:19;:46::i;:::-;12407:612;12286:733;;;:::o;33753:340::-;33792:23;33818:24;33836:4;33818:9;:24::i;:::-;33792:50;;33876:1;33857:15;:20;33853:59;;;33894:7;;;33853:59;33967:2;33946:18;;:23;;;;:::i;:::-;33928:15;:41;33924:115;;;34025:2;34004:18;;:23;;;;:::i;:::-;33986:41;;33924:115;34051:34;34069:15;34051:17;:34::i;:::-;33781:312;33753:340;:::o;19598:98::-;19656:7;19687:1;19683;:5;;;;:::i;:::-;19676:12;;19598:98;;;;:::o;19997:::-;20055:7;20086:1;20082;:5;;;;:::i;:::-;20075:12;;19997:98;;;;:::o;15125:125::-;;;;:::o;15854:124::-;;;;:::o;33173:572::-;33300:21;33338:1;33324:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33300:40;;33369:4;33351;33356:1;33351:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;33395:4;;;;;;;;;;;33385;33390:1;33385:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;;;33412:62;33429:4;33444:15;33462:11;33412:8;:62::i;:::-;33513:15;:69;;;33597:11;33623:1;33668:4;33687:9;;;;;;;;;;;33711:15;33513:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33229:516;33173:572;:::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:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:152::-;4731:9;4764:37;4795:5;4764:37;:::i;:::-;4751:50;;4655:152;;;:::o;4813:183::-;4926:63;4983:5;4926:63;:::i;:::-;4921:3;4914:76;4813:183;;:::o;5002:274::-;5121:4;5159:2;5148:9;5144:18;5136:26;;5172:97;5266:1;5255:9;5251:17;5242:6;5172:97;:::i;:::-;5002:274;;;;:::o;5282:118::-;5369:24;5387:5;5369:24;:::i;:::-;5364:3;5357:37;5282:118;;:::o;5406:222::-;5499:4;5537:2;5526:9;5522:18;5514:26;;5550:71;5618:1;5607:9;5603:17;5594:6;5550:71;:::i;:::-;5406:222;;;;:::o;5634:329::-;5693:6;5742:2;5730:9;5721:7;5717:23;5713:32;5710:119;;;5748:79;;:::i;:::-;5710:119;5868:1;5893:53;5938:7;5929:6;5918:9;5914:22;5893:53;:::i;:::-;5883:63;;5839:117;5634:329;;;;:::o;5969:619::-;6046:6;6054;6062;6111:2;6099:9;6090:7;6086:23;6082:32;6079:119;;;6117:79;;:::i;:::-;6079:119;6237:1;6262:53;6307:7;6298:6;6287:9;6283:22;6262:53;:::i;:::-;6252:63;;6208:117;6364:2;6390:53;6435:7;6426:6;6415:9;6411:22;6390:53;:::i;:::-;6380:63;;6335:118;6492:2;6518:53;6563:7;6554:6;6543:9;6539:22;6518:53;:::i;:::-;6508:63;;6463:118;5969:619;;;;;:::o;6594:118::-;6681:24;6699:5;6681:24;:::i;:::-;6676:3;6669:37;6594:118;;:::o;6718:222::-;6811:4;6849:2;6838:9;6834:18;6826:26;;6862:71;6930:1;6919:9;6915:17;6906:6;6862:71;:::i;:::-;6718:222;;;;:::o;6946:86::-;6981:7;7021:4;7014:5;7010:16;6999:27;;6946:86;;;:::o;7038:112::-;7121:22;7137:5;7121:22;:::i;:::-;7116:3;7109:35;7038:112;;:::o;7156:214::-;7245:4;7283:2;7272:9;7268:18;7260:26;;7296:67;7360:1;7349:9;7345:17;7336:6;7296:67;:::i;:::-;7156:214;;;;:::o;7376:116::-;7446:21;7461:5;7446:21;:::i;:::-;7439:5;7436:32;7426:60;;7482:1;7479;7472:12;7426:60;7376:116;:::o;7498:133::-;7541:5;7579:6;7566:20;7557:29;;7595:30;7619:5;7595:30;:::i;:::-;7498:133;;;;:::o;7637:468::-;7702:6;7710;7759:2;7747:9;7738:7;7734:23;7730:32;7727:119;;;7765:79;;:::i;:::-;7727:119;7885:1;7910:53;7955:7;7946:6;7935:9;7931:22;7910:53;:::i;:::-;7900:63;;7856:117;8012:2;8038:50;8080:7;8071:6;8060:9;8056:22;8038:50;:::i;:::-;8028:60;;7983:115;7637:468;;;;;:::o;8111:323::-;8167:6;8216:2;8204:9;8195:7;8191:23;8187:32;8184:119;;;8222:79;;:::i;:::-;8184:119;8342:1;8367:50;8409:7;8400:6;8389:9;8385:22;8367:50;:::i;:::-;8357:60;;8313:114;8111:323;;;;:::o;8440:474::-;8508:6;8516;8565:2;8553:9;8544:7;8540:23;8536:32;8533:119;;;8571:79;;:::i;:::-;8533:119;8691:1;8716:53;8761:7;8752:6;8741:9;8737:22;8716:53;:::i;:::-;8706:63;;8662:117;8818:2;8844:53;8889:7;8880:6;8869:9;8865:22;8844:53;:::i;:::-;8834:63;;8789:118;8440:474;;;;;:::o;8920:182::-;9060:34;9056:1;9048:6;9044:14;9037:58;8920:182;:::o;9108:366::-;9250:3;9271:67;9335:2;9330:3;9271:67;:::i;:::-;9264:74;;9347:93;9436:3;9347:93;:::i;:::-;9465:2;9460:3;9456:12;9449:19;;9108:366;;;:::o;9480:419::-;9646:4;9684:2;9673:9;9669:18;9661:26;;9733:9;9727:4;9723:20;9719:1;9708:9;9704:17;9697:47;9761:131;9887:4;9761:131;:::i;:::-;9753:139;;9480:419;;;:::o;9905:180::-;9953:77;9950:1;9943:88;10050:4;10047:1;10040:15;10074:4;10071:1;10064:15;10091:305;10131:3;10150:20;10168:1;10150:20;:::i;:::-;10145:25;;10184:20;10202:1;10184:20;:::i;:::-;10179:25;;10338:1;10270:66;10266:74;10263:1;10260:81;10257:107;;;10344:18;;:::i;:::-;10257:107;10388:1;10385;10381:9;10374:16;;10091:305;;;;:::o;10402:179::-;10542:31;10538:1;10530:6;10526:14;10519:55;10402:179;:::o;10587:366::-;10729:3;10750:67;10814:2;10809:3;10750:67;:::i;:::-;10743:74;;10826:93;10915:3;10826:93;:::i;:::-;10944:2;10939:3;10935:12;10928:19;;10587:366;;;:::o;10959:419::-;11125:4;11163:2;11152:9;11148:18;11140:26;;11212:9;11206:4;11202:20;11198:1;11187:9;11183:17;11176:47;11240:131;11366:4;11240:131;:::i;:::-;11232:139;;10959:419;;;:::o;11384:180::-;11432:77;11429:1;11422:88;11529:4;11526:1;11519:15;11553:4;11550:1;11543:15;11570:320;11614:6;11651:1;11645:4;11641:12;11631:22;;11698:1;11692:4;11688:12;11719:18;11709:81;;11775:4;11767:6;11763:17;11753:27;;11709:81;11837:2;11829:6;11826:14;11806:18;11803:38;11800:84;;;11856:18;;:::i;:::-;11800:84;11621:269;11570:320;;;:::o;11896:348::-;11936:7;11959:20;11977:1;11959:20;:::i;:::-;11954:25;;11993:20;12011:1;11993:20;:::i;:::-;11988:25;;12181:1;12113:66;12109:74;12106:1;12103:81;12098:1;12091:9;12084:17;12080:105;12077:131;;;12188:18;;:::i;:::-;12077:131;12236:1;12233;12229:9;12218:20;;11896:348;;;;:::o;12250:227::-;12390:34;12386:1;12378:6;12374:14;12367:58;12459:10;12454:2;12446:6;12442:15;12435:35;12250:227;:::o;12483:366::-;12625:3;12646:67;12710:2;12705:3;12646:67;:::i;:::-;12639:74;;12722:93;12811:3;12722:93;:::i;:::-;12840:2;12835:3;12831:12;12824:19;;12483:366;;;:::o;12855:419::-;13021:4;13059:2;13048:9;13044:18;13036:26;;13108:9;13102:4;13098:20;13094:1;13083:9;13079:17;13072:47;13136:131;13262:4;13136:131;:::i;:::-;13128:139;;12855:419;;;:::o;13280:180::-;13328:77;13325:1;13318:88;13425:4;13422:1;13415:15;13449:4;13446:1;13439:15;13466:185;13506:1;13523:20;13541:1;13523:20;:::i;:::-;13518:25;;13557:20;13575:1;13557:20;:::i;:::-;13552:25;;13596:1;13586:35;;13601:18;;:::i;:::-;13586:35;13643:1;13640;13636:9;13631:14;;13466:185;;;;:::o;13657:240::-;13797:34;13793:1;13785:6;13781:14;13774:58;13866:23;13861:2;13853:6;13849:15;13842:48;13657:240;:::o;13903:366::-;14045:3;14066:67;14130:2;14125:3;14066:67;:::i;:::-;14059:74;;14142:93;14231:3;14142:93;:::i;:::-;14260:2;14255:3;14251:12;14244:19;;13903:366;;;:::o;14275:419::-;14441:4;14479:2;14468:9;14464:18;14456:26;;14528:9;14522:4;14518:20;14514:1;14503:9;14499:17;14492:47;14556:131;14682:4;14556:131;:::i;:::-;14548:139;;14275:419;;;:::o;14700:239::-;14840:34;14836:1;14828:6;14824:14;14817:58;14909:22;14904:2;14896:6;14892:15;14885:47;14700:239;:::o;14945:366::-;15087:3;15108:67;15172:2;15167:3;15108:67;:::i;:::-;15101:74;;15184:93;15273:3;15184:93;:::i;:::-;15302:2;15297:3;15293:12;15286:19;;14945:366;;;:::o;15317:419::-;15483:4;15521:2;15510:9;15506:18;15498:26;;15570:9;15564:4;15560:20;15556:1;15545:9;15541:17;15534:47;15598:131;15724:4;15598:131;:::i;:::-;15590:139;;15317:419;;;:::o;15742:225::-;15882:34;15878:1;15870:6;15866:14;15859:58;15951:8;15946:2;15938:6;15934:15;15927:33;15742:225;:::o;15973:366::-;16115:3;16136:67;16200:2;16195:3;16136:67;:::i;:::-;16129:74;;16212:93;16301:3;16212:93;:::i;:::-;16330:2;16325:3;16321:12;16314:19;;15973:366;;;:::o;16345:419::-;16511:4;16549:2;16538:9;16534:18;16526:26;;16598:9;16592:4;16588:20;16584:1;16573:9;16569:17;16562:47;16626:131;16752:4;16626:131;:::i;:::-;16618:139;;16345:419;;;:::o;16770:223::-;16910:34;16906:1;16898:6;16894:14;16887:58;16979:6;16974:2;16966:6;16962:15;16955:31;16770:223;:::o;16999:366::-;17141:3;17162:67;17226:2;17221:3;17162:67;:::i;:::-;17155:74;;17238:93;17327:3;17238:93;:::i;:::-;17356:2;17351:3;17347:12;17340:19;;16999:366;;;:::o;17371:419::-;17537:4;17575:2;17564:9;17560:18;17552:26;;17624:9;17618:4;17614:20;17610:1;17599:9;17595:17;17588:47;17652:131;17778:4;17652:131;:::i;:::-;17644:139;;17371:419;;;:::o;17796:221::-;17936:34;17932:1;17924:6;17920:14;17913:58;18005:4;18000:2;17992:6;17988:15;17981:29;17796:221;:::o;18023:366::-;18165:3;18186:67;18250:2;18245:3;18186:67;:::i;:::-;18179:74;;18262:93;18351:3;18262:93;:::i;:::-;18380:2;18375:3;18371:12;18364:19;;18023:366;;;:::o;18395:419::-;18561:4;18599:2;18588:9;18584:18;18576:26;;18648:9;18642:4;18638:20;18634:1;18623:9;18619:17;18612:47;18676:131;18802:4;18676:131;:::i;:::-;18668:139;;18395:419;;;:::o;18820:224::-;18960:34;18956:1;18948:6;18944:14;18937:58;19029:7;19024:2;19016:6;19012:15;19005:32;18820:224;:::o;19050:366::-;19192:3;19213:67;19277:2;19272:3;19213:67;:::i;:::-;19206:74;;19289:93;19378:3;19289:93;:::i;:::-;19407:2;19402:3;19398:12;19391:19;;19050:366;;;:::o;19422:419::-;19588:4;19626:2;19615:9;19611:18;19603:26;;19675:9;19669:4;19665:20;19661:1;19650:9;19646:17;19639:47;19703:131;19829:4;19703:131;:::i;:::-;19695:139;;19422:419;;;:::o;19847:222::-;19987:34;19983:1;19975:6;19971:14;19964:58;20056:5;20051:2;20043:6;20039:15;20032:30;19847:222;:::o;20075:366::-;20217:3;20238:67;20302:2;20297:3;20238:67;:::i;:::-;20231:74;;20314:93;20403:3;20314:93;:::i;:::-;20432:2;20427:3;20423:12;20416:19;;20075:366;;;:::o;20447:419::-;20613:4;20651:2;20640:9;20636:18;20628:26;;20700:9;20694:4;20690:20;20686:1;20675:9;20671:17;20664:47;20728:131;20854:4;20728:131;:::i;:::-;20720:139;;20447:419;;;:::o;20872:172::-;21012:24;21008:1;21000:6;20996:14;20989:48;20872:172;:::o;21050:366::-;21192:3;21213:67;21277:2;21272:3;21213:67;:::i;:::-;21206:74;;21289:93;21378:3;21289:93;:::i;:::-;21407:2;21402:3;21398:12;21391:19;;21050:366;;;:::o;21422:419::-;21588:4;21626:2;21615:9;21611:18;21603:26;;21675:9;21669:4;21665:20;21661:1;21650:9;21646:17;21639:47;21703:131;21829:4;21703:131;:::i;:::-;21695:139;;21422:419;;;:::o;21847:240::-;21987:34;21983:1;21975:6;21971:14;21964:58;22056:23;22051:2;22043:6;22039:15;22032:48;21847:240;:::o;22093:366::-;22235:3;22256:67;22320:2;22315:3;22256:67;:::i;:::-;22249:74;;22332:93;22421:3;22332:93;:::i;:::-;22450:2;22445:3;22441:12;22434:19;;22093:366;;;:::o;22465:419::-;22631:4;22669:2;22658:9;22654:18;22646:26;;22718:9;22712:4;22708:20;22704:1;22693:9;22689:17;22682:47;22746:131;22872:4;22746:131;:::i;:::-;22738:139;;22465:419;;;:::o;22890:169::-;23030:21;23026:1;23018:6;23014:14;23007:45;22890:169;:::o;23065:366::-;23207:3;23228:67;23292:2;23287:3;23228:67;:::i;:::-;23221:74;;23304:93;23393:3;23304:93;:::i;:::-;23422:2;23417:3;23413:12;23406:19;;23065:366;;;:::o;23437:419::-;23603:4;23641:2;23630:9;23626:18;23618:26;;23690:9;23684:4;23680:20;23676:1;23665:9;23661:17;23654:47;23718:131;23844:4;23718:131;:::i;:::-;23710:139;;23437:419;;;:::o;23862:191::-;23902:4;23922:20;23940:1;23922:20;:::i;:::-;23917:25;;23956:20;23974:1;23956:20;:::i;:::-;23951:25;;23995:1;23992;23989:8;23986:34;;;24000:18;;:::i;:::-;23986:34;24045:1;24042;24038:9;24030:17;;23862:191;;;;:::o;24059:225::-;24199:34;24195:1;24187:6;24183:14;24176:58;24268:8;24263:2;24255:6;24251:15;24244:33;24059:225;:::o;24290:366::-;24432:3;24453:67;24517:2;24512:3;24453:67;:::i;:::-;24446:74;;24529:93;24618:3;24529:93;:::i;:::-;24647:2;24642:3;24638:12;24631:19;;24290:366;;;:::o;24662:419::-;24828:4;24866:2;24855:9;24851:18;24843:26;;24915:9;24909:4;24905:20;24901:1;24890:9;24886:17;24879:47;24943:131;25069:4;24943:131;:::i;:::-;24935:139;;24662:419;;;:::o;25087:180::-;25135:77;25132:1;25125:88;25232:4;25229:1;25222:15;25256:4;25253:1;25246:15;25273:180;25321:77;25318:1;25311:88;25418:4;25415:1;25408:15;25442:4;25439:1;25432:15;25459:85;25504:7;25533:5;25522:16;;25459:85;;;:::o;25550:158::-;25608:9;25641:61;25659:42;25668:32;25694:5;25668:32;:::i;:::-;25659:42;:::i;:::-;25641:61;:::i;:::-;25628:74;;25550:158;;;:::o;25714:147::-;25809:45;25848:5;25809:45;:::i;:::-;25804:3;25797:58;25714:147;;:::o;25867:114::-;25934:6;25968:5;25962:12;25952:22;;25867:114;;;:::o;25987:184::-;26086:11;26120:6;26115:3;26108:19;26160:4;26155:3;26151:14;26136:29;;25987:184;;;;:::o;26177:132::-;26244:4;26267:3;26259:11;;26297:4;26292:3;26288:14;26280:22;;26177:132;;;:::o;26315:108::-;26392:24;26410:5;26392:24;:::i;:::-;26387:3;26380:37;26315:108;;:::o;26429:179::-;26498:10;26519:46;26561:3;26553:6;26519:46;:::i;:::-;26597:4;26592:3;26588:14;26574:28;;26429:179;;;;:::o;26614:113::-;26684:4;26716;26711:3;26707:14;26699:22;;26614:113;;;:::o;26763:732::-;26882:3;26911:54;26959:5;26911:54;:::i;:::-;26981:86;27060:6;27055:3;26981:86;:::i;:::-;26974:93;;27091:56;27141:5;27091:56;:::i;:::-;27170:7;27201:1;27186:284;27211:6;27208:1;27205:13;27186:284;;;27287:6;27281:13;27314:63;27373:3;27358:13;27314:63;:::i;:::-;27307:70;;27400:60;27453:6;27400:60;:::i;:::-;27390:70;;27246:224;27233:1;27230;27226:9;27221:14;;27186:284;;;27190:14;27486:3;27479:10;;26887:608;;;26763:732;;;;:::o;27501:831::-;27764:4;27802:3;27791:9;27787:19;27779:27;;27816:71;27884:1;27873:9;27869:17;27860:6;27816:71;:::i;:::-;27897:80;27973:2;27962:9;27958:18;27949:6;27897:80;:::i;:::-;28024:9;28018:4;28014:20;28009:2;27998:9;27994:18;27987:48;28052:108;28155:4;28146:6;28052:108;:::i;:::-;28044:116;;28170:72;28238:2;28227:9;28223:18;28214:6;28170:72;:::i;:::-;28252:73;28320:3;28309:9;28305:19;28296:6;28252:73;:::i;:::-;27501:831;;;;;;;;:::o

Swarm Source

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