ETH Price: $1,897.38 (-0.73%)
 

Overview

Max Total Supply

10,000,000 BULL

Holders

24

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
NOVEMBULL

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-01
*/

/*
Novembull is upon us. The sentiment is bullish. 

Get your bags ready. 

Web: https://novembulleth.com

X: https://twitter.com/Novembull

TG: https://t.me/novembullportal
*/

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


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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function allPairs(uint256) external view returns (address pair);
    function allPairsLength() external view returns (uint256);
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

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

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);
    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint256);
    function balanceOf(address owner) external view returns (uint256);
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

    bool private swapping;

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

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

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

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

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

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

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("Novembull", unicode"BULL") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

		uint256 _buyCharityFee = 0;
        uint256 _buyMarketingFee = 2;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

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

        uint256 totalSupply = 10_000_000 * 1e18;

        maxTransactionAmount = 250_000 * 1e18; // 2.5% from total supply maxTransactionAmountTxn
        maxWallet = 250_000 * 1e18; // 2.5% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 50) / 10000; // 0.5% swap wallet

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

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

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

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

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

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

    receive() external payable {}

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

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

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

    // 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() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        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 setBuyFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 150, "Max BuyFee 15%");
		buyCharityFee = _charityFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
     }

    function setSellFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 150, "Max SellFee 15%");
		sellCharityFee = _charityFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev;

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

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


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

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

}

Contract Security Audit

Contract ABI

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

