ETH Price: $3,107.30 (-0.27%)
Gas: 7.4 Gwei

Token

God Save the Queen (QUEEN)
 

Overview

Max Total Supply

1,000,000,000,000 QUEEN

Holders

90

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,885,663,440.680000054937192072 QUEEN

Value
$0.00
0x13f5d0fd545dd26122aa7734ca2505c178521981
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:
GodSaveTheQueen

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*

God save our gracious Queen,
Long live our noble Queen,
God save the Queen!
Send her victorious,
Happy and glorious,
Long to reign over us,
God save the Queen!

https://t.me/QueenCommunity

*/


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

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

////// src/MarshallRoganInu.sol
/* pragma solidity >=0.8.10; */

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

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

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

    bool private swapping;

    address public marketingWallet;

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

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

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

    uint256 public buyTotalFees;
    uint256 private buyMarketingFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;

    uint256 public tokensForMarketing;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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



    constructor(address wallet1) ERC20("God Save the Queen", "QUEEN") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee =30;

        uint256 _sellMarketingFee = 30;

        uint256 totalSupply = 1_000_000_000_000 * 1e18;

        maxTransactionAmount = 1_000_000_000_000 * 1e18;
        maxWallet = 1_000_000_000_000 * 1e18;
        swapTokensAtAmount = 20_000_000 * 1e18;

        buyMarketingFee = _buyMarketingFee;
        buyTotalFees = buyMarketingFee;

        sellMarketingFee = _sellMarketingFee;
        sellTotalFees = sellMarketingFee;

        marketingWallet = wallet1; // set as marketing 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 {
        buyMarketingFee = 920;
        buyTotalFees = buyMarketingFee;
        tradingActive = true;
        swapEnabled = true;
    }

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


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

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

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

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

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

    function updateBuyFees(
        uint256 _marketingFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyTotalFees = buyMarketingFee;
        require(buyTotalFees <= 200, "Must keep fees at 20% or less");
    }

    function updateSellFees(
        uint256 _marketingFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellTotalFees = sellMarketingFee;
        require(sellTotalFees <= 300, "Must keep fees at 30% or less");
    }

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

    function manualswap(uint256 amount) external {
        require(amount <= balanceOf(address(this)) && amount > 0, "Wrong amount");
        swapTokensForEth(amount);
    }

    function saveTheQueen() external onlyOwner {
      maxTransactionAmount = 30_000_000_000 * 1e18;
      maxWallet = 30_000_000_000 * 1e18;

      buyMarketingFee = 30;
      buyTotalFees = buyMarketingFee;

      sellMarketingFee = 30;
      sellTotalFees = sellMarketingFee;

    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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


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

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

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

        // Halve the amount of liquidity tokens

        uint256 amountToSwapForETH = contractBalance;

        swapTokensForEth(amountToSwapForETH);

        tokensForMarketing = 0;


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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"wallet1","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saveTheQueen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"_marketingFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"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"}]

60c06040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040516200543b3803806200543b833981810160405281019062000088919062000b2e565b6040518060400160405280601281526020017f476f6420536176652074686520517565656e00000000000000000000000000008152506040518060400160405280600581526020017f515545454e00000000000000000000000000000000000000000000000000000081525081600390805190602001906200010c92919062000a14565b5080600490805190602001906200012592919062000a14565b505050620001486200013c620004d460201b60201c565b620004dc60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000174816001620005a260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021a919062000b2e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000282573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a8919062000b2e565b6040518363ffffffff1660e01b8152600401620002c792919062000b71565b6020604051808303816000875af1158015620002e7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200030d919062000b2e565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200035560a0516001620005a260201b60201c565b6200036a60a05160016200068c60201b60201c565b6000601e90506000601e905060006c0c9f2c9cd04674edea4000000090506c0c9f2c9cd04674edea400000006007819055506c0c9f2c9cd04674edea400000006009819055506a108b2a2c2802909400000060088190555082600d81905550600d54600c8190555081600f81905550600f54600e8190555084600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000445620004376200072d60201b60201c565b60016200075760201b60201c565b620004583060016200075760201b60201c565b6200046d61dead60016200075760201b60201c565b6200048f620004816200072d60201b60201c565b6001620005a260201b60201c565b620004a2306001620005a260201b60201c565b620004b761dead6001620005a260201b60201c565b620004c933826200089160201b60201c565b505050505062000df6565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005b2620004d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005d86200072d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000631576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006289062000bff565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000767620004d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200078d6200072d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007dd9062000bff565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000885919062000c3e565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000904576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008fb9062000cab565b60405180910390fd5b620009186000838362000a0a60201b60201c565b80600260008282546200092c919062000d06565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000983919062000d06565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009ea919062000d74565b60405180910390a362000a066000838362000a0f60201b60201c565b5050565b505050565b505050565b82805462000a229062000dc0565b90600052602060002090601f01602090048101928262000a46576000855562000a92565b82601f1062000a6157805160ff191683800117855562000a92565b8280016001018555821562000a92579182015b8281111562000a9157825182559160200191906001019062000a74565b5b50905062000aa1919062000aa5565b5090565b5b8082111562000ac057600081600090555060010162000aa6565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000af68262000ac9565b9050919050565b62000b088162000ae9565b811462000b1457600080fd5b50565b60008151905062000b288162000afd565b92915050565b60006020828403121562000b475762000b4662000ac4565b5b600062000b578482850162000b17565b91505092915050565b62000b6b8162000ae9565b82525050565b600060408201905062000b88600083018562000b60565b62000b97602083018462000b60565b9392505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000be760208362000b9e565b915062000bf48262000baf565b602082019050919050565b6000602082019050818103600083015262000c1a8162000bd8565b9050919050565b60008115159050919050565b62000c388162000c21565b82525050565b600060208201905062000c55600083018462000c2d565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c93601f8362000b9e565b915062000ca08262000c5b565b602082019050919050565b6000602082019050818103600083015262000cc68162000c84565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d138262000ccd565b915062000d208362000ccd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d585762000d5762000cd7565b5b828201905092915050565b62000d6e8162000ccd565b82525050565b600060208201905062000d8b600083018462000d63565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000dd957607f821691505b6020821081141562000df05762000def62000d91565b5b50919050565b60805160a05161460362000e3860003960008181610eed0152611612015260008181610b3101528181612c5b01528181612d3c0152612d6301526146036000f3fe6080604052600436106102765760003560e01c806375f0a8741161014f578063b62496f5116100c1578063d85ba0631161007a578063d85ba0631461094f578063dd62ed3e1461097a578063e2f45605146109b7578063eba4c333146109e2578063f2fde38b14610a0b578063f8b45b0514610a345761027d565b8063b62496f51461082d578063bbc0c7421461086a578063c024666814610895578063c18bc195146108be578063c8c8ebe4146108e7578063d257b34f146109125761027d565b8063924de9b711610113578063924de9b71461070d57806395d89b41146107365780639a7a23d614610761578063a457c2d71461078a578063a9059cbb146107c7578063aacebbe3146108045761027d565b806375f0a8741461064c578063881dce60146106775780638a8c523c146106a05780638da5cb5b146106b757806392136913146106e25761027d565b80634639727f116101e85780636fc3eaec116101ac5780636fc3eaec1461056457806370a082311461057b578063715018a6146105b857806371fc4688146105cf578063751039fc146105f85780637571336a146106235761027d565b80634639727f146104a157806349bd5a5e146104b85780634a62bb65146104e35780636a486a8e1461050e5780636ddd1713146105395761027d565b80631f3fed8f1161023a5780631f3fed8f1461037d578063203e727e146103a857806323b872dd146103d157806327c8f8351461040e578063313ce5671461043957806339509351146104645761027d565b806306fdde0314610282578063095ea7b3146102ad57806310d5de53146102ea5780631694505e1461032757806318160ddd146103525761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610a5f565b6040516102a491906132ee565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf91906133a9565b610af1565b6040516102e19190613404565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c919061341f565b610b0f565b60405161031e9190613404565b60405180910390f35b34801561033357600080fd5b5061033c610b2f565b60405161034991906134ab565b60405180910390f35b34801561035e57600080fd5b50610367610b53565b60405161037491906134d5565b60405180910390f35b34801561038957600080fd5b50610392610b5d565b60405161039f91906134d5565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca91906134f0565b610b63565b005b3480156103dd57600080fd5b506103f860048036038101906103f3919061351d565b610c72565b6040516104059190613404565b60405180910390f35b34801561041a57600080fd5b50610423610d6a565b604051610430919061357f565b60405180910390f35b34801561044557600080fd5b5061044e610d70565b60405161045b91906135b6565b60405180910390f35b34801561047057600080fd5b5061048b600480360381019061048691906133a9565b610d79565b6040516104989190613404565b60405180910390f35b3480156104ad57600080fd5b506104b6610e25565b005b3480156104c457600080fd5b506104cd610eeb565b6040516104da919061357f565b60405180910390f35b3480156104ef57600080fd5b506104f8610f0f565b6040516105059190613404565b60405180910390f35b34801561051a57600080fd5b50610523610f22565b60405161053091906134d5565b60405180910390f35b34801561054557600080fd5b5061054e610f28565b60405161055b9190613404565b60405180910390f35b34801561057057600080fd5b50610579610f3b565b005b34801561058757600080fd5b506105a2600480360381019061059d919061341f565b610fce565b6040516105af91906134d5565b60405180910390f35b3480156105c457600080fd5b506105cd611016565b005b3480156105db57600080fd5b506105f660048036038101906105f191906134f0565b61109e565b005b34801561060457600080fd5b5061060d611173565b60405161061a9190613404565b60405180910390f35b34801561062f57600080fd5b5061064a600480360381019061064591906135fd565b611213565b005b34801561065857600080fd5b506106616112ea565b60405161066e919061357f565b60405180910390f35b34801561068357600080fd5b5061069e600480360381019061069991906134f0565b611310565b005b3480156106ac57600080fd5b506106b5611373565b005b3480156106c357600080fd5b506106cc611439565b6040516106d9919061357f565b60405180910390f35b3480156106ee57600080fd5b506106f7611463565b60405161070491906134d5565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f919061363d565b611469565b005b34801561074257600080fd5b5061074b611502565b60405161075891906132ee565b60405180910390f35b34801561076d57600080fd5b50610788600480360381019061078391906135fd565b611594565b005b34801561079657600080fd5b506107b160048036038101906107ac91906133a9565b6116ad565b6040516107be9190613404565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e991906133a9565b611798565b6040516107fb9190613404565b60405180910390f35b34801561081057600080fd5b5061082b6004803603810190610826919061341f565b6117b6565b005b34801561083957600080fd5b50610854600480360381019061084f919061341f565b6118f2565b6040516108619190613404565b60405180910390f35b34801561087657600080fd5b5061087f611912565b60405161088c9190613404565b60405180910390f35b3480156108a157600080fd5b506108bc60048036038101906108b791906135fd565b611925565b005b3480156108ca57600080fd5b506108e560048036038101906108e091906134f0565b611a4a565b005b3480156108f357600080fd5b506108fc611b59565b60405161090991906134d5565b60405180910390f35b34801561091e57600080fd5b50610939600480360381019061093491906134f0565b611b5f565b6040516109469190613404565b60405180910390f35b34801561095b57600080fd5b50610964611cb4565b60405161097191906134d5565b60405180910390f35b34801561098657600080fd5b506109a1600480360381019061099c919061366a565b611cba565b6040516109ae91906134d5565b60405180910390f35b3480156109c357600080fd5b506109cc611d41565b6040516109d991906134d5565b60405180910390f35b3480156109ee57600080fd5b50610a096004803603810190610a0491906134f0565b611d47565b005b348015610a1757600080fd5b50610a326004803603810190610a2d919061341f565b611e1d565b005b348015610a4057600080fd5b50610a49611f15565b604051610a5691906134d5565b60405180910390f35b606060038054610a6e906136d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a906136d9565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b5050505050905090565b6000610b05610afe611f1b565b8484611f23565b6001905092915050565b60126020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60105481565b610b6b611f1b565b73ffffffffffffffffffffffffffffffffffffffff16610b89611439565b73ffffffffffffffffffffffffffffffffffffffff1614610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613757565b60405180910390fd5b670de0b6b3a76400006103e86001610bf5610b53565b610bff91906137a6565b610c09919061382f565b610c13919061382f565b811015610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c906138d2565b60405180910390fd5b670de0b6b3a764000081610c6991906137a6565b60078190555050565b6000610c7f8484846120ee565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610cca611f1b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190613964565b60405180910390fd5b610d5e85610d56611f1b565b858403611f23565b60019150509392505050565b61dead81565b60006012905090565b6000610e1b610d86611f1b565b848460016000610d94611f1b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e169190613984565b611f23565b6001905092915050565b610e2d611f1b565b73ffffffffffffffffffffffffffffffffffffffff16610e4b611439565b73ffffffffffffffffffffffffffffffffffffffff1614610ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9890613757565b60405180910390fd5b6b60ef6b1aba6f0723300000006007819055506b60ef6b1aba6f072330000000600981905550601e600d81905550600d54600c81905550601e600f81905550600f54600e81905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900460ff1681565b600e5481565b600a60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610f8390613a0b565b60006040518083038185875af1925050503d8060008114610fc0576040519150601f19603f3d011682016040523d82523d6000602084013e610fc5565b606091505b50508091505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61101e611f1b565b73ffffffffffffffffffffffffffffffffffffffff1661103c611439565b73ffffffffffffffffffffffffffffffffffffffff1614611092576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108990613757565b60405180910390fd5b61109c6000612af6565b565b6110a6611f1b565b73ffffffffffffffffffffffffffffffffffffffff166110c4611439565b73ffffffffffffffffffffffffffffffffffffffff161461111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190613757565b60405180910390fd5b80600d81905550600d54600c8190555060c8600c541115611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116790613a6c565b60405180910390fd5b50565b600061117d611f1b565b73ffffffffffffffffffffffffffffffffffffffff1661119b611439565b73ffffffffffffffffffffffffffffffffffffffff16146111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613757565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b61121b611f1b565b73ffffffffffffffffffffffffffffffffffffffff16611239611439565b73ffffffffffffffffffffffffffffffffffffffff161461128f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128690613757565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61131930610fce565b81111580156113285750600081115b611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90613ad8565b60405180910390fd5b61137081612bbc565b50565b61137b611f1b565b73ffffffffffffffffffffffffffffffffffffffff16611399611439565b73ffffffffffffffffffffffffffffffffffffffff16146113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e690613757565b60405180910390fd5b610398600d81905550600d54600c819055506001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b611471611f1b565b73ffffffffffffffffffffffffffffffffffffffff1661148f611439565b73ffffffffffffffffffffffffffffffffffffffff16146114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90613757565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611511906136d9565b80601f016020809104026020016040519081016040528092919081815260200182805461153d906136d9565b801561158a5780601f1061155f5761010080835404028352916020019161158a565b820191906000526020600020905b81548152906001019060200180831161156d57829003601f168201915b5050505050905090565b61159c611f1b565b73ffffffffffffffffffffffffffffffffffffffff166115ba611439565b73ffffffffffffffffffffffffffffffffffffffff1614611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790613757565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561169f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169690613b6a565b60405180910390fd5b6116a98282612df9565b5050565b600080600160006116bc611f1b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090613bfc565b60405180910390fd5b61178d611784611f1b565b85858403611f23565b600191505092915050565b60006117ac6117a5611f1b565b84846120ee565b6001905092915050565b6117be611f1b565b73ffffffffffffffffffffffffffffffffffffffff166117dc611439565b73ffffffffffffffffffffffffffffffffffffffff1614611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990613757565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b61192d611f1b565b73ffffffffffffffffffffffffffffffffffffffff1661194b611439565b73ffffffffffffffffffffffffffffffffffffffff16146119a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199890613757565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611a3e9190613404565b60405180910390a25050565b611a52611f1b565b73ffffffffffffffffffffffffffffffffffffffff16611a70611439565b73ffffffffffffffffffffffffffffffffffffffff1614611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd90613757565b60405180910390fd5b670de0b6b3a76400006103e86005611adc610b53565b611ae691906137a6565b611af0919061382f565b611afa919061382f565b811015611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390613c8e565b60405180910390fd5b670de0b6b3a764000081611b5091906137a6565b60098190555050565b60075481565b6000611b69611f1b565b73ffffffffffffffffffffffffffffffffffffffff16611b87611439565b73ffffffffffffffffffffffffffffffffffffffff1614611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490613757565b60405180910390fd5b620186a06001611beb610b53565b611bf591906137a6565b611bff919061382f565b821015611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890613d20565b60405180910390fd5b6103e86005611c4e610b53565b611c5891906137a6565b611c62919061382f565b821115611ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9b90613db2565b60405180910390fd5b8160088190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b611d4f611f1b565b73ffffffffffffffffffffffffffffffffffffffff16611d6d611439565b73ffffffffffffffffffffffffffffffffffffffff1614611dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dba90613757565b60405180910390fd5b80600f81905550600f54600e8190555061012c600e541115611e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1190613e1e565b60405180910390fd5b50565b611e25611f1b565b73ffffffffffffffffffffffffffffffffffffffff16611e43611439565b73ffffffffffffffffffffffffffffffffffffffff1614611e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9090613757565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0090613eb0565b60405180910390fd5b611f1281612af6565b50565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a90613f42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa90613fd4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120e191906134d5565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561215e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215590614066565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c5906140f8565b60405180910390fd5b60008114156121e8576121e383836000612e9a565b612af1565b600a60009054906101000a900460ff16156126e357612205611439565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122735750612243611439565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122ac5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122e6575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122ff5750600560149054906101000a900460ff16155b156126e257600a60019054906101000a900460ff166123f957601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123b95750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6123f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ef90614164565b60405180910390fd5b5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561249c5750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612543576007548111156124e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dd906141f6565b60405180910390fd5b6009546124f283610fce565b826124fd9190613984565b111561253e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253590614262565b60405180910390fd5b6126e1565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125e65750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561263557600754811115612630576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612627906142f4565b60405180910390fd5b6126e0565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166126df5760095461269283610fce565b8261269d9190613984565b11156126de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d590614262565b60405180910390fd5b5b5b5b5b5b60006126ee30610fce565b9050600060085482101590508080156127135750600a60029054906101000a900460ff165b801561272c5750600560149054906101000a900460ff16155b80156127825750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127d85750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561282e5750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612872576001600560146101000a81548160ff02191690831515021790555061285661311b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129285750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561293257600090505b60008115612ae157601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561299557506000600e54115b156129fd576129c36103e86129b5600e548861321f90919063ffffffff16565b61323590919063ffffffff16565b9050600e54600f54826129d691906137a6565b6129e0919061382f565b601060008282546129f19190613984565b92505081905550612abd565b601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a5857506000600c54115b15612abc57612a866103e8612a78600c548861321f90919063ffffffff16565b61323590919063ffffffff16565b9050600c54600d5482612a9991906137a6565b612aa3919061382f565b60106000828254612ab49190613984565b925050819055505b5b6000811115612ad257612ad1873083612e9a565b5b8085612ade9190614314565b94505b612aec878787612e9a565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff811115612bd957612bd8614348565b5b604051908082528060200260200182016040528015612c075781602001602082028036833780820191505090505b5090503081600081518110612c1f57612c1e614377565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ce891906143bb565b81600181518110612cfc57612cfb614377565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612d61307f000000000000000000000000000000000000000000000000000000000000000084611f23565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612dc39594939291906144e1565b600060405180830381600087803b158015612ddd57600080fd5b505af1158015612df1573d6000803e3d6000fd5b505050505050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0190614066565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f71906140f8565b60405180910390fd5b612f8583838361324b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561300b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613002906145ad565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461309e9190613984565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161310291906134d5565b60405180910390a3613115848484613250565b50505050565b600061312630610fce565b90506000601054905060008083148061313f5750600082145b1561314c5750505061321d565b601460085461315b91906137a6565b83111561317457601460085461317191906137a6565b92505b600083905061318281612bbc565b6000601081905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516131d090613a0b565b60006040518083038185875af1925050503d806000811461320d576040519150601f19603f3d011682016040523d82523d6000602084013e613212565b606091505b505080925050505050505b565b6000818361322d91906137a6565b905092915050565b60008183613243919061382f565b905092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561328f578082015181840152602081019050613274565b8381111561329e576000848401525b50505050565b6000601f19601f8301169050919050565b60006132c082613255565b6132ca8185613260565b93506132da818560208601613271565b6132e3816132a4565b840191505092915050565b6000602082019050818103600083015261330881846132b5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061334082613315565b9050919050565b61335081613335565b811461335b57600080fd5b50565b60008135905061336d81613347565b92915050565b6000819050919050565b61338681613373565b811461339157600080fd5b50565b6000813590506133a38161337d565b92915050565b600080604083850312156133c0576133bf613310565b5b60006133ce8582860161335e565b92505060206133df85828601613394565b9150509250929050565b60008115159050919050565b6133fe816133e9565b82525050565b600060208201905061341960008301846133f5565b92915050565b60006020828403121561343557613434613310565b5b60006134438482850161335e565b91505092915050565b6000819050919050565b600061347161346c61346784613315565b61344c565b613315565b9050919050565b600061348382613456565b9050919050565b600061349582613478565b9050919050565b6134a58161348a565b82525050565b60006020820190506134c0600083018461349c565b92915050565b6134cf81613373565b82525050565b60006020820190506134ea60008301846134c6565b92915050565b60006020828403121561350657613505613310565b5b600061351484828501613394565b91505092915050565b60008060006060848603121561353657613535613310565b5b60006135448682870161335e565b93505060206135558682870161335e565b925050604061356686828701613394565b9150509250925092565b61357981613335565b82525050565b60006020820190506135946000830184613570565b92915050565b600060ff82169050919050565b6135b08161359a565b82525050565b60006020820190506135cb60008301846135a7565b92915050565b6135da816133e9565b81146135e557600080fd5b50565b6000813590506135f7816135d1565b92915050565b6000806040838503121561361457613613613310565b5b60006136228582860161335e565b9250506020613633858286016135e8565b9150509250929050565b60006020828403121561365357613652613310565b5b6000613661848285016135e8565b91505092915050565b6000806040838503121561368157613680613310565b5b600061368f8582860161335e565b92505060206136a08582860161335e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136f157607f821691505b60208210811415613705576137046136aa565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613741602083613260565b915061374c8261370b565b602082019050919050565b6000602082019050818103600083015261377081613734565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137b182613373565b91506137bc83613373565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137f5576137f4613777565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061383a82613373565b915061384583613373565b92508261385557613854613800565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006138bc602f83613260565b91506138c782613860565b604082019050919050565b600060208201905081810360008301526138eb816138af565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061394e602883613260565b9150613959826138f2565b604082019050919050565b6000602082019050818103600083015261397d81613941565b9050919050565b600061398f82613373565b915061399a83613373565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139cf576139ce613777565b5b828201905092915050565b600081905092915050565b50565b60006139f56000836139da565b9150613a00826139e5565b600082019050919050565b6000613a16826139e8565b9150819050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613a56601d83613260565b9150613a6182613a20565b602082019050919050565b60006020820190508181036000830152613a8581613a49565b9050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b6000613ac2600c83613260565b9150613acd82613a8c565b602082019050919050565b60006020820190508181036000830152613af181613ab5565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613b54603983613260565b9150613b5f82613af8565b604082019050919050565b60006020820190508181036000830152613b8381613b47565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613be6602583613260565b9150613bf182613b8a565b604082019050919050565b60006020820190508181036000830152613c1581613bd9565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613c78602483613260565b9150613c8382613c1c565b604082019050919050565b60006020820190508181036000830152613ca781613c6b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613d0a603583613260565b9150613d1582613cae565b604082019050919050565b60006020820190508181036000830152613d3981613cfd565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613d9c603483613260565b9150613da782613d40565b604082019050919050565b60006020820190508181036000830152613dcb81613d8f565b9050919050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000613e08601d83613260565b9150613e1382613dd2565b602082019050919050565b60006020820190508181036000830152613e3781613dfb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e9a602683613260565b9150613ea582613e3e565b604082019050919050565b60006020820190508181036000830152613ec981613e8d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613f2c602483613260565b9150613f3782613ed0565b604082019050919050565b60006020820190508181036000830152613f5b81613f1f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fbe602283613260565b9150613fc982613f62565b604082019050919050565b60006020820190508181036000830152613fed81613fb1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614050602583613260565b915061405b82613ff4565b604082019050919050565b6000602082019050818103600083015261407f81614043565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006140e2602383613260565b91506140ed82614086565b604082019050919050565b60006020820190508181036000830152614111816140d5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061414e601683613260565b915061415982614118565b602082019050919050565b6000602082019050818103600083015261417d81614141565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006141e0603583613260565b91506141eb82614184565b604082019050919050565b6000602082019050818103600083015261420f816141d3565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061424c601383613260565b915061425782614216565b602082019050919050565b6000602082019050818103600083015261427b8161423f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006142de603683613260565b91506142e982614282565b604082019050919050565b6000602082019050818103600083015261430d816142d1565b9050919050565b600061431f82613373565b915061432a83613373565b92508282101561433d5761433c613777565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506143b581613347565b92915050565b6000602082840312156143d1576143d0613310565b5b60006143df848285016143a6565b91505092915050565b6000819050919050565b600061440d614408614403846143e8565b61344c565b613373565b9050919050565b61441d816143f2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61445881613335565b82525050565b600061446a838361444f565b60208301905092915050565b6000602082019050919050565b600061448e82614423565b614498818561442e565b93506144a38361443f565b8060005b838110156144d45781516144bb888261445e565b97506144c683614476565b9250506001810190506144a7565b5085935050505092915050565b600060a0820190506144f660008301886134c6565b6145036020830187614414565b81810360408301526145158186614483565b90506145246060830185613570565b61453160808301846134c6565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614597602683613260565b91506145a28261453b565b604082019050919050565b600060208201905081810360008301526145c68161458a565b905091905056fea2646970667358221220c1d0faaf1bc3b47c1b465e5b784e6e001e56997b3fb70d463dc007cd7f82e3d764736f6c634300080a003300000000000000000000000093112e5b366354478be2e87e7b4168d171fc2f08