60c0604052600c805462ffffff191662010001179055600e805460ff191690553480156200002c57600080fd5b506040805180820182526009815268139bdd995b589d5b1b60ba1b6020808301918252835180850190945260048452631095531360e21b9084015281519192916200007a91600391620006ae565b50805162000090906004906020840190620006ae565b505050620000ad620000a7620003fb60201b60201c565b620003ff565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000cf81600162000451565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200011a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000140919062000754565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200018e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b4919062000754565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000202573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000228919062000754565b6001600160a01b031660a08190526200024390600162000451565b60a05162000253906001620004cb565b6934f086f3b33b684000006009819055600b55600060028180808381806a084595161401484a0000006127106200028c8260326200079c565b620002989190620007be565b600a5560108990556011889055601287905560138690558587620002bd8a8c620007e1565b620002c99190620007e1565b620002d59190620007e1565b600f5560158590556016849055601783905560188290558183620002fa8688620007e1565b620003069190620007e1565b620003129190620007e1565b60145560068054736b1a70f6363b90dad5a4588e536870ecb729c8346001600160a01b0319918216811790925560078054821683179055600880549091169091179055620003746200036c6005546001600160a01b031690565b60016200051f565b620003813060016200051f565b6200039061dead60016200051f565b620003af620003a76005546001600160a01b031690565b600162000451565b620003bc30600162000451565b620003cb61dead600162000451565b620003eb736b1a70f6363b90dad5a4588e536870ecb729c83482620005c9565b5050505050505050505062000839565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004a05760405162461bcd60e51b815260206004820181905260248201526000805160206200332383398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200056a5760405162461bcd60e51b8152602060048201819052602482015260008051602062003323833981519152604482015260640162000497565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006215760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000497565b8060026000828254620006359190620007e1565b90915550506001600160a01b0382166000908152602081905260408120805483929062000664908490620007e1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006bc90620007fc565b90600052602060002090601f016020900481019282620006e057600085556200072b565b82601f10620006fb57805160ff19168380011785556200072b565b828001600101855582156200072b579182015b828111156200072b5782518255916020019190600101906200070e565b50620007399291506200073d565b5090565b5b808211156200073957600081556001016200073e565b6000602082840312156200076757600080fd5b81516001600160a01b03811681146200077f57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007b957620007b962000786565b500290565b600082620007dc57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007f757620007f762000786565b500190565b600181811c908216806200081157607f821691505b602082108114156200083357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612a8c620008976000396000818161059301528181610fa001526117ba01526000818161043c0152818161177c015281816123df01528181612498015281816124d40152818161254e01526125b60152612a8c6000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d3146109f0578063f2fde38b14610a06578063f637434214610a26578063f8b45b0514610a3c57600080fd5b8063dd62ed3e1461097f578063e2f45605146109c5578063e884f260146109db57600080fd5b8063c8c8ebe4116100d1578063c8c8ebe41461091e578063c9567bf914610934578063d257b34f14610949578063d85ba0631461096957600080fd5b8063c0246668146108c4578063c18bc195146108e4578063c876d0b91461090457600080fd5b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610835578063a9059cbb14610855578063b62496f514610875578063bbc0c742146108a557600080fd5b80639fccce32146107f3578063a0d82dc514610809578063a1dc92bc1461081f57600080fd5b8063924de9b7116101a0578063924de9b71461078857806395d89b41146107a85780639a7a23d6146107bd5780639c3b4fdc146107dd57600080fd5b80638da5cb5b146107345780638ea5220f14610752578063921369131461077257600080fd5b806344249f04116102a057806370a082311161023e5780637571336a116102185780637571336a146106be57806375f0a874146106de5780637b208769146106fe5780637bce5a041461071e57600080fd5b806370a082311461065e578063715018a614610694578063751039fc146106a957600080fd5b80634fbee1931161027a5780634fbee193146105cf5780636a486a8e146106085780636c5b28551461061e5780636ddd17131461063e57600080fd5b806344249f041461056b57806349bd5a5e146105815780634a62bb65146105b557600080fd5b80631a8145bb1161030d57806323b872dd116102e757806323b872dd146104f957806327c8f83514610519578063313ce5671461052f578063395093511461054b57600080fd5b80631a8145bb146104ad5780631f3fed8f146104c3578063203e727e146104d957600080fd5b806310d5de531161034957806310d5de53146103fa5780631694505e1461042a578063178d9b8e1461047657806318160ddd1461049857600080fd5b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a52565b60405161039d919061262e565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612698565b610ae4565b604051901515815260200161039d565b3480156103e257600080fd5b506103ec60155481565b60405190815260200161039d565b34801561040657600080fd5b506103c66104153660046126c4565b601e6020526000908152604090205460ff1681565b34801561043657600080fd5b5061045e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161039d565b34801561048257600080fd5b506104966104913660046126e1565b610afa565b005b3480156104a457600080fd5b506002546103ec565b3480156104b957600080fd5b506103ec601b5481565b3480156104cf57600080fd5b506103ec601a5481565b3480156104e557600080fd5b506104966104f4366004612713565b610bcb565b34801561050557600080fd5b506103c661051436600461272c565b610ca8565b34801561052557600080fd5b5061045e61dead81565b34801561053b57600080fd5b506040516012815260200161039d565b34801561055757600080fd5b506103c6610566366004612698565b610d52565b34801561057757600080fd5b506103ec60195481565b34801561058d57600080fd5b5061045e7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105c157600080fd5b50600c546103c69060ff1681565b3480156105db57600080fd5b506103c66105ea3660046126c4565b6001600160a01b03166000908152601d602052604090205460ff1690565b34801561061457600080fd5b506103ec60145481565b34801561062a57600080fd5b506104966106393660046126e1565b610d8e565b34801561064a57600080fd5b50600c546103c69062010000900460ff1681565b34801561066a57600080fd5b506103ec6106793660046126c4565b6001600160a01b031660009081526020819052604090205490565b3480156106a057600080fd5b50610496610e57565b3480156106b557600080fd5b506103c6610e8d565b3480156106ca57600080fd5b506104966106d936600461277d565b610eca565b3480156106ea57600080fd5b5060075461045e906001600160a01b031681565b34801561070a57600080fd5b5060065461045e906001600160a01b031681565b34801561072a57600080fd5b506103ec60115481565b34801561074057600080fd5b506005546001600160a01b031661045e565b34801561075e57600080fd5b5060085461045e906001600160a01b031681565b34801561077e57600080fd5b506103ec60165481565b34801561079457600080fd5b506104966107a33660046127b2565b610f1f565b3480156107b457600080fd5b50610390610f65565b3480156107c957600080fd5b506104966107d836600461277d565b610f74565b3480156107e957600080fd5b506103ec60135481565b3480156107ff57600080fd5b506103ec601c5481565b34801561081557600080fd5b506103ec60185481565b34801561082b57600080fd5b506103ec60105481565b34801561084157600080fd5b506103c6610850366004612698565b611054565b34801561086157600080fd5b506103c6610870366004612698565b6110ed565b34801561088157600080fd5b506103c66108903660046126c4565b601f6020526000908152604090205460ff1681565b3480156108b157600080fd5b50600c546103c690610100900460ff1681565b3480156108d057600080fd5b506104966108df36600461277d565b6110fa565b3480156108f057600080fd5b506104966108ff366004612713565b611183565b34801561091057600080fd5b50600e546103c69060ff1681565b34801561092a57600080fd5b506103ec60095481565b34801561094057600080fd5b50610496611254565b34801561095557600080fd5b506103c6610964366004612713565b611291565b34801561097557600080fd5b506103ec600f5481565b34801561098b57600080fd5b506103ec61099a3660046127cd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109d157600080fd5b506103ec600a5481565b3480156109e757600080fd5b506103c66113e8565b3480156109fc57600080fd5b506103ec60125481565b348015610a1257600080fd5b50610496610a213660046126c4565b611425565b348015610a3257600080fd5b506103ec60175481565b348015610a4857600080fd5b506103ec600b5481565b606060038054610a6190612806565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d90612806565b8015610ada5780601f10610aaf57610100808354040283529160200191610ada565b820191906000526020600020905b815481529060010190602001808311610abd57829003601f168201915b5050505050905090565b6000610af13384846114c0565b50600192915050565b6005546001600160a01b03163314610b2d5760405162461bcd60e51b8152600401610b2490612841565b60405180910390fd5b60968183610b3b868861288c565b610b45919061288c565b610b4f919061288c565b1115610b8e5760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031352560901b6044820152606401610b24565b60108490556011839055601282905560138190558082610bae858761288c565b610bb8919061288c565b610bc2919061288c565b600f5550505050565b6005546001600160a01b03163314610bf55760405162461bcd60e51b8152600401610b2490612841565b670de0b6b3a76400006103e8610c0a60025490565b610c159060056128a4565b610c1f91906128c3565b610c2991906128c3565b811015610c905760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610b24565b610ca281670de0b6b3a76400006128a4565b60095550565b6000610cb58484846115e4565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d3a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b24565b610d4785338584036114c0565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610af1918590610d8990869061288c565b6114c0565b6005546001600160a01b03163314610db85760405162461bcd60e51b8152600401610b2490612841565b60968183610dc6868861288c565b610dd0919061288c565b610dda919061288c565b1115610e1a5760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031352560881b6044820152606401610b24565b60158490556016839055601782905560188190558082610e3a858761288c565b610e44919061288c565b610e4e919061288c565b60145550505050565b6005546001600160a01b03163314610e815760405162461bcd60e51b8152600401610b2490612841565b610e8b6000611e98565b565b6005546000906001600160a01b03163314610eba5760405162461bcd60e51b8152600401610b2490612841565b50600c805460ff19169055600190565b6005546001600160a01b03163314610ef45760405162461bcd60e51b8152600401610b2490612841565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f495760405162461bcd60e51b8152600401610b2490612841565b600c8054911515620100000262ff000019909216919091179055565b606060048054610a6190612806565b6005546001600160a01b03163314610f9e5760405162461bcd60e51b8152600401610b2490612841565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156110465760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b24565b6110508282611eea565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110d65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b24565b6110e333858584036114c0565b5060019392505050565b6000610af13384846115e4565b6005546001600160a01b031633146111245760405162461bcd60e51b8152600401610b2490612841565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111ad5760405162461bcd60e51b8152600401610b2490612841565b670de0b6b3a76400006103e86111c260025490565b6111cd9060056128a4565b6111d791906128c3565b6111e191906128c3565b81101561123c5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b24565b61124e81670de0b6b3a76400006128a4565b600b5550565b6005546001600160a01b0316331461127e5760405162461bcd60e51b8152600401610b2490612841565b600c805462ffff00191662010100179055565b6005546000906001600160a01b031633146112be5760405162461bcd60e51b8152600401610b2490612841565b620186a06112cb60025490565b6112d69060016128a4565b6112e091906128c3565b82101561134d5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b24565b6103e861135960025490565b6113649060056128a4565b61136e91906128c3565b8211156113da5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b24565b50600a81905560015b919050565b6005546000906001600160a01b031633146114155760405162461bcd60e51b8152600401610b2490612841565b50600e805460ff19169055600190565b6005546001600160a01b0316331461144f5760405162461bcd60e51b8152600401610b2490612841565b6001600160a01b0381166114b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b24565b6114bd81611e98565b50565b6001600160a01b0383166115225760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b24565b6001600160a01b0382166115835760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b24565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661160a5760405162461bcd60e51b8152600401610b24906128e5565b6001600160a01b0382166116305760405162461bcd60e51b8152600401610b249061292a565b806116465761164183836000611f3e565b505050565b600c5460ff1615611b03576005546001600160a01b0384811691161480159061167d57506005546001600160a01b03838116911614155b801561169157506001600160a01b03821615155b80156116a857506001600160a01b03821661dead14155b80156116be5750600554600160a01b900460ff16155b15611b0357600c54610100900460ff16611756576001600160a01b0383166000908152601d602052604090205460ff168061171157506001600160a01b0382166000908152601d602052604090205460ff165b6117565760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b24565b600e5460ff161561189d576005546001600160a01b038381169116148015906117b157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156117ef57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561189d57326000908152600d6020526040902054431161188a5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b24565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601f602052604090205460ff1680156118de57506001600160a01b0382166000908152601e602052604090205460ff16155b156119c2576009548111156119535760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b24565b600b546001600160a01b038316600090815260208190526040902054611979908361288c565b11156119bd5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b24565b611b03565b6001600160a01b0382166000908152601f602052604090205460ff168015611a0357506001600160a01b0383166000908152601e602052604090205460ff16155b15611a79576009548111156119bd5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b24565b6001600160a01b0382166000908152601e602052604090205460ff16611b0357600b546001600160a01b038316600090815260208190526040902054611abf908361288c565b1115611b035760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b24565b30600090815260208190526040902054600a5481108015908190611b2f5750600c5462010000900460ff165b8015611b455750600554600160a01b900460ff16155b8015611b6a57506001600160a01b0385166000908152601f602052604090205460ff16155b8015611b8f57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611bb457506001600160a01b0384166000908152601d602052604090205460ff16155b15611be2576005805460ff60a01b1916600160a01b179055611bd4612093565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601d602052604090205460ff600160a01b909204821615911680611c3057506001600160a01b0385166000908152601d602052604090205460ff165b15611c39575060005b60008115611e84576001600160a01b0386166000908152601f602052604090205460ff168015611c6b57506000601454115b15611d5957611c906064611c8a6014548861235d90919063ffffffff16565b90612370565b905060145460155482611ca391906128a4565b611cad91906128c3565b60196000828254611cbe919061288c565b9091555050601454601754611cd390836128a4565b611cdd91906128c3565b601b6000828254611cee919061288c565b9091555050601454601854611d0390836128a4565b611d0d91906128c3565b601c6000828254611d1e919061288c565b9091555050601454601654611d3390836128a4565b611d3d91906128c3565b601a6000828254611d4e919061288c565b90915550611e669050565b6001600160a01b0387166000908152601f602052604090205460ff168015611d8357506000600f54115b15611e6657611da26064611c8a600f548861235d90919063ffffffff16565b9050600f5460105482611db591906128a4565b611dbf91906128c3565b60196000828254611dd0919061288c565b9091555050600f54601254611de590836128a4565b611def91906128c3565b601b6000828254611e00919061288c565b9091555050600f54601354611e1590836128a4565b611e1f91906128c3565b601c6000828254611e30919061288c565b9091555050600f54601154611e4590836128a4565b611e4f91906128c3565b601a6000828254611e60919061288c565b90915550505b8015611e7757611e77873083611f3e565b611e81818661296d565b94505b611e8f878787611f3e565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f645760405162461bcd60e51b8152600401610b24906128e5565b6001600160a01b038216611f8a5760405162461bcd60e51b8152600401610b249061292a565b6001600160a01b038316600090815260208190526040902054818110156120025760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b24565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061203990849061288c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161208591815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601c54601a54601b546019546120bd919061288c565b6120c7919061288c565b6120d1919061288c565b905060008215806120e0575081155b156120ea57505050565b600a546120f89060146128a4565b83111561211057600a5461210d9060146128a4565b92505b6000600283601b548661212391906128a4565b61212d91906128c3565b61213791906128c3565b90506000612145858361237c565b90504761215182612388565b600061215d478361237c565b9050600061217a87611c8a6019548561235d90919063ffffffff16565b9050600061219788611c8a601a548661235d90919063ffffffff16565b905060006121b489611c8a601c548761235d90919063ffffffff16565b9050600081836121c4868861296d565b6121ce919061296d565b6121d8919061296d565b6000601b8190556019819055601a819055601c8190556008546040519293506001600160a01b031691849181818185875af1925050503d806000811461223a576040519150601f19603f3d011682016040523d82523d6000602084013e61223f565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d806000811461228f576040519150601f19603f3d011682016040523d82523d6000602084013e612294565b606091505b509099505087158015906122a85750600081115b156122fb576122b78882612548565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612348576040519150601f19603f3d011682016040523d82523d6000602084013e61234d565b606091505b5050505050505050505050505050565b600061236982846128a4565b9392505050565b600061236982846128c3565b6000612369828461296d565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123bd576123bd612984565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561243b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061245f919061299a565b8160018151811061247257612472612984565b60200260200101906001600160a01b031690816001600160a01b0316815250506124bd307f0000000000000000000000000000000000000000000000000000000000000000846114c0565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906125129085906000908690309042906004016129b7565b600060405180830381600087803b15801561252c57600080fd5b505af1158015612540573d6000803e3d6000fd5b505050505050565b612573307f0000000000000000000000000000000000000000000000000000000000000000846114c0565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015612602573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126279190612a28565b5050505050565b600060208083528351808285015260005b8181101561265b5785810183015185820160400152820161263f565b8181111561266d576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146114bd57600080fd5b600080604083850312156126ab57600080fd5b82356126b681612683565b946020939093013593505050565b6000602082840312156126d657600080fd5b813561236981612683565b600080600080608085870312156126f757600080fd5b5050823594602084013594506040840135936060013592509050565b60006020828403121561272557600080fd5b5035919050565b60008060006060848603121561274157600080fd5b833561274c81612683565b9250602084013561275c81612683565b929592945050506040919091013590565b803580151581146113e357600080fd5b6000806040838503121561279057600080fd5b823561279b81612683565b91506127a96020840161276d565b90509250929050565b6000602082840312156127c457600080fd5b6123698261276d565b600080604083850312156127e057600080fd5b82356127eb81612683565b915060208301356127fb81612683565b809150509250929050565b600181811c9082168061281a57607f821691505b6020821081141561283b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561289f5761289f612876565b500190565b60008160001904831182151516156128be576128be612876565b500290565b6000826128e057634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561297f5761297f612876565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156129ac57600080fd5b815161236981612683565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612a075784516001600160a01b0316835293830193918301916001016129e2565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a3d57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212201683ac40271a0b9290554cc52d2bcb69bba7f5a9d74b0cefe474722ee801829b64736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d3146109f0578063f2fde38b14610a06578063f637434214610a26578063f8b45b0514610a3c57600080fd5b8063dd62ed3e1461097f578063e2f45605146109c5578063e884f260146109db57600080fd5b8063c8c8ebe4116100d1578063c8c8ebe41461091e578063c9567bf914610934578063d257b34f14610949578063d85ba0631461096957600080fd5b8063c0246668146108c4578063c18bc195146108e4578063c876d0b91461090457600080fd5b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610835578063a9059cbb14610855578063b62496f514610875578063bbc0c742146108a557600080fd5b80639fccce32146107f3578063a0d82dc514610809578063a1dc92bc1461081f57600080fd5b8063924de9b7116101a0578063924de9b71461078857806395d89b41146107a85780639a7a23d6146107bd5780639c3b4fdc146107dd57600080fd5b80638da5cb5b146107345780638ea5220f14610752578063921369131461077257600080fd5b806344249f04116102a057806370a082311161023e5780637571336a116102185780637571336a146106be57806375f0a874146106de5780637b208769146106fe5780637bce5a041461071e57600080fd5b806370a082311461065e578063715018a614610694578063751039fc146106a957600080fd5b80634fbee1931161027a5780634fbee193146105cf5780636a486a8e146106085780636c5b28551461061e5780636ddd17131461063e57600080fd5b806344249f041461056b57806349bd5a5e146105815780634a62bb65146105b557600080fd5b80631a8145bb1161030d57806323b872dd116102e757806323b872dd146104f957806327c8f83514610519578063313ce5671461052f578063395093511461054b57600080fd5b80631a8145bb146104ad5780631f3fed8f146104c3578063203e727e146104d957600080fd5b806310d5de531161034957806310d5de53146103fa5780631694505e1461042a578063178d9b8e1461047657806318160ddd1461049857600080fd5b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a52565b60405161039d919061262e565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612698565b610ae4565b604051901515815260200161039d565b3480156103e257600080fd5b506103ec60155481565b60405190815260200161039d565b34801561040657600080fd5b506103c66104153660046126c4565b601e6020526000908152604090205460ff1681565b34801561043657600080fd5b5061045e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161039d565b34801561048257600080fd5b506104966104913660046126e1565b610afa565b005b3480156104a457600080fd5b506002546103ec565b3480156104b957600080fd5b506103ec601b5481565b3480156104cf57600080fd5b506103ec601a5481565b3480156104e557600080fd5b506104966104f4366004612713565b610bcb565b34801561050557600080fd5b506103c661051436600461272c565b610ca8565b34801561052557600080fd5b5061045e61dead81565b34801561053b57600080fd5b506040516012815260200161039d565b34801561055757600080fd5b506103c6610566366004612698565b610d52565b34801561057757600080fd5b506103ec60195481565b34801561058d57600080fd5b5061045e7f000000000000000000000000c5c8cb1f73481f637a42870135be2e52b174986e81565b3480156105c157600080fd5b50600c546103c69060ff1681565b3480156105db57600080fd5b506103c66105ea3660046126c4565b6001600160a01b03166000908152601d602052604090205460ff1690565b34801561061457600080fd5b506103ec60145481565b34801561062a57600080fd5b506104966106393660046126e1565b610d8e565b34801561064a57600080fd5b50600c546103c69062010000900460ff1681565b34801561066a57600080fd5b506103ec6106793660046126c4565b6001600160a01b031660009081526020819052604090205490565b3480156106a057600080fd5b50610496610e57565b3480156106b557600080fd5b506103c6610e8d565b3480156106ca57600080fd5b506104966106d936600461277d565b610eca565b3480156106ea57600080fd5b5060075461045e906001600160a01b031681565b34801561070a57600080fd5b5060065461045e906001600160a01b031681565b34801561072a57600080fd5b506103ec60115481565b34801561074057600080fd5b506005546001600160a01b031661045e565b34801561075e57600080fd5b5060085461045e906001600160a01b031681565b34801561077e57600080fd5b506103ec60165481565b34801561079457600080fd5b506104966107a33660046127b2565b610f1f565b3480156107b457600080fd5b50610390610f65565b3480156107c957600080fd5b506104966107d836600461277d565b610f74565b3480156107e957600080fd5b506103ec60135481565b3480156107ff57600080fd5b506103ec601c5481565b34801561081557600080fd5b506103ec60185481565b34801561082b57600080fd5b506103ec60105481565b34801561084157600080fd5b506103c6610850366004612698565b611054565b34801561086157600080fd5b506103c6610870366004612698565b6110ed565b34801561088157600080fd5b506103c66108903660046126c4565b601f6020526000908152604090205460ff1681565b3480156108b157600080fd5b50600c546103c690610100900460ff1681565b3480156108d057600080fd5b506104966108df36600461277d565b6110fa565b3480156108f057600080fd5b506104966108ff366004612713565b611183565b34801561091057600080fd5b50600e546103c69060ff1681565b34801561092a57600080fd5b506103ec60095481565b34801561094057600080fd5b50610496611254565b34801561095557600080fd5b506103c6610964366004612713565b611291565b34801561097557600080fd5b506103ec600f5481565b34801561098b57600080fd5b506103ec61099a3660046127cd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109d157600080fd5b506103ec600a5481565b3480156109e757600080fd5b506103c66113e8565b3480156109fc57600080fd5b506103ec60125481565b348015610a1257600080fd5b50610496610a213660046126c4565b611425565b348015610a3257600080fd5b506103ec60175481565b348015610a4857600080fd5b506103ec600b5481565b606060038054610a6190612806565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d90612806565b8015610ada5780601f10610aaf57610100808354040283529160200191610ada565b820191906000526020600020905b815481529060010190602001808311610abd57829003601f168201915b5050505050905090565b6000610af13384846114c0565b50600192915050565b6005546001600160a01b03163314610b2d5760405162461bcd60e51b8152600401610b2490612841565b60405180910390fd5b60968183610b3b868861288c565b610b45919061288c565b610b4f919061288c565b1115610b8e5760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031352560901b6044820152606401610b24565b60108490556011839055601282905560138190558082610bae858761288c565b610bb8919061288c565b610bc2919061288c565b600f5550505050565b6005546001600160a01b03163314610bf55760405162461bcd60e51b8152600401610b2490612841565b670de0b6b3a76400006103e8610c0a60025490565b610c159060056128a4565b610c1f91906128c3565b610c2991906128c3565b811015610c905760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610b24565b610ca281670de0b6b3a76400006128a4565b60095550565b6000610cb58484846115e4565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d3a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b24565b610d4785338584036114c0565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610af1918590610d8990869061288c565b6114c0565b6005546001600160a01b03163314610db85760405162461bcd60e51b8152600401610b2490612841565b60968183610dc6868861288c565b610dd0919061288c565b610dda919061288c565b1115610e1a5760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031352560881b6044820152606401610b24565b60158490556016839055601782905560188190558082610e3a858761288c565b610e44919061288c565b610e4e919061288c565b60145550505050565b6005546001600160a01b03163314610e815760405162461bcd60e51b8152600401610b2490612841565b610e8b6000611e98565b565b6005546000906001600160a01b03163314610eba5760405162461bcd60e51b8152600401610b2490612841565b50600c805460ff19169055600190565b6005546001600160a01b03163314610ef45760405162461bcd60e51b8152600401610b2490612841565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f495760405162461bcd60e51b8152600401610b2490612841565b600c8054911515620100000262ff000019909216919091179055565b606060048054610a6190612806565b6005546001600160a01b03163314610f9e5760405162461bcd60e51b8152600401610b2490612841565b7f000000000000000000000000c5c8cb1f73481f637a42870135be2e52b174986e6001600160a01b0316826001600160a01b031614156110465760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b24565b6110508282611eea565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110d65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b24565b6110e333858584036114c0565b5060019392505050565b6000610af13384846115e4565b6005546001600160a01b031633146111245760405162461bcd60e51b8152600401610b2490612841565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111ad5760405162461bcd60e51b8152600401610b2490612841565b670de0b6b3a76400006103e86111c260025490565b6111cd9060056128a4565b6111d791906128c3565b6111e191906128c3565b81101561123c5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b24565b61124e81670de0b6b3a76400006128a4565b600b5550565b6005546001600160a01b0316331461127e5760405162461bcd60e51b8152600401610b2490612841565b600c805462ffff00191662010100179055565b6005546000906001600160a01b031633146112be5760405162461bcd60e51b8152600401610b2490612841565b620186a06112cb60025490565b6112d69060016128a4565b6112e091906128c3565b82101561134d5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b24565b6103e861135960025490565b6113649060056128a4565b61136e91906128c3565b8211156113da5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b24565b50600a81905560015b919050565b6005546000906001600160a01b031633146114155760405162461bcd60e51b8152600401610b2490612841565b50600e805460ff19169055600190565b6005546001600160a01b0316331461144f5760405162461bcd60e51b8152600401610b2490612841565b6001600160a01b0381166114b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b24565b6114bd81611e98565b50565b6001600160a01b0383166115225760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b24565b6001600160a01b0382166115835760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b24565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661160a5760405162461bcd60e51b8152600401610b24906128e5565b6001600160a01b0382166116305760405162461bcd60e51b8152600401610b249061292a565b806116465761164183836000611f3e565b505050565b600c5460ff1615611b03576005546001600160a01b0384811691161480159061167d57506005546001600160a01b03838116911614155b801561169157506001600160a01b03821615155b80156116a857506001600160a01b03821661dead14155b80156116be5750600554600160a01b900460ff16155b15611b0357600c54610100900460ff16611756576001600160a01b0383166000908152601d602052604090205460ff168061171157506001600160a01b0382166000908152601d602052604090205460ff165b6117565760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b24565b600e5460ff161561189d576005546001600160a01b038381169116148015906117b157507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156117ef57507f000000000000000000000000c5c8cb1f73481f637a42870135be2e52b174986e6001600160a01b0316826001600160a01b031614155b1561189d57326000908152600d6020526040902054431161188a5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b24565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601f602052604090205460ff1680156118de57506001600160a01b0382166000908152601e602052604090205460ff16155b156119c2576009548111156119535760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b24565b600b546001600160a01b038316600090815260208190526040902054611979908361288c565b11156119bd5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b24565b611b03565b6001600160a01b0382166000908152601f602052604090205460ff168015611a0357506001600160a01b0383166000908152601e602052604090205460ff16155b15611a79576009548111156119bd5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b24565b6001600160a01b0382166000908152601e602052604090205460ff16611b0357600b546001600160a01b038316600090815260208190526040902054611abf908361288c565b1115611b035760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b24565b30600090815260208190526040902054600a5481108015908190611b2f5750600c5462010000900460ff165b8015611b455750600554600160a01b900460ff16155b8015611b6a57506001600160a01b0385166000908152601f602052604090205460ff16155b8015611b8f57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611bb457506001600160a01b0384166000908152601d602052604090205460ff16155b15611be2576005805460ff60a01b1916600160a01b179055611bd4612093565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601d602052604090205460ff600160a01b909204821615911680611c3057506001600160a01b0385166000908152601d602052604090205460ff165b15611c39575060005b60008115611e84576001600160a01b0386166000908152601f602052604090205460ff168015611c6b57506000601454115b15611d5957611c906064611c8a6014548861235d90919063ffffffff16565b90612370565b905060145460155482611ca391906128a4565b611cad91906128c3565b60196000828254611cbe919061288c565b9091555050601454601754611cd390836128a4565b611cdd91906128c3565b601b6000828254611cee919061288c565b9091555050601454601854611d0390836128a4565b611d0d91906128c3565b601c6000828254611d1e919061288c565b9091555050601454601654611d3390836128a4565b611d3d91906128c3565b601a6000828254611d4e919061288c565b90915550611e669050565b6001600160a01b0387166000908152601f602052604090205460ff168015611d8357506000600f54115b15611e6657611da26064611c8a600f548861235d90919063ffffffff16565b9050600f5460105482611db591906128a4565b611dbf91906128c3565b60196000828254611dd0919061288c565b9091555050600f54601254611de590836128a4565b611def91906128c3565b601b6000828254611e00919061288c565b9091555050600f54601354611e1590836128a4565b611e1f91906128c3565b601c6000828254611e30919061288c565b9091555050600f54601154611e4590836128a4565b611e4f91906128c3565b601a6000828254611e60919061288c565b90915550505b8015611e7757611e77873083611f3e565b611e81818661296d565b94505b611e8f878787611f3e565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f645760405162461bcd60e51b8152600401610b24906128e5565b6001600160a01b038216611f8a5760405162461bcd60e51b8152600401610b249061292a565b6001600160a01b038316600090815260208190526040902054818110156120025760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b24565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061203990849061288c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161208591815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601c54601a54601b546019546120bd919061288c565b6120c7919061288c565b6120d1919061288c565b905060008215806120e0575081155b156120ea57505050565b600a546120f89060146128a4565b83111561211057600a5461210d9060146128a4565b92505b6000600283601b548661212391906128a4565b61212d91906128c3565b61213791906128c3565b90506000612145858361237c565b90504761215182612388565b600061215d478361237c565b9050600061217a87611c8a6019548561235d90919063ffffffff16565b9050600061219788611c8a601a548661235d90919063ffffffff16565b905060006121b489611c8a601c548761235d90919063ffffffff16565b9050600081836121c4868861296d565b6121ce919061296d565b6121d8919061296d565b6000601b8190556019819055601a819055601c8190556008546040519293506001600160a01b031691849181818185875af1925050503d806000811461223a576040519150601f19603f3d011682016040523d82523d6000602084013e61223f565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d806000811461228f576040519150601f19603f3d011682016040523d82523d6000602084013e612294565b606091505b509099505087158015906122a85750600081115b156122fb576122b78882612548565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612348576040519150601f19603f3d011682016040523d82523d6000602084013e61234d565b606091505b5050505050505050505050505050565b600061236982846128a4565b9392505050565b600061236982846128c3565b6000612369828461296d565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123bd576123bd612984565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561243b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061245f919061299a565b8160018151811061247257612472612984565b60200260200101906001600160a01b031690816001600160a01b0316815250506124bd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114c0565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906125129085906000908690309042906004016129b7565b600060405180830381600087803b15801561252c57600080fd5b505af1158015612540573d6000803e3d6000fd5b505050505050565b612573307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114c0565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015612602573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126279190612a28565b5050505050565b600060208083528351808285015260005b8181101561265b5785810183015185820160400152820161263f565b8181111561266d576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146114bd57600080fd5b600080604083850312156126ab57600080fd5b82356126b681612683565b946020939093013593505050565b6000602082840312156126d657600080fd5b813561236981612683565b600080600080608085870312156126f757600080fd5b5050823594602084013594506040840135936060013592509050565b60006020828403121561272557600080fd5b5035919050565b60008060006060848603121561274157600080fd5b833561274c81612683565b9250602084013561275c81612683565b929592945050506040919091013590565b803580151581146113e357600080fd5b6000806040838503121561279057600080fd5b823561279b81612683565b91506127a96020840161276d565b90509250929050565b6000602082840312156127c457600080fd5b6123698261276d565b600080604083850312156127e057600080fd5b82356127eb81612683565b915060208301356127fb81612683565b809150509250929050565b600181811c9082168061281a57607f821691505b6020821081141561283b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561289f5761289f612876565b500190565b60008160001904831182151516156128be576128be612876565b500290565b6000826128e057634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561297f5761297f612876565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156129ac57600080fd5b815161236981612683565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612a075784516001600160a01b0316835293830193918301916001016129e2565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a3d57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212201683ac40271a0b9290554cc52d2bcb69bba7f5a9d74b0cefe474722ee801829b64736f6c634300080a0033