Deployed Bytecode

0x6080604052600436106102765760003560e01c806375f0a8741161014f578063b62496f5116100c1578063d85ba0631161007a578063d85ba0631461094f578063dd62ed3e1461097a578063e2f45605146109b7578063eba4c333146109e2578063f2fde38b14610a0b578063f8b45b0514610a345761027d565b8063b62496f51461082d578063bbc0c7421461086a578063c024666814610895578063c18bc195146108be578063c8c8ebe4146108e7578063d257b34f146109125761027d565b8063924de9b711610113578063924de9b71461070d57806395d89b41146107365780639a7a23d614610761578063a457c2d71461078a578063a9059cbb146107c7578063aacebbe3146108045761027d565b806375f0a8741461064c578063881dce60146106775780638a8c523c146106a05780638da5cb5b146106b757806392136913146106e25761027d565b80634639727f116101e85780636fc3eaec116101ac5780636fc3eaec1461056457806370a082311461057b578063715018a6146105b857806371fc4688146105cf578063751039fc146105f85780637571336a146106235761027d565b80634639727f146104a157806349bd5a5e146104b85780634a62bb65146104e35780636a486a8e1461050e5780636ddd1713146105395761027d565b80631f3fed8f1161023a5780631f3fed8f1461037d578063203e727e146103a857806323b872dd146103d157806327c8f8351461040e578063313ce5671461043957806339509351146104645761027d565b806306fdde0314610282578063095ea7b3146102ad57806310d5de53146102ea5780631694505e1461032757806318160ddd146103525761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610a5f565b6040516102a491906132ee565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf91906133a9565b610af1565b6040516102e19190613404565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c919061341f565b610b0f565b60405161031e9190613404565b60405180910390f35b34801561033357600080fd5b5061033c610b2f565b60405161034991906134ab565b60405180910390f35b34801561035e57600080fd5b50610367610b53565b60405161037491906134d5565b60405180910390f35b34801561038957600080fd5b50610392610b5d565b60405161039f91906134d5565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca91906134f0565b610b63565b005b3480156103dd57600080fd5b506103f860048036038101906103f3919061351d565b610c72565b6040516104059190613404565b60405180910390f35b34801561041a57600080fd5b50610423610d6a565b604051610430919061357f565b60405180910390f35b34801561044557600080fd5b5061044e610d70565b60405161045b91906135b6565b60405180910390f35b34801561047057600080fd5b5061048b600480360381019061048691906133a9565b610d79565b6040516104989190613404565b60405180910390f35b3480156104ad57600080fd5b506104b6610e25565b005b3480156104c457600080fd5b506104cd610eeb565b6040516104da919061357f565b60405180910390f35b3480156104ef57600080fd5b506104f8610f0f565b6040516105059190613404565b60405180910390f35b34801561051a57600080fd5b50610523610f22565b60405161053091906134d5565b60405180910390f35b34801561054557600080fd5b5061054e610f28565b60405161055b9190613404565b60405180910390f35b34801561057057600080fd5b50610579610f3b565b005b34801561058757600080fd5b506105a2600480360381019061059d919061341f565b610fce565b6040516105af91906134d5565b60405180910390f35b3480156105c457600080fd5b506105cd611016565b005b3480156105db57600080fd5b506105f660048036038101906105f191906134f0565b61109e565b005b34801561060457600080fd5b5061060d611173565b60405161061a9190613404565b60405180910390f35b34801561062f57600080fd5b5061064a600480360381019061064591906135fd565b611213565b005b34801561065857600080fd5b506106616112ea565b60405161066e919061357f565b60405180910390f35b34801561068357600080fd5b5061069e600480360381019061069991906134f0565b611310565b005b3480156106ac57600080fd5b506106b5611373565b005b3480156106c357600080fd5b506106cc611439565b6040516106d9919061357f565b60405180910390f35b3480156106ee57600080fd5b506106f7611463565b60405161070491906134d5565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f919061363d565b611469565b005b34801561074257600080fd5b5061074b611502565b60405161075891906132ee565b60405180910390f35b34801561076d57600080fd5b50610788600480360381019061078391906135fd565b611594565b005b34801561079657600080fd5b506107b160048036038101906107ac91906133a9565b6116ad565b6040516107be9190613404565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e991906133a9565b611798565b6040516107fb9190613404565b60405180910390f35b34801561081057600080fd5b5061082b6004803603810190610826919061341f565b6117b6565b005b34801561083957600080fd5b50610854600480360381019061084f919061341f565b6118f2565b6040516108619190613404565b60405180910390f35b34801561087657600080fd5b5061087f611912565b60405161088c9190613404565b60405180910390f35b3480156108a157600080fd5b506108bc60048036038101906108b791906135fd565b611925565b005b3480156108ca57600080fd5b506108e560048036038101906108e091906134f0565b611a4a565b005b3480156108f357600080fd5b506108fc611b59565b60405161090991906134d5565b60405180910390f35b34801561091e57600080fd5b50610939600480360381019061093491906134f0565b611b5f565b6040516109469190613404565b60405180910390f35b34801561095b57600080fd5b50610964611cb4565b60405161097191906134d5565b60405180910390f35b34801561098657600080fd5b506109a1600480360381019061099c919061366a565b611cba565b6040516109ae91906134d5565b60405180910390f35b3480156109c357600080fd5b506109cc611d41565b6040516109d991906134d5565b60405180910390f35b3480156109ee57600080fd5b50610a096004803603810190610a0491906134f0565b611d47565b005b348015610a1757600080fd5b50610a326004803603810190610a2d919061341f565b611e1d565b005b348015610a4057600080fd5b50610a49611f15565b604051610a5691906134d5565b60405180910390f35b606060038054610a6e906136d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a906136d9565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b5050505050905090565b6000610b05610afe611f1b565b8484611f23565b6001905092915050565b60126020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60105481565b610b6b611f1b565b73ffffffffffffffffffffffffffffffffffffffff16610b89611439565b73ffffffffffffffffffffffffffffffffffffffff1614610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613757565b60405180910390fd5b670de0b6b3a76400006103e86001610bf5610b53565b610bff91906137a6565b610c09919061382f565b610c13919061382f565b811015610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c906138d2565b60405180910390fd5b670de0b6b3a764000081610c6991906137a6565b60078190555050565b6000610c7f8484846120ee565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610cca611f1b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190613964565b60405180910390fd5b610d5e85610d56611f1b565b858403611f23565b60019150509392505050565b61dead81565b60006012905090565b6000610e1b610d86611f1b565b848460016000610d94611f1b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e169190613984565b611f23565b6001905092915050565b610e2d611f1b565b73ffffffffffffffffffffffffffffffffffffffff16610e4b611439565b73ffffffffffffffffffffffffffffffffffffffff1614610ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9890613757565b60405180910390fd5b6b60ef6b1aba6f0723300000006007819055506b60ef6b1aba6f072330000000600981905550601e600d81905550600d54600c81905550601e600f81905550600f54600e81905550565b7f0000000000000000000000002796b809b5f72cb1bfc04bdc94146fa66c8b7a2781565b600a60009054906101000a900460ff1681565b600e5481565b600a60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610f8390613a0b565b60006040518083038185875af1925050503d8060008114610fc0576040519150601f19603f3d011682016040523d82523d6000602084013e610fc5565b606091505b50508091505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61101e611f1b565b73ffffffffffffffffffffffffffffffffffffffff1661103c611439565b73ffffffffffffffffffffffffffffffffffffffff1614611092576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108990613757565b60405180910390fd5b61109c6000612af6565b565b6110a6611f1b565b73ffffffffffffffffffffffffffffffffffffffff166110c4611439565b73ffffffffffffffffffffffffffffffffffffffff161461111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190613757565b60405180910390fd5b80600d81905550600d54600c8190555060c8600c541115611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116790613a6c565b60405180910390fd5b50565b600061117d611f1b565b73ffffffffffffffffffffffffffffffffffffffff1661119b611439565b73ffffffffffffffffffffffffffffffffffffffff16146111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613757565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b61121b611f1b565b73ffffffffffffffffffffffffffffffffffffffff16611239611439565b73ffffffffffffffffffffffffffffffffffffffff161461128f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128690613757565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61131930610fce565b81111580156113285750600081115b611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90613ad8565b60405180910390fd5b61137081612bbc565b50565b61137b611f1b565b73ffffffffffffffffffffffffffffffffffffffff16611399611439565b73ffffffffffffffffffffffffffffffffffffffff16146113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e690613757565b60405180910390fd5b610398600d81905550600d54600c819055506001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b611471611f1b565b73ffffffffffffffffffffffffffffffffffffffff1661148f611439565b73ffffffffffffffffffffffffffffffffffffffff16146114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90613757565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611511906136d9565b80601f016020809104026020016040519081016040528092919081815260200182805461153d906136d9565b801561158a5780601f1061155f5761010080835404028352916020019161158a565b820191906000526020600020905b81548152906001019060200180831161156d57829003601f168201915b5050505050905090565b61159c611f1b565b73ffffffffffffffffffffffffffffffffffffffff166115ba611439565b73ffffffffffffffffffffffffffffffffffffffff1614611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790613757565b60405180910390fd5b7f0000000000000000000000002796b809b5f72cb1bfc04bdc94146fa66c8b7a2773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561169f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169690613b6a565b60405180910390fd5b6116a98282612df9565b5050565b600080600160006116bc611f1b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090613bfc565b60405180910390fd5b61178d611784611f1b565b85858403611f23565b600191505092915050565b60006117ac6117a5611f1b565b84846120ee565b6001905092915050565b6117be611f1b565b73ffffffffffffffffffffffffffffffffffffffff166117dc611439565b73ffffffffffffffffffffffffffffffffffffffff1614611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990613757565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b61192d611f1b565b73ffffffffffffffffffffffffffffffffffffffff1661194b611439565b73ffffffffffffffffffffffffffffffffffffffff16146119a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199890613757565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611a3e9190613404565b60405180910390a25050565b611a52611f1b565b73ffffffffffffffffffffffffffffffffffffffff16611a70611439565b73ffffffffffffffffffffffffffffffffffffffff1614611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd90613757565b60405180910390fd5b670de0b6b3a76400006103e86005611adc610b53565b611ae691906137a6565b611af0919061382f565b611afa919061382f565b811015611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390613c8e565b60405180910390fd5b670de0b6b3a764000081611b5091906137a6565b60098190555050565b60075481565b6000611b69611f1b565b73ffffffffffffffffffffffffffffffffffffffff16611b87611439565b73ffffffffffffffffffffffffffffffffffffffff1614611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490613757565b60405180910390fd5b620186a06001611beb610b53565b611bf591906137a6565b611bff919061382f565b821015611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890613d20565b60405180910390fd5b6103e86005611c4e610b53565b611c5891906137a6565b611c62919061382f565b821115611ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9b90613db2565b60405180910390fd5b8160088190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b611d4f611f1b565b73ffffffffffffffffffffffffffffffffffffffff16611d6d611439565b73ffffffffffffffffffffffffffffffffffffffff1614611dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dba90613757565b60405180910390fd5b80600f81905550600f54600e8190555061012c600e541115611e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1190613e1e565b60405180910390fd5b50565b611e25611f1b565b73ffffffffffffffffffffffffffffffffffffffff16611e43611439565b73ffffffffffffffffffffffffffffffffffffffff1614611e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9090613757565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0090613eb0565b60405180910390fd5b611f1281612af6565b50565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a90613f42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa90613fd4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120e191906134d5565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561215e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215590614066565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c5906140f8565b60405180910390fd5b60008114156121e8576121e383836000612e9a565b612af1565b600a60009054906101000a900460ff16156126e357612205611439565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122735750612243611439565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122ac5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122e6575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122ff5750600560149054906101000a900460ff16155b156126e257600a60019054906101000a900460ff166123f957601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123b95750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6123f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ef90614164565b60405180910390fd5b5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561249c5750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612543576007548111156124e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dd906141f6565b60405180910390fd5b6009546124f283610fce565b826124fd9190613984565b111561253e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253590614262565b60405180910390fd5b6126e1565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125e65750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561263557600754811115612630576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612627906142f4565b60405180910390fd5b6126e0565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166126df5760095461269283610fce565b8261269d9190613984565b11156126de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d590614262565b60405180910390fd5b5b5b5b5b5b60006126ee30610fce565b9050600060085482101590508080156127135750600a60029054906101000a900460ff165b801561272c5750600560149054906101000a900460ff16155b80156127825750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127d85750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561282e5750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612872576001600560146101000a81548160ff02191690831515021790555061285661311b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129285750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561293257600090505b60008115612ae157601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561299557506000600e54115b156129fd576129c36103e86129b5600e548861321f90919063ffffffff16565b61323590919063ffffffff16565b9050600e54600f54826129d691906137a6565b6129e0919061382f565b601060008282546129f19190613984565b92505081905550612abd565b601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a5857506000600c54115b15612abc57612a866103e8612a78600c548861321f90919063ffffffff16565b61323590919063ffffffff16565b9050600c54600d5482612a9991906137a6565b612aa3919061382f565b60106000828254612ab49190613984565b925050819055505b5b6000811115612ad257612ad1873083612e9a565b5b8085612ade9190614314565b94505b612aec878787612e9a565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff811115612bd957612bd8614348565b5b604051908082528060200260200182016040528015612c075781602001602082028036833780820191505090505b5090503081600081518110612c1f57612c1e614377565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ce891906143bb565b81600181518110612cfc57612cfb614377565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612d61307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f23565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612dc39594939291906144e1565b600060405180830381600087803b158015612ddd57600080fd5b505af1158015612df1573d6000803e3d6000fd5b505050505050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0190614066565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f71906140f8565b60405180910390fd5b612f8583838361324b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561300b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613002906145ad565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461309e9190613984565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161310291906134d5565b60405180910390a3613115848484613250565b50505050565b600061312630610fce565b90506000601054905060008083148061313f5750600082145b1561314c5750505061321d565b601460085461315b91906137a6565b83111561317457601460085461317191906137a6565b92505b600083905061318281612bbc565b6000601081905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516131d090613a0b565b60006040518083038185875af1925050503d806000811461320d576040519150601f19603f3d011682016040523d82523d6000602084013e613212565b606091505b505080925050505050505b565b6000818361322d91906137a6565b905092915050565b60008183613243919061382f565b905092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561328f578082015181840152602081019050613274565b8381111561329e576000848401525b50505050565b6000601f19601f8301169050919050565b60006132c082613255565b6132ca8185613260565b93506132da818560208601613271565b6132e3816132a4565b840191505092915050565b6000602082019050818103600083015261330881846132b5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061334082613315565b9050919050565b61335081613335565b811461335b57600080fd5b50565b60008135905061336d81613347565b92915050565b6000819050919050565b61338681613373565b811461339157600080fd5b50565b6000813590506133a38161337d565b92915050565b600080604083850312156133c0576133bf613310565b5b60006133ce8582860161335e565b92505060206133df85828601613394565b9150509250929050565b60008115159050919050565b6133fe816133e9565b82525050565b600060208201905061341960008301846133f5565b92915050565b60006020828403121561343557613434613310565b5b60006134438482850161335e565b91505092915050565b6000819050919050565b600061347161346c61346784613315565b61344c565b613315565b9050919050565b600061348382613456565b9050919050565b600061349582613478565b9050919050565b6134a58161348a565b82525050565b60006020820190506134c0600083018461349c565b92915050565b6134cf81613373565b82525050565b60006020820190506134ea60008301846134c6565b92915050565b60006020828403121561350657613505613310565b5b600061351484828501613394565b91505092915050565b60008060006060848603121561353657613535613310565b5b60006135448682870161335e565b93505060206135558682870161335e565b925050604061356686828701613394565b9150509250925092565b61357981613335565b82525050565b60006020820190506135946000830184613570565b92915050565b600060ff82169050919050565b6135b08161359a565b82525050565b60006020820190506135cb60008301846135a7565b92915050565b6135da816133e9565b81146135e557600080fd5b50565b6000813590506135f7816135d1565b92915050565b6000806040838503121561361457613613613310565b5b60006136228582860161335e565b9250506020613633858286016135e8565b9150509250929050565b60006020828403121561365357613652613310565b5b6000613661848285016135e8565b91505092915050565b6000806040838503121561368157613680613310565b5b600061368f8582860161335e565b92505060206136a08582860161335e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136f157607f821691505b60208210811415613705576137046136aa565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613741602083613260565b915061374c8261370b565b602082019050919050565b6000602082019050818103600083015261377081613734565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137b182613373565b91506137bc83613373565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137f5576137f4613777565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061383a82613373565b915061384583613373565b92508261385557613854613800565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006138bc602f83613260565b91506138c782613860565b604082019050919050565b600060208201905081810360008301526138eb816138af565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061394e602883613260565b9150613959826138f2565b604082019050919050565b6000602082019050818103600083015261397d81613941565b9050919050565b600061398f82613373565b915061399a83613373565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139cf576139ce613777565b5b828201905092915050565b600081905092915050565b50565b60006139f56000836139da565b9150613a00826139e5565b600082019050919050565b6000613a16826139e8565b9150819050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613a56601d83613260565b9150613a6182613a20565b602082019050919050565b60006020820190508181036000830152613a8581613a49565b9050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b6000613ac2600c83613260565b9150613acd82613a8c565b602082019050919050565b60006020820190508181036000830152613af181613ab5565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613b54603983613260565b9150613b5f82613af8565b604082019050919050565b60006020820190508181036000830152613b8381613b47565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613be6602583613260565b9150613bf182613b8a565b604082019050919050565b60006020820190508181036000830152613c1581613bd9565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613c78602483613260565b9150613c8382613c1c565b604082019050919050565b60006020820190508181036000830152613ca781613c6b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613d0a603583613260565b9150613d1582613cae565b604082019050919050565b60006020820190508181036000830152613d3981613cfd565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613d9c603483613260565b9150613da782613d40565b604082019050919050565b60006020820190508181036000830152613dcb81613d8f565b9050919050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000613e08601d83613260565b9150613e1382613dd2565b602082019050919050565b60006020820190508181036000830152613e3781613dfb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e9a602683613260565b9150613ea582613e3e565b604082019050919050565b60006020820190508181036000830152613ec981613e8d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613f2c602483613260565b9150613f3782613ed0565b604082019050919050565b60006020820190508181036000830152613f5b81613f1f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fbe602283613260565b9150613fc982613f62565b604082019050919050565b60006020820190508181036000830152613fed81613fb1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614050602583613260565b915061405b82613ff4565b604082019050919050565b6000602082019050818103600083015261407f81614043565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006140e2602383613260565b91506140ed82614086565b604082019050919050565b60006020820190508181036000830152614111816140d5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061414e601683613260565b915061415982614118565b602082019050919050565b6000602082019050818103600083015261417d81614141565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006141e0603583613260565b91506141eb82614184565b604082019050919050565b6000602082019050818103600083015261420f816141d3565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061424c601383613260565b915061425782614216565b602082019050919050565b6000602082019050818103600083015261427b8161423f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006142de603683613260565b91506142e982614282565b604082019050919050565b6000602082019050818103600083015261430d816142d1565b9050919050565b600061431f82613373565b915061432a83613373565b92508282101561433d5761433c613777565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506143b581613347565b92915050565b6000602082840312156143d1576143d0613310565b5b60006143df848285016143a6565b91505092915050565b6000819050919050565b600061440d614408614403846143e8565b61344c565b613373565b9050919050565b61441d816143f2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61445881613335565b82525050565b600061446a838361444f565b60208301905092915050565b6000602082019050919050565b600061448e82614423565b614498818561442e565b93506144a38361443f565b8060005b838110156144d45781516144bb888261445e565b97506144c683614476565b9250506001810190506144a7565b5085935050505092915050565b600060a0820190506144f660008301886134c6565b6145036020830187614414565b81810360408301526145158186614483565b90506145246060830185613570565b61453160808301846134c6565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614597602683613260565b91506145a28261453b565b604082019050919050565b600060208201905081810360008301526145c68161458a565b905091905056fea2646970667358221220c1d0faaf1bc3b47c1b465e5b784e6e001e56997b3fb70d463dc007cd7f82e3d764736f6c634300080a0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000093112e5b366354478be2e87e7b4168d171fc2f08

-----Decoded View---------------
Arg [0] : wallet1 (address): 0x93112E5B366354478be2E87E7b4168D171Fc2F08

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000093112e5b366354478be2e87e7b4168d171fc2f08


Deployed Bytecode Sourcemap

32974:12593:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9769:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11936:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34039:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33059:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10889:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33857:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37582:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12587:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33162:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10731:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13488:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39379:291;;;;;;;;;;;;;:::i;:::-;;33117:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33408:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33782:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33488:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39678:174;;;;;;;;;;;;;:::i;:::-;;11060:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3004:103;;;;;;;;;;;;;:::i;:::-;;38500:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36884:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38129:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33254:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39199:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36647:185;;;;;;;;;;;;;:::i;:::-;;2353:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33817:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38392:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9988:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39860:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14206:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11400:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40368:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34260:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33448:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39009:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37865:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33293:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37077:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33708:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11638:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33335:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38752:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3262:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33375:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9769:100;9823:13;9856:5;9849:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9769:100;:::o;11936:169::-;12019:4;12036:39;12045:12;:10;:12::i;:::-;12059:7;12068:6;12036:8;:39::i;:::-;12093:4;12086:11;;11936:169;;;;:::o;34039:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;33059:51::-;;;:::o;10889:108::-;10950:7;10977:12;;10970:19;;10889:108;:::o;33857:33::-;;;;:::o;37582:275::-;2584:12;:10;:12::i;:::-;2573:23;;:7;:5;:7::i;:::-;:23;;;2565:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37719:4:::1;37711;37706:1;37690:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37689:26;;;;:::i;:::-;37688:35;;;;:::i;:::-;37678:6;:45;;37656:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;37842:6;37832;:17;;;;:::i;:::-;37809:20;:40;;;;37582:275:::0;:::o;12587:492::-;12727:4;12744:36;12754:6;12762:9;12773:6;12744:9;:36::i;:::-;12793:24;12820:11;:19;12832:6;12820:19;;;;;;;;;;;;;;;:33;12840:12;:10;:12::i;:::-;12820:33;;;;;;;;;;;;;;;;12793:60;;12892:6;12872:16;:26;;12864:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12979:57;12988:6;12996:12;:10;:12::i;:::-;13029:6;13010:16;:25;12979:8;:57::i;:::-;13067:4;13060:11;;;12587:492;;;;;:::o;33162:53::-;33208:6;33162:53;:::o;10731:93::-;10789:5;10814:2;10807:9;;10731:93;:::o;13488:215::-;13576:4;13593:80;13602:12;:10;:12::i;:::-;13616:7;13662:10;13625:11;:25;13637:12;:10;:12::i;:::-;13625:25;;;;;;;;;;;;;;;:34;13651:7;13625:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13593:8;:80::i;:::-;13691:4;13684:11;;13488:215;;;;:::o;39379:291::-;2584:12;:10;:12::i;:::-;2573:23;;:7;:5;:7::i;:::-;:23;;;2565:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39454:21:::1;39431:20;:44;;;;39496:21;39484:9;:33;;;;39546:2;39528:15;:20;;;;39572:15;;39557:12;:30;;;;39617:2;39598:16;:21;;;;39644:16;;39628:13;:32;;;;39379:291::o:0;33117:38::-;;;:::o;33408:33::-;;;;;;;;;;;;;:::o;33782:28::-;;;;:::o;33488:31::-;;;;;;;;;;;;;:::o;39678:174::-;39720:12;39765:15;;;;;;;;;;;39757:29;;39808:21;39757:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39743:101;;;;;39709:143;39678:174::o;11060:127::-;11134:7;11161:9;:18;11171:7;11161:18;;;;;;;;;;;;;;;;11154:25;;11060:127;;;:::o;3004:103::-;2584:12;:10;:12::i;:::-;2573:23;;:7;:5;:7::i;:::-;:23;;;2565:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3069:30:::1;3096:1;3069:18;:30::i;:::-;3004:103::o:0;38500:244::-;2584:12;:10;:12::i;:::-;2573:23;;:7;:5;:7::i;:::-;:23;;;2565:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38610:13:::1;38592:15;:31;;;;38649:15;;38634:12;:30;;;;38699:3;38683:12;;:19;;38675:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38500:244:::0;:::o;36884:121::-;36936:4;2584:12;:10;:12::i;:::-;2573:23;;:7;:5;:7::i;:::-;:23;;;2565:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36970:5:::1;36953:14;;:22;;;;;;;;;;;;;;;;;;36993:4;36986:11;;36884:121:::0;:::o;38129:167::-;2584:12;:10;:12::i;:::-;2573:23;;:7;:5;:7::i;:::-;:23;;;2565:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38284:4:::1;38242:31;:39;38274:6;38242:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38129:167:::0;;:::o;33254:30::-;;;;;;;;;;;;;:::o;39199:172::-;39273:24;39291:4;39273:9;:24::i;:::-;39263:6;:34;;:48;;;;;39310:1;39301:6;:10;39263:48;39255:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39339:24;39356:6;39339:16;:24::i;:::-;39199:172;:::o;36647:185::-;2584:12;:10;:12::i;:::-;2573:23;;:7;:5;:7::i;:::-;:23;;;2565:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36720:3:::1;36702:15;:21;;;;36749:15;;36734:12;:30;;;;36791:4;36775:13;;:20;;;;;;;;;;;;;;;;;;36820:4;36806:11;;:18;;;;;;;;;;;;;;;;;;36647:185::o:0;2353:87::-;2399:7;2426:6;;;;;;;;;;;2419:13;;2353:87;:::o;33817:31::-;;;;:::o;38392:100::-;2584:12;:10;:12::i;:::-;2573:23;;:7;:5;:7::i;:::-;:23;;;2565:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38477:7:::1;38463:11;;:21;;;;;;;;;;;;;;;;;;38392:100:::0;:::o;9988:104::-;10044:13;10077:7;10070:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9988:104;:::o;39860:304::-;2584:12;:10;:12::i;:::-;2573:23;;:7;:5;:7::i;:::-;:23;;;2565:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40004:13:::1;39996:21;;:4;:21;;;;39974:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40115:41;40144:4;40150:5;40115:28;:41::i;:::-;39860:304:::0;;:::o;14206:413::-;14299:4;14316:24;14343:11;:25;14355:12;:10;:12::i;:::-;14343:25;;;;;;;;;;;;;;;:34;14369:7;14343:34;;;;;;;;;;;;;;;;14316:61;;14416:15;14396:16;:35;;14388:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14509:67;14518:12;:10;:12::i;:::-;14532:7;14560:15;14541:16;:34;14509:8;:67::i;:::-;14607:4;14600:11;;;14206:413;;;;:::o;11400:175::-;11486:4;11503:42;11513:12;:10;:12::i;:::-;11527:9;11538:6;11503:9;:42::i;:::-;11563:4;11556:11;;11400:175;;;;:::o;40368:231::-;2584:12;:10;:12::i;:::-;2573:23;;:7;:5;:7::i;:::-;:23;;;2565:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40528:15:::1;;;;;;;;;;;40485:59;;40508:18;40485:59;;;;;;;;;;;;40573:18;40555:15;;:36;;;;;;;;;;;;;;;;;;40368:231:::0;:::o;34260:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33448:33::-;;;;;;;;;;;;;:::o;39009:182::-;2584:12;:10;:12::i;:::-;2573:23;;:7;:5;:7::i;:::-;:23;;;2565:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39125:8:::1;39094:19;:28;39114:7;39094:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39165:7;39149:34;;;39174:8;39149:34;;;;;;:::i;:::-;;;;;;;;39009:182:::0;;:::o;37865:256::-;2584:12;:10;:12::i;:::-;2573:23;;:7;:5;:7::i;:::-;:23;;;2565:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38005:4:::1;37997;37992:1;37976:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37975:26;;;;:::i;:::-;37974:35;;;;:::i;:::-;37964:6;:45;;37942:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;38106:6;38096;:17;;;;:::i;:::-;38084:9;:29;;;;37865:256:::0;:::o;33293:35::-;;;;:::o;37077:497::-;37185:4;2584:12;:10;:12::i;:::-;2573:23;;:7;:5;:7::i;:::-;:23;;;2565:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37264:6:::1;37259:1;37243:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37242:28;;;;:::i;:::-;37229:9;:41;;37207:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;37419:4;37414:1;37398:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37397:26;;;;:::i;:::-;37384:9;:39;;37362:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;37535:9;37514:18;:30;;;;37562:4;37555:11;;37077:497:::0;;;:::o;33708:27::-;;;;:::o;11638:151::-;11727:7;11754:11;:18;11766:5;11754:18;;;;;;;;;;;;;;;:27;11773:7;11754:27;;;;;;;;;;;;;;;;11747:34;;11638:151;;;;:::o;33335:33::-;;;;:::o;38752:249::-;2584:12;:10;:12::i;:::-;2573:23;;:7;:5;:7::i;:::-;:23;;;2565:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38864:13:::1;38845:16;:32;;;;38904:16;;38888:13;:32;;;;38956:3;38939:13;;:20;;38931:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;38752:249:::0;:::o;3262:201::-;2584:12;:10;:12::i;:::-;2573:23;;:7;:5;:7::i;:::-;:23;;;2565:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3371:1:::1;3351:22;;:8;:22;;;;3343:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3427:28;3446:8;3427:18;:28::i;:::-;3262:201:::0;:::o;33375:24::-;;;;:::o;1026:98::-;1079:7;1106:10;1099:17;;1026:98;:::o;17890:380::-;18043:1;18026:19;;:5;:19;;;;18018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18124:1;18105:21;;:7;:21;;;;18097:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18208:6;18178:11;:18;18190:5;18178:18;;;;;;;;;;;;;;;:27;18197:7;18178:27;;;;;;;;;;;;;;;:36;;;;18246:7;18230:32;;18239:5;18230:32;;;18255:6;18230:32;;;;;;:::i;:::-;;;;;;;;17890:380;;;:::o;40607:3626::-;40755:1;40739:18;;:4;:18;;;;40731:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40832:1;40818:16;;:2;:16;;;;40810:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40901:1;40891:6;:11;40887:93;;;40919:28;40935:4;40941:2;40945:1;40919:15;:28::i;:::-;40962:7;;40887:93;40996:14;;;;;;;;;;;40992:1694;;;41057:7;:5;:7::i;:::-;41049:15;;:4;:15;;;;:49;;;;;41091:7;:5;:7::i;:::-;41085:13;;:2;:13;;;;41049:49;:86;;;;;41133:1;41119:16;;:2;:16;;;;41049:86;:128;;;;;41170:6;41156:21;;:2;:21;;;;41049:128;:158;;;;;41199:8;;;;;;;;;;;41198:9;41049:158;41027:1648;;;41247:13;;;;;;;;;;;41242:223;;41319:19;:25;41339:4;41319:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41348:19;:23;41368:2;41348:23;;;;;;;;;;;;;;;;;;;;;;;;;41319:52;41285:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41242:223;41539:25;:31;41565:4;41539:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;41596:31;:35;41628:2;41596:35;;;;;;;;;;;;;;;;;;;;;;;;;41595:36;41539:92;41513:1147;;;41718:20;;41708:6;:30;;41674:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;41926:9;;41909:13;41919:2;41909:9;:13::i;:::-;41900:6;:22;;;;:::i;:::-;:35;;41866:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41513:1147;;;42104:25;:29;42130:2;42104:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42159:31;:37;42191:4;42159:37;;;;;;;;;;;;;;;;;;;;;;;;;42158:38;42104:92;42078:582;;;42283:20;;42273:6;:30;;42239:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;42078:582;;;42440:31;:35;42472:2;42440:35;;;;;;;;;;;;;;;;;;;;;;;;;42435:225;;42560:9;;42543:13;42553:2;42543:9;:13::i;:::-;42534:6;:22;;;;:::i;:::-;:35;;42500:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42435:225;42078:582;41513:1147;41027:1648;40992:1694;42698:28;42729:24;42747:4;42729:9;:24::i;:::-;42698:55;;42766:12;42805:18;;42781:20;:42;;42766:57;;42854:7;:35;;;;;42878:11;;;;;;;;;;;42854:35;:61;;;;;42907:8;;;;;;;;;;;42906:9;42854:61;:110;;;;;42933:25;:31;42959:4;42933:31;;;;;;;;;;;;;;;;;;;;;;;;;42932:32;42854:110;:153;;;;;42982:19;:25;43002:4;42982:25;;;;;;;;;;;;;;;;;;;;;;;;;42981:26;42854:153;:194;;;;;43025:19;:23;43045:2;43025:23;;;;;;;;;;;;;;;;;;;;;;;;;43024:24;42854:194;42836:326;;;43086:4;43075:8;;:15;;;;;;;;;;;;;;;;;;43107:10;:8;:10::i;:::-;43145:5;43134:8;;:16;;;;;;;;;;;;;;;;;;42836:326;43174:12;43190:8;;;;;;;;;;;43189:9;43174:24;;43300:19;:25;43320:4;43300:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43329:19;:23;43349:2;43329:23;;;;;;;;;;;;;;;;;;;;;;;;;43300:52;43296:100;;;43379:5;43369:15;;43296:100;43408:12;43513:7;43509:671;;;43565:25;:29;43591:2;43565:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;43614:1;43598:13;;:17;43565:50;43561:470;;;43643:35;43673:4;43643:25;43654:13;;43643:6;:10;;:25;;;;:::i;:::-;:29;;:35;;;;:::i;:::-;43636:42;;43747:13;;43727:16;;43720:4;:23;;;;:::i;:::-;43719:41;;;;:::i;:::-;43697:18;;:63;;;;;;;:::i;:::-;;;;;;;;43561:470;;;43822:25;:31;43848:4;43822:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;43872:1;43857:12;;:16;43822:51;43818:213;;;43901:34;43930:4;43901:24;43912:12;;43901:6;:10;;:24;;;;:::i;:::-;:28;;:34;;;;:::i;:::-;43894:41;;44003:12;;43984:15;;43977:4;:22;;;;:::i;:::-;43976:39;;;;:::i;:::-;43954:18;;:61;;;;;;;:::i;:::-;;;;;;;;43818:213;43561:470;44058:1;44051:4;:8;44047:91;;;44080:42;44096:4;44110;44117;44080:15;:42::i;:::-;44047:91;44164:4;44154:14;;;;;:::i;:::-;;;43509:671;44192:33;44208:4;44214:2;44218:6;44192:15;:33::i;:::-;40720:3513;;;;40607:3626;;;;:::o;3623:191::-;3697:16;3716:6;;;;;;;;;;;3697:25;;3742:8;3733:6;;:17;;;;;;;;;;;;;;;;;;3797:8;3766:40;;3787:8;3766:40;;;;;;;;;;;;3686:128;3623:191;:::o;44241:589::-;44367:21;44405:1;44391:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44367:40;;44436:4;44418;44423:1;44418:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;44462:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44452:4;44457:1;44452:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;44497:62;44514:4;44529:15;44547:11;44497:8;:62::i;:::-;44598:15;:66;;;44679:11;44705:1;44749:4;44776;44796:15;44598:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44296:534;44241:589;:::o;40172:188::-;40289:5;40255:25;:31;40281:4;40255:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40346:5;40312:40;;40340:4;40312:40;;;;;;;;;;;;40172:188;;:::o;15109:733::-;15267:1;15249:20;;:6;:20;;;;15241:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15351:1;15330:23;;:9;:23;;;;15322:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15406:47;15427:6;15435:9;15446:6;15406:20;:47::i;:::-;15466:21;15490:9;:17;15500:6;15490:17;;;;;;;;;;;;;;;;15466:41;;15543:6;15526:13;:23;;15518:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15664:6;15648:13;:22;15628:9;:17;15638:6;15628:17;;;;;;;;;;;;;;;:42;;;;15716:6;15692:9;:20;15702:9;15692:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15757:9;15740:35;;15749:6;15740:35;;;15768:6;15740:35;;;;;;:::i;:::-;;;;;;;;15788:46;15808:6;15816:9;15827:6;15788:19;:46::i;:::-;15230:612;15109:733;;;:::o;44840:722::-;44879:23;44905:24;44923:4;44905:9;:24::i;:::-;44879:50;;44940:25;44981:18;;44940:59;;45010:12;45058:1;45039:15;:20;:46;;;;45084:1;45063:17;:22;45039:46;45035:85;;;45102:7;;;;;45035:85;45175:2;45154:18;;:23;;;;:::i;:::-;45136:15;:41;45132:115;;;45233:2;45212:18;;:23;;;;:::i;:::-;45194:41;;45132:115;45310:26;45339:15;45310:44;;45367:36;45384:18;45367:16;:36::i;:::-;45437:1;45416:18;:22;;;;45475:15;;;;;;;;;;;45467:29;;45518:21;45467:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45453:101;;;;;44868:694;;;;44840:722;:::o;23343:98::-;23401:7;23432:1;23428;:5;;;;:::i;:::-;23421:12;;23343:98;;;;:::o;23742:::-;23800:7;23831:1;23827;:5;;;;:::i;:::-;23820:12;;23742:98;;;;:::o;18870:125::-;;;;:::o;19599:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:468::-;7227:6;7235;7284:2;7272:9;7263:7;7259:23;7255:32;7252:119;;;7290:79;;:::i;:::-;7252:119;7410:1;7435:53;7480:7;7471:6;7460:9;7456:22;7435:53;:::i;:::-;7425:63;;7381:117;7537:2;7563:50;7605:7;7596:6;7585:9;7581:22;7563:50;:::i;:::-;7553:60;;7508:115;7162:468;;;;;:::o;7636:323::-;7692:6;7741:2;7729:9;7720:7;7716:23;7712:32;7709:119;;;7747:79;;:::i;:::-;7709:119;7867:1;7892:50;7934:7;7925:6;7914:9;7910:22;7892:50;:::i;:::-;7882:60;;7838:114;7636:323;;;;:::o;7965:474::-;8033:6;8041;8090:2;8078:9;8069:7;8065:23;8061:32;8058:119;;;8096:79;;:::i;:::-;8058:119;8216:1;8241:53;8286:7;8277:6;8266:9;8262:22;8241:53;:::i;:::-;8231:63;;8187:117;8343:2;8369:53;8414:7;8405:6;8394:9;8390:22;8369:53;:::i;:::-;8359:63;;8314:118;7965:474;;;;;:::o;8445:180::-;8493:77;8490:1;8483:88;8590:4;8587:1;8580:15;8614:4;8611:1;8604:15;8631:320;8675:6;8712:1;8706:4;8702:12;8692:22;;8759:1;8753:4;8749:12;8780:18;8770:81;;8836:4;8828:6;8824:17;8814:27;;8770:81;8898:2;8890:6;8887:14;8867:18;8864:38;8861:84;;;8917:18;;:::i;:::-;8861:84;8682:269;8631:320;;;:::o;8957:182::-;9097:34;9093:1;9085:6;9081:14;9074:58;8957:182;:::o;9145:366::-;9287:3;9308:67;9372:2;9367:3;9308:67;:::i;:::-;9301:74;;9384:93;9473:3;9384:93;:::i;:::-;9502:2;9497:3;9493:12;9486:19;;9145:366;;;:::o;9517:419::-;9683:4;9721:2;9710:9;9706:18;9698:26;;9770:9;9764:4;9760:20;9756:1;9745:9;9741:17;9734:47;9798:131;9924:4;9798:131;:::i;:::-;9790:139;;9517:419;;;:::o;9942:180::-;9990:77;9987:1;9980:88;10087:4;10084:1;10077:15;10111:4;10108:1;10101:15;10128:348;10168:7;10191:20;10209:1;10191:20;:::i;:::-;10186:25;;10225:20;10243:1;10225:20;:::i;:::-;10220:25;;10413:1;10345:66;10341:74;10338:1;10335:81;10330:1;10323:9;10316:17;10312:105;10309:131;;;10420:18;;:::i;:::-;10309:131;10468:1;10465;10461:9;10450:20;;10128:348;;;;:::o;10482:180::-;10530:77;10527:1;10520:88;10627:4;10624:1;10617:15;10651:4;10648:1;10641:15;10668:185;10708:1;10725:20;10743:1;10725:20;:::i;:::-;10720:25;;10759:20;10777:1;10759:20;:::i;:::-;10754:25;;10798:1;10788:35;;10803:18;;:::i;:::-;10788:35;10845:1;10842;10838:9;10833:14;;10668:185;;;;:::o;10859:234::-;10999:34;10995:1;10987:6;10983:14;10976:58;11068:17;11063:2;11055:6;11051:15;11044:42;10859:234;:::o;11099:366::-;11241:3;11262:67;11326:2;11321:3;11262:67;:::i;:::-;11255:74;;11338:93;11427:3;11338:93;:::i;:::-;11456:2;11451:3;11447:12;11440:19;;11099:366;;;:::o;11471:419::-;11637:4;11675:2;11664:9;11660:18;11652:26;;11724:9;11718:4;11714:20;11710:1;11699:9;11695:17;11688:47;11752:131;11878:4;11752:131;:::i;:::-;11744:139;;11471:419;;;:::o;11896:227::-;12036:34;12032:1;12024:6;12020:14;12013:58;12105:10;12100:2;12092:6;12088:15;12081:35;11896:227;:::o;12129:366::-;12271:3;12292:67;12356:2;12351:3;12292:67;:::i;:::-;12285:74;;12368:93;12457:3;12368:93;:::i;:::-;12486:2;12481:3;12477:12;12470:19;;12129:366;;;:::o;12501:419::-;12667:4;12705:2;12694:9;12690:18;12682:26;;12754:9;12748:4;12744:20;12740:1;12729:9;12725:17;12718:47;12782:131;12908:4;12782:131;:::i;:::-;12774:139;;12501:419;;;:::o;12926:305::-;12966:3;12985:20;13003:1;12985:20;:::i;:::-;12980:25;;13019:20;13037:1;13019:20;:::i;:::-;13014:25;;13173:1;13105:66;13101:74;13098:1;13095:81;13092:107;;;13179:18;;:::i;:::-;13092:107;13223:1;13220;13216:9;13209:16;;12926:305;;;;:::o;13237:147::-;13338:11;13375:3;13360:18;;13237:147;;;;:::o;13390:114::-;;:::o;13510:398::-;13669:3;13690:83;13771:1;13766:3;13690:83;:::i;:::-;13683:90;;13782:93;13871:3;13782:93;:::i;:::-;13900:1;13895:3;13891:11;13884:18;;13510:398;;;:::o;13914:379::-;14098:3;14120:147;14263:3;14120:147;:::i;:::-;14113:154;;14284:3;14277:10;;13914:379;;;:::o;14299:179::-;14439:31;14435:1;14427:6;14423:14;14416:55;14299:179;:::o;14484:366::-;14626:3;14647:67;14711:2;14706:3;14647:67;:::i;:::-;14640:74;;14723:93;14812:3;14723:93;:::i;:::-;14841:2;14836:3;14832:12;14825:19;;14484:366;;;:::o;14856:419::-;15022:4;15060:2;15049:9;15045:18;15037:26;;15109:9;15103:4;15099:20;15095:1;15084:9;15080:17;15073:47;15137:131;15263:4;15137:131;:::i;:::-;15129:139;;14856:419;;;:::o;15281:162::-;15421:14;15417:1;15409:6;15405:14;15398:38;15281:162;:::o;15449:366::-;15591:3;15612:67;15676:2;15671:3;15612:67;:::i;:::-;15605:74;;15688:93;15777:3;15688:93;:::i;:::-;15806:2;15801:3;15797:12;15790:19;;15449:366;;;:::o;15821:419::-;15987:4;16025:2;16014:9;16010:18;16002:26;;16074:9;16068:4;16064:20;16060:1;16049:9;16045:17;16038:47;16102:131;16228:4;16102:131;:::i;:::-;16094:139;;15821:419;;;:::o;16246:244::-;16386:34;16382:1;16374:6;16370:14;16363:58;16455:27;16450:2;16442:6;16438:15;16431:52;16246:244;:::o;16496:366::-;16638:3;16659:67;16723:2;16718:3;16659:67;:::i;:::-;16652:74;;16735:93;16824:3;16735:93;:::i;:::-;16853:2;16848:3;16844:12;16837:19;;16496:366;;;:::o;16868:419::-;17034:4;17072:2;17061:9;17057:18;17049:26;;17121:9;17115:4;17111:20;17107:1;17096:9;17092:17;17085:47;17149:131;17275:4;17149:131;:::i;:::-;17141:139;;16868:419;;;:::o;17293:224::-;17433:34;17429:1;17421:6;17417:14;17410:58;17502:7;17497:2;17489:6;17485:15;17478:32;17293:224;:::o;17523:366::-;17665:3;17686:67;17750:2;17745:3;17686:67;:::i;:::-;17679:74;;17762:93;17851:3;17762:93;:::i;:::-;17880:2;17875:3;17871:12;17864:19;;17523:366;;;:::o;17895:419::-;18061:4;18099:2;18088:9;18084:18;18076:26;;18148:9;18142:4;18138:20;18134:1;18123:9;18119:17;18112:47;18176:131;18302:4;18176:131;:::i;:::-;18168:139;;17895:419;;;:::o;18320:223::-;18460:34;18456:1;18448:6;18444:14;18437:58;18529:6;18524:2;18516:6;18512:15;18505:31;18320:223;:::o;18549:366::-;18691:3;18712:67;18776:2;18771:3;18712:67;:::i;:::-;18705:74;;18788:93;18877:3;18788:93;:::i;:::-;18906:2;18901:3;18897:12;18890:19;;18549:366;;;:::o;18921:419::-;19087:4;19125:2;19114:9;19110:18;19102:26;;19174:9;19168:4;19164:20;19160:1;19149:9;19145:17;19138:47;19202:131;19328:4;19202:131;:::i;:::-;19194:139;;18921:419;;;:::o;19346:240::-;19486:34;19482:1;19474:6;19470:14;19463:58;19555:23;19550:2;19542:6;19538:15;19531:48;19346:240;:::o;19592:366::-;19734:3;19755:67;19819:2;19814:3;19755:67;:::i;:::-;19748:74;;19831:93;19920:3;19831:93;:::i;:::-;19949:2;19944:3;19940:12;19933:19;;19592:366;;;:::o;19964:419::-;20130:4;20168:2;20157:9;20153:18;20145:26;;20217:9;20211:4;20207:20;20203:1;20192:9;20188:17;20181:47;20245:131;20371:4;20245:131;:::i;:::-;20237:139;;19964:419;;;:::o;20389:239::-;20529:34;20525:1;20517:6;20513:14;20506:58;20598:22;20593:2;20585:6;20581:15;20574:47;20389:239;:::o;20634:366::-;20776:3;20797:67;20861:2;20856:3;20797:67;:::i;:::-;20790:74;;20873:93;20962:3;20873:93;:::i;:::-;20991:2;20986:3;20982:12;20975:19;;20634:366;;;:::o;21006:419::-;21172:4;21210:2;21199:9;21195:18;21187:26;;21259:9;21253:4;21249:20;21245:1;21234:9;21230:17;21223:47;21287:131;21413:4;21287:131;:::i;:::-;21279:139;;21006:419;;;:::o;21431:179::-;21571:31;21567:1;21559:6;21555:14;21548:55;21431:179;:::o;21616:366::-;21758:3;21779:67;21843:2;21838:3;21779:67;:::i;:::-;21772:74;;21855:93;21944:3;21855:93;:::i;:::-;21973:2;21968:3;21964:12;21957:19;;21616:366;;;:::o;21988:419::-;22154:4;22192:2;22181:9;22177:18;22169:26;;22241:9;22235:4;22231:20;22227:1;22216:9;22212:17;22205:47;22269:131;22395:4;22269:131;:::i;:::-;22261:139;;21988:419;;;:::o;22413:225::-;22553:34;22549:1;22541:6;22537:14;22530:58;22622:8;22617:2;22609:6;22605:15;22598:33;22413:225;:::o;22644:366::-;22786:3;22807:67;22871:2;22866:3;22807:67;:::i;:::-;22800:74;;22883:93;22972:3;22883:93;:::i;:::-;23001:2;22996:3;22992:12;22985:19;;22644:366;;;:::o;23016:419::-;23182:4;23220:2;23209:9;23205:18;23197:26;;23269:9;23263:4;23259:20;23255:1;23244:9;23240:17;23233:47;23297:131;23423:4;23297:131;:::i;:::-;23289:139;;23016:419;;;:::o;23441:223::-;23581:34;23577:1;23569:6;23565:14;23558:58;23650:6;23645:2;23637:6;23633:15;23626:31;23441:223;:::o;23670:366::-;23812:3;23833:67;23897:2;23892:3;23833:67;:::i;:::-;23826:74;;23909:93;23998:3;23909:93;:::i;:::-;24027:2;24022:3;24018:12;24011:19;;23670:366;;;:::o;24042:419::-;24208:4;24246:2;24235:9;24231:18;24223:26;;24295:9;24289:4;24285:20;24281:1;24270:9;24266:17;24259:47;24323:131;24449:4;24323:131;:::i;:::-;24315:139;;24042:419;;;:::o;24467:221::-;24607:34;24603:1;24595:6;24591:14;24584:58;24676:4;24671:2;24663:6;24659:15;24652:29;24467:221;:::o;24694:366::-;24836:3;24857:67;24921:2;24916:3;24857:67;:::i;:::-;24850:74;;24933:93;25022:3;24933:93;:::i;:::-;25051:2;25046:3;25042:12;25035:19;;24694:366;;;:::o;25066:419::-;25232:4;25270:2;25259:9;25255:18;25247:26;;25319:9;25313:4;25309:20;25305:1;25294:9;25290:17;25283:47;25347:131;25473:4;25347:131;:::i;:::-;25339:139;;25066:419;;;:::o;25491:224::-;25631:34;25627:1;25619:6;25615:14;25608:58;25700:7;25695:2;25687:6;25683:15;25676:32;25491:224;:::o;25721:366::-;25863:3;25884:67;25948:2;25943:3;25884:67;:::i;:::-;25877:74;;25960:93;26049:3;25960:93;:::i;:::-;26078:2;26073:3;26069:12;26062:19;;25721:366;;;:::o;26093:419::-;26259:4;26297:2;26286:9;26282:18;26274:26;;26346:9;26340:4;26336:20;26332:1;26321:9;26317:17;26310:47;26374:131;26500:4;26374:131;:::i;:::-;26366:139;;26093:419;;;:::o;26518:222::-;26658:34;26654:1;26646:6;26642:14;26635:58;26727:5;26722:2;26714:6;26710:15;26703:30;26518:222;:::o;26746:366::-;26888:3;26909:67;26973:2;26968:3;26909:67;:::i;:::-;26902:74;;26985:93;27074:3;26985:93;:::i;:::-;27103:2;27098:3;27094:12;27087:19;;26746:366;;;:::o;27118:419::-;27284:4;27322:2;27311:9;27307:18;27299:26;;27371:9;27365:4;27361:20;27357:1;27346:9;27342:17;27335:47;27399:131;27525:4;27399:131;:::i;:::-;27391:139;;27118:419;;;:::o;27543:172::-;27683:24;27679:1;27671:6;27667:14;27660:48;27543:172;:::o;27721:366::-;27863:3;27884:67;27948:2;27943:3;27884:67;:::i;:::-;27877:74;;27960:93;28049:3;27960:93;:::i;:::-;28078:2;28073:3;28069:12;28062:19;;27721:366;;;:::o;28093:419::-;28259:4;28297:2;28286:9;28282:18;28274:26;;28346:9;28340:4;28336:20;28332:1;28321:9;28317:17;28310:47;28374:131;28500:4;28374:131;:::i;:::-;28366:139;;28093:419;;;:::o;28518:240::-;28658:34;28654:1;28646:6;28642:14;28635:58;28727:23;28722:2;28714:6;28710:15;28703:48;28518:240;:::o;28764:366::-;28906:3;28927:67;28991:2;28986:3;28927:67;:::i;:::-;28920:74;;29003:93;29092:3;29003:93;:::i;:::-;29121:2;29116:3;29112:12;29105:19;;28764:366;;;:::o;29136:419::-;29302:4;29340:2;29329:9;29325:18;29317:26;;29389:9;29383:4;29379:20;29375:1;29364:9;29360:17;29353:47;29417:131;29543:4;29417:131;:::i;:::-;29409:139;;29136:419;;;:::o;29561:169::-;29701:21;29697:1;29689:6;29685:14;29678:45;29561:169;:::o;29736:366::-;29878:3;29899:67;29963:2;29958:3;29899:67;:::i;:::-;29892:74;;29975:93;30064:3;29975:93;:::i;:::-;30093:2;30088:3;30084:12;30077:19;;29736:366;;;:::o;30108:419::-;30274:4;30312:2;30301:9;30297:18;30289:26;;30361:9;30355:4;30351:20;30347:1;30336:9;30332:17;30325:47;30389:131;30515:4;30389:131;:::i;:::-;30381:139;;30108:419;;;:::o;30533:241::-;30673:34;30669:1;30661:6;30657:14;30650:58;30742:24;30737:2;30729:6;30725:15;30718:49;30533:241;:::o;30780:366::-;30922:3;30943:67;31007:2;31002:3;30943:67;:::i;:::-;30936:74;;31019:93;31108:3;31019:93;:::i;:::-;31137:2;31132:3;31128:12;31121:19;;30780:366;;;:::o;31152:419::-;31318:4;31356:2;31345:9;31341:18;31333:26;;31405:9;31399:4;31395:20;31391:1;31380:9;31376:17;31369:47;31433:131;31559:4;31433:131;:::i;:::-;31425:139;;31152:419;;;:::o;31577:191::-;31617:4;31637:20;31655:1;31637:20;:::i;:::-;31632:25;;31671:20;31689:1;31671:20;:::i;:::-;31666:25;;31710:1;31707;31704:8;31701:34;;;31715:18;;:::i;:::-;31701:34;31760:1;31757;31753:9;31745:17;;31577:191;;;;:::o;31774:180::-;31822:77;31819:1;31812:88;31919:4;31916:1;31909:15;31943:4;31940:1;31933:15;31960:180;32008:77;32005:1;31998:88;32105:4;32102:1;32095:15;32129:4;32126:1;32119:15;32146:143;32203:5;32234:6;32228:13;32219:22;;32250:33;32277:5;32250:33;:::i;:::-;32146:143;;;;:::o;32295:351::-;32365:6;32414:2;32402:9;32393:7;32389:23;32385:32;32382:119;;;32420:79;;:::i;:::-;32382:119;32540:1;32565:64;32621:7;32612:6;32601:9;32597:22;32565:64;:::i;:::-;32555:74;;32511:128;32295:351;;;;:::o;32652:85::-;32697:7;32726:5;32715:16;;32652:85;;;:::o;32743:158::-;32801:9;32834:61;32852:42;32861:32;32887:5;32861:32;:::i;:::-;32852:42;:::i;:::-;32834:61;:::i;:::-;32821:74;;32743:158;;;:::o;32907:147::-;33002:45;33041:5;33002:45;:::i;:::-;32997:3;32990:58;32907:147;;:::o;33060:114::-;33127:6;33161:5;33155:12;33145:22;;33060:114;;;:::o;33180:184::-;33279:11;33313:6;33308:3;33301:19;33353:4;33348:3;33344:14;33329:29;;33180:184;;;;:::o;33370:132::-;33437:4;33460:3;33452:11;;33490:4;33485:3;33481:14;33473:22;;33370:132;;;:::o;33508:108::-;33585:24;33603:5;33585:24;:::i;:::-;33580:3;33573:37;33508:108;;:::o;33622:179::-;33691:10;33712:46;33754:3;33746:6;33712:46;:::i;:::-;33790:4;33785:3;33781:14;33767:28;;33622:179;;;;:::o;33807:113::-;33877:4;33909;33904:3;33900:14;33892:22;;33807:113;;;:::o;33956:732::-;34075:3;34104:54;34152:5;34104:54;:::i;:::-;34174:86;34253:6;34248:3;34174:86;:::i;:::-;34167:93;;34284:56;34334:5;34284:56;:::i;:::-;34363:7;34394:1;34379:284;34404:6;34401:1;34398:13;34379:284;;;34480:6;34474:13;34507:63;34566:3;34551:13;34507:63;:::i;:::-;34500:70;;34593:60;34646:6;34593:60;:::i;:::-;34583:70;;34439:224;34426:1;34423;34419:9;34414:14;;34379:284;;;34383:14;34679:3;34672:10;;34080:608;;;33956:732;;;;:::o;34694:831::-;34957:4;34995:3;34984:9;34980:19;34972:27;;35009:71;35077:1;35066:9;35062:17;35053:6;35009:71;:::i;:::-;35090:80;35166:2;35155:9;35151:18;35142:6;35090:80;:::i;:::-;35217:9;35211:4;35207:20;35202:2;35191:9;35187:18;35180:48;35245:108;35348:4;35339:6;35245:108;:::i;:::-;35237:116;;35363:72;35431:2;35420:9;35416:18;35407:6;35363:72;:::i;:::-;35445:73;35513:3;35502:9;35498:19;35489:6;35445:73;:::i;:::-;34694:831;;;;;;;;:::o;35531:225::-;35671:34;35667:1;35659:6;35655:14;35648:58;35740:8;35735:2;35727:6;35723:15;35716:33;35531:225;:::o;35762:366::-;35904:3;35925:67;35989:2;35984:3;35925:67;:::i;:::-;35918:74;;36001:93;36090:3;36001:93;:::i;:::-;36119:2;36114:3;36110:12;36103:19;;35762:366;;;:::o;36134:419::-;36300:4;36338:2;36327:9;36323:18;36315:26;;36387:9;36381:4;36377:20;36373:1;36362:9;36358:17;36351:47;36415:131;36541:4;36415:131;:::i;:::-;36407:139;;36134:419;;;:::o

Swarm Source

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