Deployed Bytecode Sourcemap

32199:16535:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9741:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11908:169;;;;;;;;;;-1:-1:-1;11908:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11908:169:0;1072:187:1;33241:29:0;;;;;;;;;;;;;;;;;;;1410:25:1;;;1398:2;1383:18;33241:29:0;1264:177:1;33678:63:0;;;;;;;;;;-1:-1:-1;33678:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32278:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1889:32:1;;;1871:51;;1859:2;1844:18;32278:51:0;1698:230:1;39022:496:0;;;;;;;;;;-1:-1:-1;39022:496:0;;;;;:::i;:::-;;:::i;:::-;;10861:108;;;;;;;;;;-1:-1:-1;10949:12:0;;10861:108;;33462:33;;;;;;;;;;;;;;;;33422;;;;;;;;;;;;;;;;38103:275;;;;;;;;;;-1:-1:-1;38103:275:0;;;;;:::i;:::-;;:::i;12559:492::-;;;;;;;;;;-1:-1:-1;12559:492:0;;;;;:::i;:::-;;:::i;32381:53::-;;;;;;;;;;;;32427:6;32381:53;;10703:93;;;;;;;;;;-1:-1:-1;10703:93:0;;10786:2;3319:36:1;;3307:2;3292:18;10703:93:0;3177:184:1;13460:215:0;;;;;;;;;;-1:-1:-1;13460:215:0;;;;;:::i;:::-;;:::i;33384:31::-;;;;;;;;;;;;;;;;32336:38;;;;;;;;;;;;;;;32690:33;;;;;;;;;;-1:-1:-1;32690:33:0;;;;;;;;40738:126;;;;;;;;;;-1:-1:-1;40738:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;40828:28:0;40804:4;40828:28;;;:19;:28;;;;;;;;;40738:126;33209:28;;;;;;;;;;;;;;;;39526:506;;;;;;;;;;-1:-1:-1;39526:506:0;;;;;:::i;:::-;;:::i;32770:30::-;;;;;;;;;;-1:-1:-1;32770:30:0;;;;;;;;;;;11032:127;;;;;;;;;;-1:-1:-1;11032:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11133:18:0;11106:7;11133:18;;;;;;;;;;;;11032:127;2982:103;;;;;;;;;;;;;:::i;37211:121::-;;;;;;;;;;;;;:::i;38651:167::-;;;;;;;;;;-1:-1:-1;38651:167:0;;;;;:::i;:::-;;:::i;32505:30::-;;;;;;;;;;-1:-1:-1;32505:30:0;;;;-1:-1:-1;;;;;32505:30:0;;;32470:28;;;;;;;;;;-1:-1:-1;32470:28:0;;;;-1:-1:-1;;;;;32470:28:0;;;33102:30;;;;;;;;;;;;;;;;2331:87;;;;;;;;;;-1:-1:-1;2404:6:0;;-1:-1:-1;;;;;2404:6:0;2331:87;;32542:24;;;;;;;;;;-1:-1:-1;32542:24:0;;;;-1:-1:-1;;;;;32542:24:0;;;33277:31;;;;;;;;;;;;;;;;38914:100;;;;;;;;;;-1:-1:-1;38914:100:0;;;;;:::i;:::-;;:::i;9960:104::-;;;;;;;;;;;;;:::i;40230:304::-;;;;;;;;;;-1:-1:-1;40230:304:0;;;;;:::i;:::-;;:::i;33176:24::-;;;;;;;;;;;;;;;;33502:27;;;;;;;;;;;;;;;;33353:25;;;;;;;;;;;;;;;;33067:28;;;;;;;;;;;;;;;;14178:413;;;;;;;;;;-1:-1:-1;14178:413:0;;;;;:::i;:::-;;:::i;11372:175::-;;;;;;;;;;-1:-1:-1;11372:175:0;;;;;:::i;:::-;;:::i;33899:57::-;;;;;;;;;;-1:-1:-1;33899:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32730:33;;;;;;;;;;-1:-1:-1;32730:33:0;;;;;;;;;;;40040:182;;;;;;;;;;-1:-1:-1;40040:182:0;;;;;:::i;:::-;;:::i;38386:256::-;;;;;;;;;;-1:-1:-1;38386:256:0;;;;;:::i;:::-;;:::i;32987:40::-;;;;;;;;;;-1:-1:-1;32987:40:0;;;;;;;;32575:35;;;;;;;;;;;;;;;;37049:110;;;;;;;;;;;;;:::i;37598:497::-;;;;;;;;;;-1:-1:-1;37598:497:0;;;;;:::i;:::-;;:::i;33036:27::-;;;;;;;;;;;;;;;;11610:151;;;;;;;;;;-1:-1:-1;11610:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11726:18:0;;;11699:7;11726:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11610:151;32617:33;;;;;;;;;;;;;;;;37393:135;;;;;;;;;;;;;:::i;33139:30::-;;;;;;;;;;;;;;;;3240:201;;;;;;;;;;-1:-1:-1;3240:201:0;;;;;:::i;:::-;;:::i;33315:31::-;;;;;;;;;;;;;;;;32657:24;;;;;;;;;;;;;;;;9741:100;9795:13;9828:5;9821:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9741:100;:::o;11908:169::-;11991:4;12008:39;1084:10;12031:7;12040:6;12008:8;:39::i;:::-;-1:-1:-1;12065:4:0;11908:169;;;;:::o;39022:496::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;;;;;;;;;39254:3:::1;39242:7:::0;39226:13;39196:27:::1;39210:13:::0;39196:11;:27:::1;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;39195:62;;39187:89;;;::::0;-1:-1:-1;;;39187:89:0;;5642:2:1;39187:89:0::1;::::0;::::1;5624:21:1::0;5681:2;5661:18;;;5654:30;-1:-1:-1;;;5700:18:1;;;5693:44;5754:18;;39187:89:0::1;5440:338:1::0;39187:89:0::1;39281:13;:27:::0;;;39319:15:::1;:31:::0;;;39361:15:::1;:31:::0;;;39403:9:::1;:19:::0;;;39415:7;39379:13;39448:31:::1;39337:13:::0;39297:11;39448:31:::1;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;39433:12;:76:::0;-1:-1:-1;;;;39022:496:0:o;38103:275::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;38240:4:::1;38232;38211:13;10949:12:::0;;;10861:108;38211:13:::1;:17;::::0;38227:1:::1;38211:17;:::i;:::-;38210:26;;;;:::i;:::-;38209:35;;;;:::i;:::-;38199:6;:45;;38177:142;;;::::0;-1:-1:-1;;;38177:142:0;;6380:2:1;38177:142:0::1;::::0;::::1;6362:21:1::0;6419:2;6399:18;;;6392:30;6458:34;6438:18;;;6431:62;-1:-1:-1;;;6509:18:1;;;6502:45;6564:19;;38177:142:0::1;6178:411:1::0;38177:142:0::1;38353:17;:6:::0;38363::::1;38353:17;:::i;:::-;38330:20;:40:::0;-1:-1:-1;38103:275:0:o;12559:492::-;12699:4;12716:36;12726:6;12734:9;12745:6;12716:9;:36::i;:::-;-1:-1:-1;;;;;12792:19:0;;12765:24;12792:19;;;:11;:19;;;;;;;;1084:10;12792:33;;;;;;;;12844:26;;;;12836:79;;;;-1:-1:-1;;;12836:79:0;;6796:2:1;12836:79:0;;;6778:21:1;6835:2;6815:18;;;6808:30;6874:34;6854:18;;;6847:62;-1:-1:-1;;;6925:18:1;;;6918:38;6973:19;;12836:79:0;6594:404:1;12836:79:0;12951:57;12960:6;1084:10;13001:6;12982:16;:25;12951:8;:57::i;:::-;-1:-1:-1;13039:4:0;;12559:492;-1:-1:-1;;;;12559:492:0:o;13460:215::-;1084:10;13548:4;13597:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13597:34:0;;;;;;;;;;13548:4;;13565:80;;13588:7;;13597:47;;13634:10;;13597:47;:::i;:::-;13565:8;:80::i;39526:506::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;39759:3:::1;39747:7:::0;39731:13;39701:27:::1;39715:13:::0;39701:11;:27:::1;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;39700:62;;39692:90;;;::::0;-1:-1:-1;;;39692:90:0;;7205:2:1;39692:90:0::1;::::0;::::1;7187:21:1::0;7244:2;7224:18;;;7217:30;-1:-1:-1;;;7263:18:1;;;7256:45;7318:18;;39692:90:0::1;7003:339:1::0;39692:90:0::1;39787:14;:28:::0;;;39826:16:::1;:32:::0;;;39869:16:::1;:32:::0;;;39912:10:::1;:20:::0;;;39925:7;39888:13;39959:33:::1;39845:13:::0;39804:11;39959:33:::1;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;39943:13;:81:::0;-1:-1:-1;;;;39526:506:0:o;2982:103::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;3047:30:::1;3074:1;3047:18;:30::i;:::-;2982:103::o:0;37211:121::-;2404:6;;37263:4;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;-1:-1:-1;37280:14:0::1;:22:::0;;-1:-1:-1;;37280:22:0::1;::::0;;;37211:121;:::o;38651:167::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38764:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;38764:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38651:167::o;38914:100::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;38985:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;38985:21:0;;::::1;::::0;;;::::1;::::0;;38914:100::o;9960:104::-;10016:13;10049:7;10042:14;;;;;:::i;40230:304::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;40374:13:::1;-1:-1:-1::0;;;;;40366:21:0::1;:4;-1:-1:-1::0;;;;;40366:21:0::1;;;40344:128;;;::::0;-1:-1:-1;;;40344:128:0;;7549:2:1;40344:128:0::1;::::0;::::1;7531:21:1::0;7588:2;7568:18;;;7561:30;7627:34;7607:18;;;7600:62;7698:27;7678:18;;;7671:55;7743:19;;40344:128:0::1;7347:421:1::0;40344:128:0::1;40485:41;40514:4;40520:5;40485:28;:41::i;:::-;40230:304:::0;;:::o;14178:413::-;1084:10;14271:4;14315:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14315:34:0;;;;;;;;;;14368:35;;;;14360:85;;;;-1:-1:-1;;;14360:85:0;;7975:2:1;14360:85:0;;;7957:21:1;8014:2;7994:18;;;7987:30;8053:34;8033:18;;;8026:62;-1:-1:-1;;;8104:18:1;;;8097:35;8149:19;;14360:85:0;7773:401:1;14360:85:0;14481:67;1084:10;14504:7;14532:15;14513:16;:34;14481:8;:67::i;:::-;-1:-1:-1;14579:4:0;;14178:413;-1:-1:-1;;;14178:413:0:o;11372:175::-;11458:4;11475:42;1084:10;11499:9;11510:6;11475:9;:42::i;40040:182::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40125:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;40125:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40180:34;;1212:41:1;;;40180:34:0::1;::::0;1185:18:1;40180:34:0::1;;;;;;;40040:182:::0;;:::o;38386:256::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;38526:4:::1;38518;38497:13;10949:12:::0;;;10861:108;38497:13:::1;:17;::::0;38513:1:::1;38497:17;:::i;:::-;38496:26;;;;:::i;:::-;38495:35;;;;:::i;:::-;38485:6;:45;;38463:131;;;::::0;-1:-1:-1;;;38463:131:0;;8381:2:1;38463:131:0::1;::::0;::::1;8363:21:1::0;8420:2;8400:18;;;8393:30;8459:34;8439:18;;;8432:62;-1:-1:-1;;;8510:18:1;;;8503:34;8554:19;;38463:131:0::1;8179:400:1::0;38463:131:0::1;38617:17;:6:::0;38627::::1;38617:17;:::i;:::-;38605:9;:29:::0;-1:-1:-1;38386:256:0:o;37049:110::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;37102:13:::1;:20:::0;;-1:-1:-1;;37133:18:0;;;;;37049:110::o;37598:497::-;2404:6;;37706:4;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;37785:6:::1;37764:13;10949:12:::0;;;10861:108;37764:13:::1;:17;::::0;37780:1:::1;37764:17;:::i;:::-;37763:28;;;;:::i;:::-;37750:9;:41;;37728:144;;;::::0;-1:-1:-1;;;37728:144:0;;8786:2:1;37728:144:0::1;::::0;::::1;8768:21:1::0;8825:2;8805:18;;;8798:30;8864:34;8844:18;;;8837:62;-1:-1:-1;;;8915:18:1;;;8908:51;8976:19;;37728:144:0::1;8584:417:1::0;37728:144:0::1;37940:4;37919:13;10949:12:::0;;;10861:108;37919:13:::1;:17;::::0;37935:1:::1;37919:17;:::i;:::-;37918:26;;;;:::i;:::-;37905:9;:39;;37883:141;;;::::0;-1:-1:-1;;;37883:141:0;;9208:2:1;37883:141:0::1;::::0;::::1;9190:21:1::0;9247:2;9227:18;;;9220:30;9286:34;9266:18;;;9259:62;-1:-1:-1;;;9337:18:1;;;9330:50;9397:19;;37883:141:0::1;9006:416:1::0;37883:141:0::1;-1:-1:-1::0;38035:18:0::1;:30:::0;;;38083:4:::1;2622:1;37598:497:::0;;;:::o;37393:135::-;2404:6;;37453:4;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;-1:-1:-1;37470:20:0::1;:28:::0;;-1:-1:-1;;37470:28:0::1;::::0;;;37393:135;:::o;3240:201::-;2404:6;;-1:-1:-1;;;;;2404:6:0;1084:10;2551:23;2543:68;;;;-1:-1:-1;;;2543:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3329:22:0;::::1;3321:73;;;::::0;-1:-1:-1;;;3321:73:0;;9629:2:1;3321:73:0::1;::::0;::::1;9611:21:1::0;9668:2;9648:18;;;9641:30;9707:34;9687:18;;;9680:62;-1:-1:-1;;;9758:18:1;;;9751:36;9804:19;;3321:73:0::1;9427:402:1::0;3321:73:0::1;3405:28;3424:8;3405:18;:28::i;:::-;3240:201:::0;:::o;17862:380::-;-1:-1:-1;;;;;17998:19:0;;17990:68;;;;-1:-1:-1;;;17990:68:0;;10036:2:1;17990:68:0;;;10018:21:1;10075:2;10055:18;;;10048:30;10114:34;10094:18;;;10087:62;-1:-1:-1;;;10165:18:1;;;10158:34;10209:19;;17990:68:0;9834:400:1;17990:68:0;-1:-1:-1;;;;;18077:21:0;;18069:68;;;;-1:-1:-1;;;18069:68:0;;10441:2:1;18069:68:0;;;10423:21:1;10480:2;10460:18;;;10453:30;10519:34;10499:18;;;10492:62;-1:-1:-1;;;10570:18:1;;;10563:32;10612:19;;18069:68:0;10239:398:1;18069:68:0;-1:-1:-1;;;;;18150:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18202:32;;1410:25:1;;;18202:32:0;;1383:18:1;18202:32:0;;;;;;;17862:380;;;:::o;40872:4847::-;-1:-1:-1;;;;;41004:18:0;;40996:68;;;;-1:-1:-1;;;40996:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41083:16:0;;41075:64;;;;-1:-1:-1;;;41075:64:0;;;;;;;:::i;:::-;41156:11;41152:93;;41184:28;41200:4;41206:2;41210:1;41184:15;:28::i;:::-;40872:4847;;;:::o;41152:93::-;41261:14;;;;41257:2487;;;2404:6;;-1:-1:-1;;;;;41314:15:0;;;2404:6;;41314:15;;;;:49;;-1:-1:-1;2404:6:0;;-1:-1:-1;;;;;41350:13:0;;;2404:6;;41350:13;;41314:49;:86;;;;-1:-1:-1;;;;;;41384:16:0;;;;41314:86;:128;;;;-1:-1:-1;;;;;;41421:21:0;;41435:6;41421:21;;41314:128;:158;;;;-1:-1:-1;41464:8:0;;-1:-1:-1;;;41464:8:0;;;;41463:9;41314:158;41292:2441;;;41512:13;;;;;;;41507:223;;-1:-1:-1;;;;;41584:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;41613:23:0;;;;;;:19;:23;;;;;;;;41584:52;41550:160;;;;-1:-1:-1;;;41550:160:0;;11654:2:1;41550:160:0;;;11636:21:1;11693:2;11673:18;;;11666:30;-1:-1:-1;;;11712:18:1;;;11705:52;11774:18;;41550:160:0;11452:346:1;41550:160:0;41886:20;;;;41882:641;;;2404:6;;-1:-1:-1;;;;;41961:13:0;;;2404:6;;41961:13;;;;:72;;;42017:15;-1:-1:-1;;;;;42003:30:0;:2;-1:-1:-1;;;;;42003:30:0;;;41961:72;:129;;;;;42076:13;-1:-1:-1;;;;;42062:28:0;:2;-1:-1:-1;;;;;42062:28:0;;;41961:129;41931:573;;;42208:9;42179:39;;;;:28;:39;;;;;;42254:12;-1:-1:-1;42141:258:0;;;;-1:-1:-1;;;42141:258:0;;12005:2:1;42141:258:0;;;11987:21:1;12044:2;12024:18;;;12017:30;12083:34;12063:18;;;12056:62;12154:34;12134:18;;;12127:62;-1:-1:-1;;;12205:19:1;;;12198:40;12255:19;;42141:258:0;11803:477:1;42141:258:0;42455:9;42426:39;;;;:28;:39;;;;;42468:12;42426:54;;41931:573;-1:-1:-1;;;;;42597:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;42654:35:0;;;;;;:31;:35;;;;;;;;42653:36;42597:92;42571:1147;;;42776:20;;42766:6;:30;;42732:169;;;;-1:-1:-1;;;42732:169:0;;12487:2:1;42732:169:0;;;12469:21:1;12526:2;12506:18;;;12499:30;12565:34;12545:18;;;12538:62;-1:-1:-1;;;12616:18:1;;;12609:51;12677:19;;42732:169:0;12285:417:1;42732:169:0;42984:9;;-1:-1:-1;;;;;11133:18:0;;11106:7;11133:18;;;;;;;;;;;42958:22;;:6;:22;:::i;:::-;:35;;42924:140;;;;-1:-1:-1;;;42924:140:0;;12909:2:1;42924:140:0;;;12891:21:1;12948:2;12928:18;;;12921:30;-1:-1:-1;;;12967:18:1;;;12960:49;13026:18;;42924:140:0;12707:343:1;42924:140:0;42571:1147;;;-1:-1:-1;;;;;43162:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;43217:37:0;;;;;;:31;:37;;;;;;;;43216:38;43162:92;43136:582;;;43341:20;;43331:6;:30;;43297:170;;;;-1:-1:-1;;;43297:170:0;;13257:2:1;43297:170:0;;;13239:21:1;13296:2;13276:18;;;13269:30;13335:34;13315:18;;;13308:62;-1:-1:-1;;;13386:18:1;;;13379:52;13448:19;;43297:170:0;13055:418:1;43136:582:0;-1:-1:-1;;;;;43498:35:0;;;;;;:31;:35;;;;;;;;43493:225;;43618:9;;-1:-1:-1;;;;;11133:18:0;;11106:7;11133:18;;;;;;;;;;;43592:22;;:6;:22;:::i;:::-;:35;;43558:140;;;;-1:-1:-1;;;43558:140:0;;12909:2:1;43558:140:0;;;12891:21:1;12948:2;12928:18;;;12921:30;-1:-1:-1;;;12967:18:1;;;12960:49;13026:18;;43558:140:0;12707:343:1;43558:140:0;43805:4;43756:28;11133:18;;;;;;;;;;;43863;;43839:42;;;;;;;43912:35;;-1:-1:-1;43936:11:0;;;;;;;43912:35;:61;;;;-1:-1:-1;43965:8:0;;-1:-1:-1;;;43965:8:0;;;;43964:9;43912:61;:110;;;;-1:-1:-1;;;;;;43991:31:0;;;;;;:25;:31;;;;;;;;43990:32;43912:110;:153;;;;-1:-1:-1;;;;;;44040:25:0;;;;;;:19;:25;;;;;;;;44039:26;43912:153;:194;;;;-1:-1:-1;;;;;;44083:23:0;;;;;;:19;:23;;;;;;;;44082:24;43912:194;43894:326;;;44133:8;:15;;-1:-1:-1;;;;44133:15:0;-1:-1:-1;;;44133:15:0;;;44165:10;:8;:10::i;:::-;44192:8;:16;;-1:-1:-1;;;;44192:16:0;;;43894:326;44248:8;;-1:-1:-1;;;;;44358:25:0;;44232:12;44358:25;;;:19;:25;;;;;;44248:8;-1:-1:-1;;;44248:8:0;;;;;44247:9;;44358:25;;:52;;-1:-1:-1;;;;;;44387:23:0;;;;;;:19;:23;;;;;;;;44358:52;44354:100;;;-1:-1:-1;44437:5:0;44354:100;44466:12;44571:7;44567:1099;;;-1:-1:-1;;;;;44623:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;44672:1;44656:13;;:17;44623:50;44619:898;;;44701:34;44731:3;44701:25;44712:13;;44701:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;44694:41;;44788:13;;44770:14;;44763:4;:21;;;;:::i;:::-;44762:39;;;;:::i;:::-;44742:16;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;44870:13:0;;44850:16;;44843:23;;:4;:23;:::i;:::-;44842:41;;;;:::i;:::-;44820:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;44940:13:0;;44926:10;;44919:17;;:4;:17;:::i;:::-;44918:35;;;;:::i;:::-;44902:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;45022:13:0;;45002:16;;44995:23;;:4;:23;:::i;:::-;44994:41;;;;:::i;:::-;44972:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;44619:898:0;;-1:-1:-1;44619:898:0;;-1:-1:-1;;;;;45097:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;45147:1;45132:12;;:16;45097:51;45093:424;;;45176:33;45205:3;45176:24;45187:12;;45176:6;:10;;:24;;;;:::i;:33::-;45169:40;;45261:12;;45244:13;;45237:4;:20;;;;:::i;:::-;45236:37;;;;:::i;:::-;45216:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;45341:12:0;;45322:15;;45315:22;;:4;:22;:::i;:::-;45314:39;;;;:::i;:::-;45292:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45409:12:0;;45396:9;;45389:16;;:4;:16;:::i;:::-;45388:33;;;;:::i;:::-;45372:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;45489:12:0;;45470:15;;45463:22;;:4;:22;:::i;:::-;45462:39;;;;:::i;:::-;45440:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45093:424:0;45537:8;;45533:91;;45566:42;45582:4;45596;45603;45566:15;:42::i;:::-;45640:14;45650:4;45640:14;;:::i;:::-;;;44567:1099;45678:33;45694:4;45700:2;45704:6;45678:15;:33::i;:::-;40985:4734;;;;40872:4847;;;:::o;3601:191::-;3694:6;;;-1:-1:-1;;;;;3711:17:0;;;-1:-1:-1;;;;;;3711:17:0;;;;;;;3744:40;;3694:6;;;3711:17;3694:6;;3744:40;;3675:16;;3744:40;3664:128;3601:191;:::o;40542:188::-;-1:-1:-1;;;;;40625:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;40625:39:0;;;;;;;;;;40682:40;;40625:39;;:31;40682:40;;;40542:188;;:::o;15081:733::-;-1:-1:-1;;;;;15221:20:0;;15213:70;;;;-1:-1:-1;;;15213:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15302:23:0;;15294:71;;;;-1:-1:-1;;;15294:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15462:17:0;;15438:21;15462:17;;;;;;;;;;;15498:23;;;;15490:74;;;;-1:-1:-1;;;15490:74:0;;13810:2:1;15490:74:0;;;13792:21:1;13849:2;13829:18;;;13822:30;13888:34;13868:18;;;13861:62;-1:-1:-1;;;13939:18:1;;;13932:36;13985:19;;15490:74:0;13608:402:1;15490:74:0;-1:-1:-1;;;;;15600:17:0;;;:9;:17;;;;;;;;;;;15620:22;;;15600:42;;15664:20;;;;;;;;:30;;15636:6;;15600:9;15664:30;;15636:6;;15664:30;:::i;:::-;;;;;;;;15729:9;-1:-1:-1;;;;;15712:35:0;15721:6;-1:-1:-1;;;;;15712:35:0;;15740:6;15712:35;;;;1410:25:1;;1398:2;1383:18;;1264:177;15712:35:0;;;;;;;;15202:612;15081:733;;;:::o;46847:1882::-;46930:4;46886:23;11133:18;;;;;;;;;;;46886:50;;46947:25;47036:12;;47015:18;;46994;;46975:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;46947:101;-1:-1:-1;47059:12:0;47088:20;;;:46;;-1:-1:-1;47112:22:0;;47088:46;47084:85;;;47151:7;;;46847:1882::o;47084:85::-;47203:18;;:23;;47224:2;47203:23;:::i;:::-;47185:15;:41;47181:115;;;47261:18;;:23;;47282:2;47261:23;:::i;:::-;47243:41;;47181:115;47357:23;47444:1;47424:17;47402:18;;47384:15;:36;;;;:::i;:::-;47383:58;;;;:::i;:::-;:62;;;;:::i;:::-;47357:88;-1:-1:-1;47456:26:0;47485:36;:15;47357:88;47485:19;:36::i;:::-;47456:65;-1:-1:-1;47562:21:0;47596:36;47456:65;47596:16;:36::i;:::-;47645:18;47666:44;:21;47692:17;47666:25;:44::i;:::-;47645:65;;47717:21;47741:55;47778:17;47741:32;47756:16;;47741:10;:14;;:32;;;;:::i;:55::-;47717:79;;47807:23;47833:57;47872:17;47833:34;47848:18;;47833:10;:14;;:34;;;;:::i;:57::-;47807:83;;47901:17;47921:51;47954:17;47921:28;47936:12;;47921:10;:14;;:28;;;;:::i;:51::-;47901:71;-1:-1:-1;47985:23:0;47901:71;48040:15;48011:26;48024:13;48011:10;:26;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;48101:1;48080:18;:22;;;48107:16;:20;;;48138:18;:22;;;48171:12;:16;;;48222:9;;48214:45;;47985:82;;-1:-1:-1;;;;;;48222:9:0;;48245;;48214:45;48101:1;48214:45;48245:9;48222;48214:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48292:15:0;;48284:57;;48200:59;;-1:-1:-1;;;;;;48292:15:0;;48321;;48284:57;;;;48321:15;48292;48284:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48270:71:0;;-1:-1:-1;;48360:19:0;;;;;:42;;;48401:1;48383:15;:19;48360:42;48356:278;;;48419:46;48432:15;48449;48419:12;:46::i;:::-;48589:18;;48485:137;;;14427:25:1;;;14483:2;14468:18;;14461:34;;;14511:18;;;14504:34;;;;48485:137:0;;;;;;14415:2:1;48485:137:0;;;48356:278;48668:13;;48660:61;;-1:-1:-1;;;;;48668:13:0;;;;48695:21;;48660:61;;;;48695:21;48668:13;48660:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;46847:1882:0:o;23315:98::-;23373:7;23400:5;23404:1;23400;:5;:::i;:::-;23393:12;23315:98;-1:-1:-1;;;23315:98:0:o;23714:::-;23772:7;23799:5;23803:1;23799;:5;:::i;22958:98::-;23016:7;23043:5;23047:1;23043;:5;:::i;45727:589::-;45877:16;;;45891:1;45877:16;;;;;;;;45853:21;;45877:16;;;;;;;;;;-1:-1:-1;45877:16:0;45853:40;;45922:4;45904;45909:1;45904:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;45904:23:0;;;-1:-1:-1;;;;;45904:23:0;;;;;45948:15;-1:-1:-1;;;;;45948:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45938:4;45943:1;45938:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;45938:32:0;;;-1:-1:-1;;;;;45938:32:0;;;;;45983:62;46000:4;46015:15;46033:11;45983:8;:62::i;:::-;46084:224;;-1:-1:-1;;;46084:224:0;;-1:-1:-1;;;;;46084:15:0;:66;;;;:224;;46165:11;;46191:1;;46235:4;;46262;;46282:15;;46084:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45782:534;45727:589;:::o;46324:515::-;46472:62;46489:4;46504:15;46522:11;46472:8;:62::i;:::-;46781:9;;46577:254;;-1:-1:-1;;;46577:254:0;;46649:4;46577:254;;;16395:34:1;16445:18;;;16438:34;;;46695:1:0;16488:18:1;;;16481:34;;;16531:18;;;16524:34;-1:-1:-1;;;;;46781:9:0;;;16574:19:1;;;16567:44;46805:15:0;16627:19:1;;;16620:35;46577:15:0;:31;;;;;;46616:9;;16329:19:1;;46577:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46324:515;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1446:247::-;1505:6;1558:2;1546:9;1537:7;1533:23;1529:32;1526:52;;;1574:1;1571;1564:12;1526:52;1613:9;1600:23;1632:31;1657:5;1632:31;:::i;1933:385::-;2019:6;2027;2035;2043;2096:3;2084:9;2075:7;2071:23;2067:33;2064:53;;;2113:1;2110;2103:12;2064:53;-1:-1:-1;;2136:23:1;;;2206:2;2191:18;;2178:32;;-1:-1:-1;2257:2:1;2242:18;;2229:32;;2308:2;2293:18;2280:32;;-1:-1:-1;1933:385:1;-1:-1:-1;1933:385:1:o;2323:180::-;2382:6;2435:2;2423:9;2414:7;2410:23;2406:32;2403:52;;;2451:1;2448;2441:12;2403:52;-1:-1:-1;2474:23:1;;2323:180;-1:-1:-1;2323:180:1:o;2508:456::-;2585:6;2593;2601;2654:2;2642:9;2633:7;2629:23;2625:32;2622:52;;;2670:1;2667;2660:12;2622:52;2709:9;2696:23;2728:31;2753:5;2728:31;:::i;:::-;2778:5;-1:-1:-1;2835:2:1;2820:18;;2807:32;2848:33;2807:32;2848:33;:::i;:::-;2508:456;;2900:7;;-1:-1:-1;;;2954:2:1;2939:18;;;;2926:32;;2508:456::o;3366:160::-;3431:20;;3487:13;;3480:21;3470:32;;3460:60;;3516:1;3513;3506:12;3531:315;3596:6;3604;3657:2;3645:9;3636:7;3632:23;3628:32;3625:52;;;3673:1;3670;3663:12;3625:52;3712:9;3699:23;3731:31;3756:5;3731:31;:::i;:::-;3781:5;-1:-1:-1;3805:35:1;3836:2;3821:18;;3805:35;:::i;:::-;3795:45;;3531:315;;;;;:::o;3851:180::-;3907:6;3960:2;3948:9;3939:7;3935:23;3931:32;3928:52;;;3976:1;3973;3966:12;3928:52;3999:26;4015:9;3999:26;:::i;4036:388::-;4104:6;4112;4165:2;4153:9;4144:7;4140:23;4136:32;4133:52;;;4181:1;4178;4171:12;4133:52;4220:9;4207:23;4239:31;4264:5;4239:31;:::i;:::-;4289:5;-1:-1:-1;4346:2:1;4331:18;;4318:32;4359:33;4318:32;4359:33;:::i;:::-;4411:7;4401:17;;;4036:388;;;;;:::o;4429:380::-;4508:1;4504:12;;;;4551;;;4572:61;;4626:4;4618:6;4614:17;4604:27;;4572:61;4679:2;4671:6;4668:14;4648:18;4645:38;4642:161;;;4725:10;4720:3;4716:20;4713:1;4706:31;4760:4;4757:1;4750:15;4788:4;4785:1;4778:15;4642:161;;4429:380;;;:::o;4814:356::-;5016:2;4998:21;;;5035:18;;;5028:30;5094:34;5089:2;5074:18;;5067:62;5161:2;5146:18;;4814:356::o;5175:127::-;5236:10;5231:3;5227:20;5224:1;5217:31;5267:4;5264:1;5257:15;5291:4;5288:1;5281:15;5307:128;5347:3;5378:1;5374:6;5371:1;5368:13;5365:39;;;5384:18;;:::i;:::-;-1:-1:-1;5420:9:1;;5307:128::o;5783:168::-;5823:7;5889:1;5885;5881:6;5877:14;5874:1;5871:21;5866:1;5859:9;5852:17;5848:45;5845:71;;;5896:18;;:::i;:::-;-1:-1:-1;5936:9:1;;5783:168::o;5956:217::-;5996:1;6022;6012:132;;6066:10;6061:3;6057:20;6054:1;6047:31;6101:4;6098:1;6091:15;6129:4;6126:1;6119:15;6012:132;-1:-1:-1;6158:9:1;;5956:217::o;10642:401::-;10844:2;10826:21;;;10883:2;10863:18;;;10856:30;10922:34;10917:2;10902:18;;10895:62;-1:-1:-1;;;10988:2:1;10973:18;;10966:35;11033:3;11018:19;;10642:401::o;11048:399::-;11250:2;11232:21;;;11289:2;11269:18;;;11262:30;11328:34;11323:2;11308:18;;11301:62;-1:-1:-1;;;11394:2:1;11379:18;;11372:33;11437:3;11422:19;;11048:399::o;13478:125::-;13518:4;13546:1;13543;13540:8;13537:34;;;13551:18;;:::i;:::-;-1:-1:-1;13588:9:1;;13478:125::o;14681:127::-;14742:10;14737:3;14733:20;14730:1;14723:31;14773:4;14770:1;14763:15;14797:4;14794:1;14787:15;14813:251;14883:6;14936:2;14924:9;14915:7;14911:23;14907:32;14904:52;;;14952:1;14949;14942:12;14904:52;14984:9;14978:16;15003:31;15028:5;15003:31;:::i;15069:980::-;15331:4;15379:3;15368:9;15364:19;15410:6;15399:9;15392:25;15436:2;15474:6;15469:2;15458:9;15454:18;15447:34;15517:3;15512:2;15501:9;15497:18;15490:31;15541:6;15576;15570:13;15607:6;15599;15592:22;15645:3;15634:9;15630:19;15623:26;;15684:2;15676:6;15672:15;15658:29;;15705:1;15715:195;15729:6;15726:1;15723:13;15715:195;;;15794:13;;-1:-1:-1;;;;;15790:39:1;15778:52;;15885:15;;;;15850:12;;;;15826:1;15744:9;15715:195;;;-1:-1:-1;;;;;;;15966:32:1;;;;15961:2;15946:18;;15939:60;-1:-1:-1;;;16030:3:1;16015:19;16008:35;15927:3;15069:980;-1:-1:-1;;;15069:980:1:o;16666:306::-;16754:6;16762;16770;16823:2;16811:9;16802:7;16798:23;16794:32;16791:52;;;16839:1;16836;16829:12;16791:52;16868:9;16862:16;16852:26;;16918:2;16907:9;16903:18;16897:25;16887:35;;16962:2;16951:9;16947:18;16941:25;16931:35;;16666:306;;;;;:::o

Swarm Source

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