ETH Price: $2,989.00 (+4.46%)
Gas: 2 Gwei

Token

Marche Du Soleil (SOLEIL)
 

Overview

Max Total Supply

5,000,000,000 SOLEIL

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
48,000,000 SOLEIL

Value
$0.00
0x2c393ca590be1543f96dee74c6c2ae09b0fe9579
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:
SOLEIL

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//      Welcome to SOLEIL, a tech utopia powered by cryptocurrency. 

//      In Soleil, money is no longer a barrier to accessing the 
//      latest technologies and innovations. Thanks to the widespread 
//      adoption of cryptocurrency, the economy is thriving and 
//      everyone has the opportunity to benefit from the advancements 
//      of the Blockchain Age. The streets are clean and safe, and the 
//      citizens of Soleil enjoy access to state-of-the-art health care, 
//      education, and transportation. Gone are the days of inequality 
//      and scarcity; in Soleil, everyone has the opportunity to thrive.

//      https://www.marche-du-soleil.org/
//      https://twitter.com/SOLEIL_ETH
//      https://medium.com/@soleil-eth/marche-du-soleil-16b060951f82

//      0x352f3520e28093e280932031252054584e20e28093e28093203225204d4158

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    function WETH() external pure returns (address);

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

interface IUniswapV2Pair {
    function sync() external;
}

/**
 * @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;
    }
}

/**
 * @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);
    }
}

/**
 * @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
    );
}

/**
 * @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);
}

/**
 * @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 {}
}

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

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

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

    bool private swapping;

    address public devWallet;

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

    uint256 public percentForLPBurn = 20; // 20 = .20%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

    uint256 public  buyTotalFees;
    uint256 public  buyBurnFee = 0;
    uint256 public  buyLiquidityFee = 2;
    uint256 public  buyDevFee = 2;

    uint256 public  sellTotalFees;
    uint256 public  sellBurnFee = 0;
    uint256 public  sellLiquidityFee = 2;
    uint256 public  sellDevFee = 2;

    uint256 public tokensForBurn;
    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 devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    event AutoNukeLP();

    event ManualNukeLP();

    event BoughtEarly(address indexed sniper);

    constructor() ERC20("Marche Du Soleil", "SOLEIL") {
        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 totalSupply = 5_000_000_000 * 1e18; // 1 billion total supply

        maxTransactionAmount = 50_000_000 * 1e18; // 1% from total supply
        maxWallet = 100_000_000 * 1e18; // 1% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyTotalFees = buyBurnFee + buyLiquidityFee + buyDevFee;
        sellTotalFees = sellBurnFee + sellLiquidityFee + sellDevFee;

        devWallet = address(0x91636590e0362dCBe68546381993f255C6CE9b2a); // set as dev wallet

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

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

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

    receive() external payable {}

    // once enabled, can never be turned off
    function startTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    // 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() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

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

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

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

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

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

    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 updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        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);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForBurn += (fees * sellBurnFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForBurn += (fees * buyBurnFee) / 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
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            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).sub(tokensForBurn);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDev;
        if (tokensForBurn > 0) {
        super._transfer(address(this), address(0xdead), tokensForBurn); 
        }

        tokensForLiquidity = 0;
        tokensForBurn = 0;
        tokensForDev = 0;


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

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","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":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"sellBurnFee","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":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","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":"tokensForBurn","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":"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":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526014600b55600c8054600160ff199182168117909255610e10600d55610708600f55601180548216831762ffff001916905560138054909116909117905560006015819055600260168190556017819055601991909155601a819055601b553480156200007057600080fd5b50604080518082018252601081526f13585c98da1948111d4814dbdb195a5b60821b60208083019182528351808501909452600684526514d3d311525360d21b908401528151919291620000c791600391620006d4565b508051620000dd906004906020840190620006d4565b505050620000fa620000f46200041c60201b60201c565b62000420565b737a250d5630b4cf539739df2c5dacb4c659f2488d6200011c81600162000472565b806001600160a01b03166080816001600160a01b031660601b81525050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200017357600080fd5b505afa15801562000188573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ae91906200077a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001f757600080fd5b505afa1580156200020c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023291906200077a565b6040518363ffffffff1660e01b815260040162000251929190620007aa565b602060405180830381600087803b1580156200026c57600080fd5b505af115801562000281573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a791906200077a565b600680546001600160a01b0319166001600160a01b039283161790819055620002d39116600162000472565b600654620002ec906001600160a01b03166001620004eb565b6a295be96e640669720000006008556a52b7d2dcc80cd2e4000000600a556b1027e72f1f128130880000006127106200032782600562000880565b6200033391906200085f565b6009556017546016546015546200034b919062000844565b62000357919062000844565b601455601b54601a546019546200036f919062000844565b6200037b919062000844565b601855600780546001600160a01b0319167391636590e0362dcbe68546381993f255c6ce9b2a179055620003ba620003b26200053f565b60016200054e565b620003c73060016200054e565b620003d661dead60016200054e565b620003ec620003e46200053f565b600162000472565b620003f930600162000472565b6200040861dead600162000472565b620004143382620005f6565b5050620008f5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200047c6200041c565b6001600160a01b03166200048f6200053f565b6001600160a01b031614620004c15760405162461bcd60e51b8152600401620004b890620007cf565b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031690565b620005586200041c565b6001600160a01b03166200056b6200053f565b6001600160a01b031614620005945760405162461bcd60e51b8152600401620004b890620007cf565b6001600160a01b0382166000818152601f602052604090819020805460ff1916841515179055517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df790620005ea908490620007c4565b60405180910390a25050565b6001600160a01b0382166200061f5760405162461bcd60e51b8152600401620004b89062000804565b6200062d60008383620006cf565b806002600082825462000641919062000844565b90915550506001600160a01b038216600090815260208190526040812080548392906200067090849062000844565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620006b59085906200083b565b60405180910390a3620006cb60008383620006cf565b5050565b505050565b828054620006e290620008a2565b90600052602060002090601f01602090048101928262000706576000855562000751565b82601f106200072157805160ff191683800117855562000751565b8280016001018555821562000751579182015b828111156200075157825182559160200191906001019062000734565b506200075f92915062000763565b5090565b5b808211156200075f576000815560010162000764565b6000602082840312156200078c578081fd5b81516001600160a01b0381168114620007a3578182fd5b9392505050565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200085a576200085a620008df565b500190565b6000826200087b57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156200089d576200089d620008df565b500290565b600281046001821680620008b757607f821691505b60208210811415620008d957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60805160601c6132ea6200093e60003960008181610aa1015281816119f40152818161253d015281816126130152818161264f015281816126c9015261270501526132ea6000f3fe60806040526004361061039b5760003560e01c80638ea5220f116101dc578063c17b5b8c11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610972578063f637434214610992578063f8b45b05146109a7578063fe72b27a146109bc576103a2565b8063e2f456051461091e578063e71dc3f514610933578063e884f26014610948578063f11a24d31461095d576103a2565b8063c8c8ebe4116100dc578063c8c8ebe4146108b4578063d257b34f146108c9578063d85ba063146108e9578063dd62ed3e146108fe576103a2565b8063c17b5b8c1461085f578063c18bc1951461087f578063c876d0b91461089f576103a2565b8063a0d82dc51161017a578063adb873bd11610149578063adb873bd146107f5578063b62496f51461080a578063bbc0c7421461082a578063c02466681461083f576103a2565b8063a0d82dc51461078b578063a457c2d7146107a0578063a4c82a00146107c0578063a9059cbb146107d5576103a2565b80639a7a23d6116101b65780639a7a23d61461072c5780639c3b4fdc1461074c5780639ec22c0e146107615780639fccce3214610776576103a2565b80638ea5220f146106e2578063924de9b7146106f757806395d89b4114610717576103a2565b80632e82f1a0116102c15780636ddd17131161025f578063751039fc1161022e578063751039fc146106785780637571336a1461068d5780638095d564146106ad5780638da5cb5b146106cd576103a2565b80636ddd17131461060e57806370a0823114610623578063715018a614610643578063730c188814610658576103a2565b806349bd5a5e1161029b57806349bd5a5e146105af5780634a62bb65146105c45780634fbee193146105d95780636a486a8e146105f9576103a2565b80632e82f1a014610558578063313ce5671461056d578063395093511461058f576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146104f957806327c8f83514610519578063293230b81461052e5780632c3e486c14610543576103a2565b8063199ffc721461049a5780631a8145bb146104af5780631d777856146104c4578063203e727e146104d9576103a2565b80631694505e116103755780631694505e1461041f57806318160ddd146104415780631816467f14610463578063184c16c514610485576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de53146103ff576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc6109dc565b6040516103c991906129f4565b60405180910390f35b3480156103de57600080fd5b506103f26103ed366004612896565b610a6e565b6040516103c991906129e9565b34801561040b57600080fd5b506103f261041a3660046127b2565b610a8b565b34801561042b57600080fd5b50610434610a9f565b6040516103c9919061299a565b34801561044d57600080fd5b50610456610ac3565b6040516103c99190613143565b34801561046f57600080fd5b5061048361047e3660046127b2565b610ac9565b005b34801561049157600080fd5b50610456610b6e565b3480156104a657600080fd5b50610456610b74565b3480156104bb57600080fd5b50610456610b7a565b3480156104d057600080fd5b50610456610b80565b3480156104e557600080fd5b506104836104f43660046128db565b610b86565b34801561050557600080fd5b506103f2610514366004612822565b610c2f565b34801561052557600080fd5b50610434610cbf565b34801561053a57600080fd5b50610483610cc5565b34801561054f57600080fd5b50610456610d26565b34801561056457600080fd5b506103f2610d2c565b34801561057957600080fd5b50610582610d35565b6040516103c991906131d2565b34801561059b57600080fd5b506103f26105aa366004612896565b610d3a565b3480156105bb57600080fd5b50610434610d8e565b3480156105d057600080fd5b506103f2610d9d565b3480156105e557600080fd5b506103f26105f43660046127b2565b610da6565b34801561060557600080fd5b50610456610dc8565b34801561061a57600080fd5b506103f2610dce565b34801561062f57600080fd5b5061045661063e3660046127b2565b610ddd565b34801561064f57600080fd5b50610483610df8565b34801561066457600080fd5b5061048361067336600461290b565b610e43565b34801561068457600080fd5b506103f2610eec565b34801561069957600080fd5b506104836106a8366004612862565b610f3d565b3480156106b957600080fd5b506104836106c836600461293f565b610fa6565b3480156106d957600080fd5b50610434611033565b3480156106ee57600080fd5b50610434611042565b34801561070357600080fd5b506104836107123660046128c1565b611051565b34801561072357600080fd5b506103bc6110ac565b34801561073857600080fd5b50610483610747366004612862565b6110bb565b34801561075857600080fd5b50610456611136565b34801561076d57600080fd5b5061045661113c565b34801561078257600080fd5b50610456611142565b34801561079757600080fd5b50610456611148565b3480156107ac57600080fd5b506103f26107bb366004612896565b61114e565b3480156107cc57600080fd5b506104566111c7565b3480156107e157600080fd5b506103f26107f0366004612896565b6111cd565b34801561080157600080fd5b506104566111e1565b34801561081657600080fd5b506103f26108253660046127b2565b6111e7565b34801561083657600080fd5b506103f26111fc565b34801561084b57600080fd5b5061048361085a366004612862565b61120a565b34801561086b57600080fd5b5061048361087a36600461293f565b6112a9565b34801561088b57600080fd5b5061048361089a3660046128db565b611331565b3480156108ab57600080fd5b506103f26113da565b3480156108c057600080fd5b506104566113e3565b3480156108d557600080fd5b506103f26108e43660046128db565b6113e9565b3480156108f557600080fd5b506104566114b2565b34801561090a57600080fd5b506104566109193660046127ea565b6114b8565b34801561092a57600080fd5b506104566114e3565b34801561093f57600080fd5b506104566114e9565b34801561095457600080fd5b506103f26114ef565b34801561096957600080fd5b50610456611540565b34801561097e57600080fd5b5061048361098d3660046127b2565b611546565b34801561099e57600080fd5b506104566115b7565b3480156109b357600080fd5b506104566115bd565b3480156109c857600080fd5b506103f26109d73660046128db565b6115c3565b6060600380546109eb9061324e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a179061324e565b8015610a645780601f10610a3957610100808354040283529160200191610a64565b820191906000526020600020905b815481529060010190602001808311610a4757829003601f168201915b5050505050905090565b6000610a82610a7b6117ac565b84846117b0565b50600192915050565b602080526000908152604090205460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60025490565b610ad16117ac565b6001600160a01b0316610ae2611033565b6001600160a01b031614610b115760405162461bcd60e51b8152600401610b0890612ed7565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600f5481565b600b5481565b601d5481565b601c5481565b610b8e6117ac565b6001600160a01b0316610b9f611033565b6001600160a01b031614610bc55760405162461bcd60e51b8152600401610b0890612ed7565b670de0b6b3a76400006103e8610bd9610ac3565b610be4906001613218565b610bee91906131f8565b610bf891906131f8565b811015610c175760405162461bcd60e51b8152600401610b08906130f4565b610c2981670de0b6b3a7640000613218565b60085550565b6000610c3c848484611864565b6001600160a01b038416600090815260016020526040812081610c5d6117ac565b6001600160a01b03166001600160a01b0316815260200190815260200160002054905082811015610ca05760405162461bcd60e51b8152600401610b0890612e8f565b610cb485610cac6117ac565b8584036117b0565b506001949350505050565b61dead81565b610ccd6117ac565b6001600160a01b0316610cde611033565b6001600160a01b031614610d045760405162461bcd60e51b8152600401610b0890612ed7565b6011805462ff00001961ff001990911661010017166201000017905542600e55565b600d5481565b600c5460ff1681565b601290565b6000610a82610d476117ac565b848460016000610d556117ac565b6001600160a01b03908116825260208083019390935260409182016000908120918b1681529252902054610d8991906131e0565b6117b0565b6006546001600160a01b031681565b60115460ff1681565b6001600160a01b0381166000908152601f602052604090205460ff165b919050565b60185481565b60115462010000900460ff1681565b6001600160a01b031660009081526020819052604090205490565b610e006117ac565b6001600160a01b0316610e11611033565b6001600160a01b031614610e375760405162461bcd60e51b8152600401610b0890612ed7565b610e416000611f9f565b565b610e4b6117ac565b6001600160a01b0316610e5c611033565b6001600160a01b031614610e825760405162461bcd60e51b8152600401610b0890612ed7565b610258831015610ea45760405162461bcd60e51b8152600401610b0890612b42565b6103e88211158015610eb4575060015b610ed05760405162461bcd60e51b8152600401610b0890612cd2565b600d92909255600b55600c805460ff1916911515919091179055565b6000610ef66117ac565b6001600160a01b0316610f07611033565b6001600160a01b031614610f2d5760405162461bcd60e51b8152600401610b0890612ed7565b506011805460ff19169055600190565b610f456117ac565b6001600160a01b0316610f56611033565b6001600160a01b031614610f7c5760405162461bcd60e51b8152600401610b0890612ed7565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b610fae6117ac565b6001600160a01b0316610fbf611033565b6001600160a01b031614610fe55760405162461bcd60e51b8152600401610b0890612ed7565b60158390556016829055601781905580610fff83856131e0565b61100991906131e0565b60148190556007101561102e5760405162461bcd60e51b8152600401610b0890612f0c565b505050565b6005546001600160a01b031690565b6007546001600160a01b031681565b6110596117ac565b6001600160a01b031661106a611033565b6001600160a01b0316146110905760405162461bcd60e51b8152600401610b0890612ed7565b60118054911515620100000262ff000019909216919091179055565b6060600480546109eb9061324e565b6110c36117ac565b6001600160a01b03166110d4611033565b6001600160a01b0316146110fa5760405162461bcd60e51b8152600401610b0890612ed7565b6006546001600160a01b03838116911614156111285760405162461bcd60e51b8152600401610b0890612bd9565b6111328282611ff1565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806001600061115d6117ac565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156111a95760405162461bcd60e51b8152600401610b08906130af565b6111bd6111b46117ac565b858584036117b0565b5060019392505050565b600e5481565b6000610a826111da6117ac565b8484611864565b60195481565b60216020526000908152604090205460ff1681565b601154610100900460ff1681565b6112126117ac565b6001600160a01b0316611223611033565b6001600160a01b0316146112495760405162461bcd60e51b8152600401610b0890612ed7565b6001600160a01b0382166000818152601f602052604090819020805460ff1916841515179055517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79061129d9084906129e9565b60405180910390a25050565b6112b16117ac565b6001600160a01b03166112c2611033565b6001600160a01b0316146112e85760405162461bcd60e51b8152600401610b0890612ed7565b6019839055601a829055601b8190558061130283856131e0565b61130c91906131e0565b60188190556007101561102e5760405162461bcd60e51b8152600401610b0890612f43565b6113396117ac565b6001600160a01b031661134a611033565b6001600160a01b0316146113705760405162461bcd60e51b8152600401610b0890612ed7565b670de0b6b3a76400006103e8611384610ac3565b61138f906005613218565b61139991906131f8565b6113a391906131f8565b8110156113c25760405162461bcd60e51b8152600401610b0890612b95565b6113d481670de0b6b3a7640000613218565b600a5550565b60135460ff1681565b60085481565b60006113f36117ac565b6001600160a01b0316611404611033565b6001600160a01b03161461142a5760405162461bcd60e51b8152600401610b0890612ed7565b620186a0611436610ac3565b611441906001613218565b61144b91906131f8565b82101561146a5760405162461bcd60e51b8152600401610b0890612d22565b6103e8611475610ac3565b611480906005613218565b61148a91906131f8565b8211156114a95760405162461bcd60e51b8152600401610b0890612d77565b50600955600190565b60145481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60095481565b60155481565b60006114f96117ac565b6001600160a01b031661150a611033565b6001600160a01b0316146115305760405162461bcd60e51b8152600401610b0890612ed7565b506013805460ff19169055600190565b60165481565b61154e6117ac565b6001600160a01b031661155f611033565b6001600160a01b0316146115855760405162461bcd60e51b8152600401610b0890612ed7565b6001600160a01b0381166115ab5760405162461bcd60e51b8152600401610b0890612aba565b6115b481611f9f565b50565b601a5481565b600a5481565b60006115cd6117ac565b6001600160a01b03166115de611033565b6001600160a01b0316146116045760405162461bcd60e51b8152600401610b0890612ed7565b600f5460105461161491906131e0565b42116116325760405162461bcd60e51b8152600401610b0890613009565b6103e88211156116545760405162461bcd60e51b8152600401610b0890612f7a565b426010556006546040516370a0823160e01b815260009130916370a082319161168b916001600160a01b039091169060040161299a565b60206040518083038186803b1580156116a357600080fd5b505afa1580156116b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116db91906128f3565b905060006116f56127106116ef8487612045565b90612058565b9050801561171657600654611716906001600160a01b031661dead83612064565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561176057600080fd5b505af1158015611774573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b3390565b6001600160a01b0383166117d65760405162461bcd60e51b8152600401610b089061303e565b6001600160a01b0382166117fc5760405162461bcd60e51b8152600401610b0890612b00565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611857908590613143565b60405180910390a3505050565b6001600160a01b03831661188a5760405162461bcd60e51b8152600401610b0890612fc4565b6001600160a01b0382166118b05760405162461bcd60e51b8152600401610b0890612a47565b806118c6576118c183836000612064565b61102e565b60115460ff1615611be3576118d9611033565b6001600160a01b0316836001600160a01b03161415801561191357506118fd611033565b6001600160a01b0316826001600160a01b031614155b801561192757506001600160a01b03821615155b801561193e57506001600160a01b03821661dead14155b80156119545750600654600160a01b900460ff16155b15611be357601154610100900460ff166119c3576001600160a01b0383166000908152601f602052604090205460ff16806119a757506001600160a01b0382166000908152601f602052604090205460ff165b6119c35760405162461bcd60e51b8152600401610b0890612a8a565b60135460ff1615611a89576119d6611033565b6001600160a01b0316826001600160a01b031614158015611a2957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611a4357506006546001600160a01b03838116911614155b15611a8957326000908152601260205260409020544311611a765760405162461bcd60e51b8152600401610b0890612e20565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611ac957506001600160a01b038216600090815260208052604090205460ff16155b15611b2957600854811115611af05760405162461bcd60e51b8152600401610b0890612dcb565b600a54611afc83610ddd565b611b0690836131e0565b1115611b245760405162461bcd60e51b8152600401610b0890613082565b611be3565b6001600160a01b03821660009081526021602052604090205460ff168015611b6957506001600160a01b038316600090815260208052604090205460ff16155b15611b9057600854811115611b245760405162461bcd60e51b8152600401610b0890612c7c565b6001600160a01b038216600090815260208052604090205460ff16611be357600a54611bbb83610ddd565b611bc590836131e0565b1115611be35760405162461bcd60e51b8152600401610b0890613082565b6000611bee30610ddd565b60095490915081108015908190611c0d575060115462010000900460ff165b8015611c235750600654600160a01b900460ff16155b8015611c4857506001600160a01b03851660009081526021602052604090205460ff16155b8015611c6d57506001600160a01b0385166000908152601f602052604090205460ff16155b8015611c9257506001600160a01b0384166000908152601f602052604090205460ff16155b15611cc0576006805460ff60a01b1916600160a01b179055611cb261218e565b6006805460ff60a01b191690555b600654600160a01b900460ff16158015611cf257506001600160a01b03841660009081526021602052604090205460ff165b8015611d005750600c5460ff165b8015611d1b5750600d54600e54611d1791906131e0565b4210155b8015611d4057506001600160a01b0385166000908152601f602052604090205460ff16155b15611d4f57611d4d612370565b505b6006546001600160a01b0386166000908152601f602052604090205460ff600160a01b909204821615911680611d9d57506001600160a01b0385166000908152601f602052604090205460ff165b15611da6575060005b60008115611f8b576001600160a01b03861660009081526021602052604090205460ff168015611dd857506000601854115b15611e9057611df760646116ef6018548861204590919063ffffffff16565b9050601854601a5482611e0a9190613218565b611e1491906131f8565b601d6000828254611e2591906131e0565b9091555050601854601b54611e3a9083613218565b611e4491906131f8565b601e6000828254611e5591906131e0565b9091555050601854601954611e6a9083613218565b611e7491906131f8565b601c6000828254611e8591906131e0565b90915550611f6d9050565b6001600160a01b03871660009081526021602052604090205460ff168015611eba57506000601454115b15611f6d57611ed960646116ef6014548861204590919063ffffffff16565b905060145460165482611eec9190613218565b611ef691906131f8565b601d6000828254611f0791906131e0565b9091555050601454601754611f1c9083613218565b611f2691906131f8565b601e6000828254611f3791906131e0565b9091555050601454601554611f4c9083613218565b611f5691906131f8565b601c6000828254611f6791906131e0565b90915550505b8015611f7e57611f7e873083612064565b611f888186613237565b94505b611f96878787612064565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006120518284613218565b9392505050565b600061205182846131f8565b6001600160a01b03831661208a5760405162461bcd60e51b8152600401610b0890612fc4565b6001600160a01b0382166120b05760405162461bcd60e51b8152600401610b0890612a47565b6120bb83838361102e565b6001600160a01b038316600090815260208190526040902054818110156120f45760405162461bcd60e51b8152600401610b0890612c36565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061212b9084906131e0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121759190613143565b60405180910390a361218884848461102e565b50505050565b600061219930610ddd565b90506000601e54601d546121ad91906131e0565b905060008215806121bc575081155b156121c957505050610e41565b6009546121d7906014613218565b8311156121ef576009546121ec906014613218565b92505b6000600283601d54866122029190613218565b61220c91906131f8565b61221691906131f8565b90506000612239601c5461223384886124cc90919063ffffffff16565b906124cc565b905047612245826124d8565b600061225147836124cc565b9050600061226e876116ef601e548561204590919063ffffffff16565b9050600061227c8284613237565b601c5490915015612296576122963061dead601c54612064565b6000601d819055601c819055601e556007546040516001600160a01b039091169083906122c290612997565b60006040518083038185875af1925050503d80600081146122ff576040519150601f19603f3d011682016040523d82523d6000602084013e612304565b606091505b509097505085158015906123185750600081115b156123655761232786826126c3565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601d5460405161235c939291906131bc565b60405180910390a15b505050505050505050565b42600e556006546040516370a0823160e01b8152600091829130916370a08231916123a7916001600160a01b03169060040161299a565b60206040518083038186803b1580156123bf57600080fd5b505afa1580156123d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123f791906128f3565b905060006124166127106116ef600b548561204590919063ffffffff16565b9050801561243757600654612437906001600160a01b031661dead83612064565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561248157600080fd5b505af1158015612495573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006120518284613237565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061251b57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561259457600080fd5b505afa1580156125a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cc91906127ce565b816001815181106125ed57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b031681525050612638307f0000000000000000000000000000000000000000000000000000000000000000846117b0565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061268d90859060009086903090429060040161314c565b600060405180830381600087803b1580156126a757600080fd5b505af11580156126bb573d6000803e3d6000fd5b505050505050565b6126ee307f0000000000000000000000000000000000000000000000000000000000000000846117b0565b60405163f305d71960e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063f305d7199083906127499030908790600090819061dead9042906004016129ae565b6060604051808303818588803b15801561276257600080fd5b505af1158015612776573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061279b919061296a565b5050505050565b80358015158114610dc357600080fd5b6000602082840312156127c3578081fd5b81356120518161329f565b6000602082840312156127df578081fd5b81516120518161329f565b600080604083850312156127fc578081fd5b82356128078161329f565b915060208301356128178161329f565b809150509250929050565b600080600060608486031215612836578081fd5b83356128418161329f565b925060208401356128518161329f565b929592945050506040919091013590565b60008060408385031215612874578182fd5b823561287f8161329f565b915061288d602084016127a2565b90509250929050565b600080604083850312156128a8578182fd5b82356128b38161329f565b946020939093013593505050565b6000602082840312156128d2578081fd5b612051826127a2565b6000602082840312156128ec578081fd5b5035919050565b600060208284031215612904578081fd5b5051919050565b60008060006060848603121561291f578283fd5b8335925060208401359150612936604085016127a2565b90509250925092565b600080600060608486031215612953578283fd5b505081359360208301359350604090920135919050565b60008060006060848603121561297e578283fd5b8351925060208401519150604084015190509250925092565b90565b6001600160a01b0391909116815260200190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b901515815260200190565b6000602080835283518082850152825b81811015612a2057858101830151858201604001528201612a04565b81811115612a315783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601690820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526033908201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604082015272616e206576657279203130206d696e7574657360681b606082015260800190565b60208082526024908201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604082015263302e352560e01b606082015260800190565b60208082526039908201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060408201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526036908201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656040820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606082015260800190565b60208082526030908201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560408201526f747765656e20302520616e642031302560801b606082015260800190565b60208082526035908201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60408201527410181718181892903a37ba30b61039bab838363c9760591b606082015260800190565b60208082526034908201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604082015273371018171a92903a37ba30b61039bab838363c9760611b606082015260800190565b60208082526035908201527f427579207472616e7366657220616d6f756e742065786365656473207468652060408201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606082015260800190565b60208082526049908201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60408201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6060820152681030b63637bbb2b21760b91b608082015260a00190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601c908201527f4d757374206b6565702066656573206174203525206f72206c65737300000000604082015260600190565b6020808252601d908201527f4d757374206b656570206665657320617420203525206f72206c657373000000604082015260600190565b6020808252602a908201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60408201526906b656e7320696e204c560b41b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252818101527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526013908201527213585e081dd85b1b195d08195e18d959591959606a1b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602f908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060408201526e6c6f776572207468616e20302e312560881b606082015260800190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561319b5784516001600160a01b031683529383019391830191600101613176565b50506001600160a01b03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b600082198211156131f3576131f3613289565b500190565b60008261321357634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561323257613232613289565b500290565b60008282101561324957613249613289565b500390565b60028104600182168061326257607f821691505b6020821081141561328357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146115b457600080fdfea2646970667358221220e3cd1053646cfd0170db9ed543d0efc930b435a1f41e2b0ccaabd228a2c35c9564736f6c63430008000033

Deployed Bytecode

0x60806040526004361061039b5760003560e01c80638ea5220f116101dc578063c17b5b8c11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610972578063f637434214610992578063f8b45b05146109a7578063fe72b27a146109bc576103a2565b8063e2f456051461091e578063e71dc3f514610933578063e884f26014610948578063f11a24d31461095d576103a2565b8063c8c8ebe4116100dc578063c8c8ebe4146108b4578063d257b34f146108c9578063d85ba063146108e9578063dd62ed3e146108fe576103a2565b8063c17b5b8c1461085f578063c18bc1951461087f578063c876d0b91461089f576103a2565b8063a0d82dc51161017a578063adb873bd11610149578063adb873bd146107f5578063b62496f51461080a578063bbc0c7421461082a578063c02466681461083f576103a2565b8063a0d82dc51461078b578063a457c2d7146107a0578063a4c82a00146107c0578063a9059cbb146107d5576103a2565b80639a7a23d6116101b65780639a7a23d61461072c5780639c3b4fdc1461074c5780639ec22c0e146107615780639fccce3214610776576103a2565b80638ea5220f146106e2578063924de9b7146106f757806395d89b4114610717576103a2565b80632e82f1a0116102c15780636ddd17131161025f578063751039fc1161022e578063751039fc146106785780637571336a1461068d5780638095d564146106ad5780638da5cb5b146106cd576103a2565b80636ddd17131461060e57806370a0823114610623578063715018a614610643578063730c188814610658576103a2565b806349bd5a5e1161029b57806349bd5a5e146105af5780634a62bb65146105c45780634fbee193146105d95780636a486a8e146105f9576103a2565b80632e82f1a014610558578063313ce5671461056d578063395093511461058f576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146104f957806327c8f83514610519578063293230b81461052e5780632c3e486c14610543576103a2565b8063199ffc721461049a5780631a8145bb146104af5780631d777856146104c4578063203e727e146104d9576103a2565b80631694505e116103755780631694505e1461041f57806318160ddd146104415780631816467f14610463578063184c16c514610485576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de53146103ff576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc6109dc565b6040516103c991906129f4565b60405180910390f35b3480156103de57600080fd5b506103f26103ed366004612896565b610a6e565b6040516103c991906129e9565b34801561040b57600080fd5b506103f261041a3660046127b2565b610a8b565b34801561042b57600080fd5b50610434610a9f565b6040516103c9919061299a565b34801561044d57600080fd5b50610456610ac3565b6040516103c99190613143565b34801561046f57600080fd5b5061048361047e3660046127b2565b610ac9565b005b34801561049157600080fd5b50610456610b6e565b3480156104a657600080fd5b50610456610b74565b3480156104bb57600080fd5b50610456610b7a565b3480156104d057600080fd5b50610456610b80565b3480156104e557600080fd5b506104836104f43660046128db565b610b86565b34801561050557600080fd5b506103f2610514366004612822565b610c2f565b34801561052557600080fd5b50610434610cbf565b34801561053a57600080fd5b50610483610cc5565b34801561054f57600080fd5b50610456610d26565b34801561056457600080fd5b506103f2610d2c565b34801561057957600080fd5b50610582610d35565b6040516103c991906131d2565b34801561059b57600080fd5b506103f26105aa366004612896565b610d3a565b3480156105bb57600080fd5b50610434610d8e565b3480156105d057600080fd5b506103f2610d9d565b3480156105e557600080fd5b506103f26105f43660046127b2565b610da6565b34801561060557600080fd5b50610456610dc8565b34801561061a57600080fd5b506103f2610dce565b34801561062f57600080fd5b5061045661063e3660046127b2565b610ddd565b34801561064f57600080fd5b50610483610df8565b34801561066457600080fd5b5061048361067336600461290b565b610e43565b34801561068457600080fd5b506103f2610eec565b34801561069957600080fd5b506104836106a8366004612862565b610f3d565b3480156106b957600080fd5b506104836106c836600461293f565b610fa6565b3480156106d957600080fd5b50610434611033565b3480156106ee57600080fd5b50610434611042565b34801561070357600080fd5b506104836107123660046128c1565b611051565b34801561072357600080fd5b506103bc6110ac565b34801561073857600080fd5b50610483610747366004612862565b6110bb565b34801561075857600080fd5b50610456611136565b34801561076d57600080fd5b5061045661113c565b34801561078257600080fd5b50610456611142565b34801561079757600080fd5b50610456611148565b3480156107ac57600080fd5b506103f26107bb366004612896565b61114e565b3480156107cc57600080fd5b506104566111c7565b3480156107e157600080fd5b506103f26107f0366004612896565b6111cd565b34801561080157600080fd5b506104566111e1565b34801561081657600080fd5b506103f26108253660046127b2565b6111e7565b34801561083657600080fd5b506103f26111fc565b34801561084b57600080fd5b5061048361085a366004612862565b61120a565b34801561086b57600080fd5b5061048361087a36600461293f565b6112a9565b34801561088b57600080fd5b5061048361089a3660046128db565b611331565b3480156108ab57600080fd5b506103f26113da565b3480156108c057600080fd5b506104566113e3565b3480156108d557600080fd5b506103f26108e43660046128db565b6113e9565b3480156108f557600080fd5b506104566114b2565b34801561090a57600080fd5b506104566109193660046127ea565b6114b8565b34801561092a57600080fd5b506104566114e3565b34801561093f57600080fd5b506104566114e9565b34801561095457600080fd5b506103f26114ef565b34801561096957600080fd5b50610456611540565b34801561097e57600080fd5b5061048361098d3660046127b2565b611546565b34801561099e57600080fd5b506104566115b7565b3480156109b357600080fd5b506104566115bd565b3480156109c857600080fd5b506103f26109d73660046128db565b6115c3565b6060600380546109eb9061324e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a179061324e565b8015610a645780601f10610a3957610100808354040283529160200191610a64565b820191906000526020600020905b815481529060010190602001808311610a4757829003601f168201915b5050505050905090565b6000610a82610a7b6117ac565b84846117b0565b50600192915050565b602080526000908152604090205460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60025490565b610ad16117ac565b6001600160a01b0316610ae2611033565b6001600160a01b031614610b115760405162461bcd60e51b8152600401610b0890612ed7565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600f5481565b600b5481565b601d5481565b601c5481565b610b8e6117ac565b6001600160a01b0316610b9f611033565b6001600160a01b031614610bc55760405162461bcd60e51b8152600401610b0890612ed7565b670de0b6b3a76400006103e8610bd9610ac3565b610be4906001613218565b610bee91906131f8565b610bf891906131f8565b811015610c175760405162461bcd60e51b8152600401610b08906130f4565b610c2981670de0b6b3a7640000613218565b60085550565b6000610c3c848484611864565b6001600160a01b038416600090815260016020526040812081610c5d6117ac565b6001600160a01b03166001600160a01b0316815260200190815260200160002054905082811015610ca05760405162461bcd60e51b8152600401610b0890612e8f565b610cb485610cac6117ac565b8584036117b0565b506001949350505050565b61dead81565b610ccd6117ac565b6001600160a01b0316610cde611033565b6001600160a01b031614610d045760405162461bcd60e51b8152600401610b0890612ed7565b6011805462ff00001961ff001990911661010017166201000017905542600e55565b600d5481565b600c5460ff1681565b601290565b6000610a82610d476117ac565b848460016000610d556117ac565b6001600160a01b03908116825260208083019390935260409182016000908120918b1681529252902054610d8991906131e0565b6117b0565b6006546001600160a01b031681565b60115460ff1681565b6001600160a01b0381166000908152601f602052604090205460ff165b919050565b60185481565b60115462010000900460ff1681565b6001600160a01b031660009081526020819052604090205490565b610e006117ac565b6001600160a01b0316610e11611033565b6001600160a01b031614610e375760405162461bcd60e51b8152600401610b0890612ed7565b610e416000611f9f565b565b610e4b6117ac565b6001600160a01b0316610e5c611033565b6001600160a01b031614610e825760405162461bcd60e51b8152600401610b0890612ed7565b610258831015610ea45760405162461bcd60e51b8152600401610b0890612b42565b6103e88211158015610eb4575060015b610ed05760405162461bcd60e51b8152600401610b0890612cd2565b600d92909255600b55600c805460ff1916911515919091179055565b6000610ef66117ac565b6001600160a01b0316610f07611033565b6001600160a01b031614610f2d5760405162461bcd60e51b8152600401610b0890612ed7565b506011805460ff19169055600190565b610f456117ac565b6001600160a01b0316610f56611033565b6001600160a01b031614610f7c5760405162461bcd60e51b8152600401610b0890612ed7565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b610fae6117ac565b6001600160a01b0316610fbf611033565b6001600160a01b031614610fe55760405162461bcd60e51b8152600401610b0890612ed7565b60158390556016829055601781905580610fff83856131e0565b61100991906131e0565b60148190556007101561102e5760405162461bcd60e51b8152600401610b0890612f0c565b505050565b6005546001600160a01b031690565b6007546001600160a01b031681565b6110596117ac565b6001600160a01b031661106a611033565b6001600160a01b0316146110905760405162461bcd60e51b8152600401610b0890612ed7565b60118054911515620100000262ff000019909216919091179055565b6060600480546109eb9061324e565b6110c36117ac565b6001600160a01b03166110d4611033565b6001600160a01b0316146110fa5760405162461bcd60e51b8152600401610b0890612ed7565b6006546001600160a01b03838116911614156111285760405162461bcd60e51b8152600401610b0890612bd9565b6111328282611ff1565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806001600061115d6117ac565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156111a95760405162461bcd60e51b8152600401610b08906130af565b6111bd6111b46117ac565b858584036117b0565b5060019392505050565b600e5481565b6000610a826111da6117ac565b8484611864565b60195481565b60216020526000908152604090205460ff1681565b601154610100900460ff1681565b6112126117ac565b6001600160a01b0316611223611033565b6001600160a01b0316146112495760405162461bcd60e51b8152600401610b0890612ed7565b6001600160a01b0382166000818152601f602052604090819020805460ff1916841515179055517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79061129d9084906129e9565b60405180910390a25050565b6112b16117ac565b6001600160a01b03166112c2611033565b6001600160a01b0316146112e85760405162461bcd60e51b8152600401610b0890612ed7565b6019839055601a829055601b8190558061130283856131e0565b61130c91906131e0565b60188190556007101561102e5760405162461bcd60e51b8152600401610b0890612f43565b6113396117ac565b6001600160a01b031661134a611033565b6001600160a01b0316146113705760405162461bcd60e51b8152600401610b0890612ed7565b670de0b6b3a76400006103e8611384610ac3565b61138f906005613218565b61139991906131f8565b6113a391906131f8565b8110156113c25760405162461bcd60e51b8152600401610b0890612b95565b6113d481670de0b6b3a7640000613218565b600a5550565b60135460ff1681565b60085481565b60006113f36117ac565b6001600160a01b0316611404611033565b6001600160a01b03161461142a5760405162461bcd60e51b8152600401610b0890612ed7565b620186a0611436610ac3565b611441906001613218565b61144b91906131f8565b82101561146a5760405162461bcd60e51b8152600401610b0890612d22565b6103e8611475610ac3565b611480906005613218565b61148a91906131f8565b8211156114a95760405162461bcd60e51b8152600401610b0890612d77565b50600955600190565b60145481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60095481565b60155481565b60006114f96117ac565b6001600160a01b031661150a611033565b6001600160a01b0316146115305760405162461bcd60e51b8152600401610b0890612ed7565b506013805460ff19169055600190565b60165481565b61154e6117ac565b6001600160a01b031661155f611033565b6001600160a01b0316146115855760405162461bcd60e51b8152600401610b0890612ed7565b6001600160a01b0381166115ab5760405162461bcd60e51b8152600401610b0890612aba565b6115b481611f9f565b50565b601a5481565b600a5481565b60006115cd6117ac565b6001600160a01b03166115de611033565b6001600160a01b0316146116045760405162461bcd60e51b8152600401610b0890612ed7565b600f5460105461161491906131e0565b42116116325760405162461bcd60e51b8152600401610b0890613009565b6103e88211156116545760405162461bcd60e51b8152600401610b0890612f7a565b426010556006546040516370a0823160e01b815260009130916370a082319161168b916001600160a01b039091169060040161299a565b60206040518083038186803b1580156116a357600080fd5b505afa1580156116b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116db91906128f3565b905060006116f56127106116ef8487612045565b90612058565b9050801561171657600654611716906001600160a01b031661dead83612064565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561176057600080fd5b505af1158015611774573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b3390565b6001600160a01b0383166117d65760405162461bcd60e51b8152600401610b089061303e565b6001600160a01b0382166117fc5760405162461bcd60e51b8152600401610b0890612b00565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611857908590613143565b60405180910390a3505050565b6001600160a01b03831661188a5760405162461bcd60e51b8152600401610b0890612fc4565b6001600160a01b0382166118b05760405162461bcd60e51b8152600401610b0890612a47565b806118c6576118c183836000612064565b61102e565b60115460ff1615611be3576118d9611033565b6001600160a01b0316836001600160a01b03161415801561191357506118fd611033565b6001600160a01b0316826001600160a01b031614155b801561192757506001600160a01b03821615155b801561193e57506001600160a01b03821661dead14155b80156119545750600654600160a01b900460ff16155b15611be357601154610100900460ff166119c3576001600160a01b0383166000908152601f602052604090205460ff16806119a757506001600160a01b0382166000908152601f602052604090205460ff165b6119c35760405162461bcd60e51b8152600401610b0890612a8a565b60135460ff1615611a89576119d6611033565b6001600160a01b0316826001600160a01b031614158015611a2957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611a4357506006546001600160a01b03838116911614155b15611a8957326000908152601260205260409020544311611a765760405162461bcd60e51b8152600401610b0890612e20565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611ac957506001600160a01b038216600090815260208052604090205460ff16155b15611b2957600854811115611af05760405162461bcd60e51b8152600401610b0890612dcb565b600a54611afc83610ddd565b611b0690836131e0565b1115611b245760405162461bcd60e51b8152600401610b0890613082565b611be3565b6001600160a01b03821660009081526021602052604090205460ff168015611b6957506001600160a01b038316600090815260208052604090205460ff16155b15611b9057600854811115611b245760405162461bcd60e51b8152600401610b0890612c7c565b6001600160a01b038216600090815260208052604090205460ff16611be357600a54611bbb83610ddd565b611bc590836131e0565b1115611be35760405162461bcd60e51b8152600401610b0890613082565b6000611bee30610ddd565b60095490915081108015908190611c0d575060115462010000900460ff165b8015611c235750600654600160a01b900460ff16155b8015611c4857506001600160a01b03851660009081526021602052604090205460ff16155b8015611c6d57506001600160a01b0385166000908152601f602052604090205460ff16155b8015611c9257506001600160a01b0384166000908152601f602052604090205460ff16155b15611cc0576006805460ff60a01b1916600160a01b179055611cb261218e565b6006805460ff60a01b191690555b600654600160a01b900460ff16158015611cf257506001600160a01b03841660009081526021602052604090205460ff165b8015611d005750600c5460ff165b8015611d1b5750600d54600e54611d1791906131e0565b4210155b8015611d4057506001600160a01b0385166000908152601f602052604090205460ff16155b15611d4f57611d4d612370565b505b6006546001600160a01b0386166000908152601f602052604090205460ff600160a01b909204821615911680611d9d57506001600160a01b0385166000908152601f602052604090205460ff165b15611da6575060005b60008115611f8b576001600160a01b03861660009081526021602052604090205460ff168015611dd857506000601854115b15611e9057611df760646116ef6018548861204590919063ffffffff16565b9050601854601a5482611e0a9190613218565b611e1491906131f8565b601d6000828254611e2591906131e0565b9091555050601854601b54611e3a9083613218565b611e4491906131f8565b601e6000828254611e5591906131e0565b9091555050601854601954611e6a9083613218565b611e7491906131f8565b601c6000828254611e8591906131e0565b90915550611f6d9050565b6001600160a01b03871660009081526021602052604090205460ff168015611eba57506000601454115b15611f6d57611ed960646116ef6014548861204590919063ffffffff16565b905060145460165482611eec9190613218565b611ef691906131f8565b601d6000828254611f0791906131e0565b9091555050601454601754611f1c9083613218565b611f2691906131f8565b601e6000828254611f3791906131e0565b9091555050601454601554611f4c9083613218565b611f5691906131f8565b601c6000828254611f6791906131e0565b90915550505b8015611f7e57611f7e873083612064565b611f888186613237565b94505b611f96878787612064565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006120518284613218565b9392505050565b600061205182846131f8565b6001600160a01b03831661208a5760405162461bcd60e51b8152600401610b0890612fc4565b6001600160a01b0382166120b05760405162461bcd60e51b8152600401610b0890612a47565b6120bb83838361102e565b6001600160a01b038316600090815260208190526040902054818110156120f45760405162461bcd60e51b8152600401610b0890612c36565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061212b9084906131e0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121759190613143565b60405180910390a361218884848461102e565b50505050565b600061219930610ddd565b90506000601e54601d546121ad91906131e0565b905060008215806121bc575081155b156121c957505050610e41565b6009546121d7906014613218565b8311156121ef576009546121ec906014613218565b92505b6000600283601d54866122029190613218565b61220c91906131f8565b61221691906131f8565b90506000612239601c5461223384886124cc90919063ffffffff16565b906124cc565b905047612245826124d8565b600061225147836124cc565b9050600061226e876116ef601e548561204590919063ffffffff16565b9050600061227c8284613237565b601c5490915015612296576122963061dead601c54612064565b6000601d819055601c819055601e556007546040516001600160a01b039091169083906122c290612997565b60006040518083038185875af1925050503d80600081146122ff576040519150601f19603f3d011682016040523d82523d6000602084013e612304565b606091505b509097505085158015906123185750600081115b156123655761232786826126c3565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601d5460405161235c939291906131bc565b60405180910390a15b505050505050505050565b42600e556006546040516370a0823160e01b8152600091829130916370a08231916123a7916001600160a01b03169060040161299a565b60206040518083038186803b1580156123bf57600080fd5b505afa1580156123d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123f791906128f3565b905060006124166127106116ef600b548561204590919063ffffffff16565b9050801561243757600654612437906001600160a01b031661dead83612064565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561248157600080fd5b505af1158015612495573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006120518284613237565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061251b57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561259457600080fd5b505afa1580156125a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cc91906127ce565b816001815181106125ed57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b031681525050612638307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117b0565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061268d90859060009086903090429060040161314c565b600060405180830381600087803b1580156126a757600080fd5b505af11580156126bb573d6000803e3d6000fd5b505050505050565b6126ee307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117b0565b60405163f305d71960e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063f305d7199083906127499030908790600090819061dead9042906004016129ae565b6060604051808303818588803b15801561276257600080fd5b505af1158015612776573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061279b919061296a565b5050505050565b80358015158114610dc357600080fd5b6000602082840312156127c3578081fd5b81356120518161329f565b6000602082840312156127df578081fd5b81516120518161329f565b600080604083850312156127fc578081fd5b82356128078161329f565b915060208301356128178161329f565b809150509250929050565b600080600060608486031215612836578081fd5b83356128418161329f565b925060208401356128518161329f565b929592945050506040919091013590565b60008060408385031215612874578182fd5b823561287f8161329f565b915061288d602084016127a2565b90509250929050565b600080604083850312156128a8578182fd5b82356128b38161329f565b946020939093013593505050565b6000602082840312156128d2578081fd5b612051826127a2565b6000602082840312156128ec578081fd5b5035919050565b600060208284031215612904578081fd5b5051919050565b60008060006060848603121561291f578283fd5b8335925060208401359150612936604085016127a2565b90509250925092565b600080600060608486031215612953578283fd5b505081359360208301359350604090920135919050565b60008060006060848603121561297e578283fd5b8351925060208401519150604084015190509250925092565b90565b6001600160a01b0391909116815260200190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b901515815260200190565b6000602080835283518082850152825b81811015612a2057858101830151858201604001528201612a04565b81811115612a315783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601690820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526033908201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604082015272616e206576657279203130206d696e7574657360681b606082015260800190565b60208082526024908201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604082015263302e352560e01b606082015260800190565b60208082526039908201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060408201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526036908201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656040820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606082015260800190565b60208082526030908201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560408201526f747765656e20302520616e642031302560801b606082015260800190565b60208082526035908201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60408201527410181718181892903a37ba30b61039bab838363c9760591b606082015260800190565b60208082526034908201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604082015273371018171a92903a37ba30b61039bab838363c9760611b606082015260800190565b60208082526035908201527f427579207472616e7366657220616d6f756e742065786365656473207468652060408201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606082015260800190565b60208082526049908201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60408201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6060820152681030b63637bbb2b21760b91b608082015260a00190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601c908201527f4d757374206b6565702066656573206174203525206f72206c65737300000000604082015260600190565b6020808252601d908201527f4d757374206b656570206665657320617420203525206f72206c657373000000604082015260600190565b6020808252602a908201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60408201526906b656e7320696e204c560b41b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252818101527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526013908201527213585e081dd85b1b195d08195e18d959591959606a1b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602f908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060408201526e6c6f776572207468616e20302e312560881b606082015260800190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561319b5784516001600160a01b031683529383019391830191600101613176565b50506001600160a01b03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b600082198211156131f3576131f3613289565b500190565b60008261321357634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561323257613232613289565b500290565b60008282101561324957613249613289565b500390565b60028104600182168061326257607f821691505b6020821081141561328357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146115b457600080fdfea2646970667358221220e3cd1053646cfd0170db9ed543d0efc930b435a1f41e2b0ccaabd228a2c35c9564736f6c63430008000033

Deployed Bytecode Sourcemap

27910:18256:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10506:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12814:210;;;;;;;;;;-1:-1:-1;12814:210:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;29507:63::-;;;;;;;;;;-1:-1:-1;29507:63:0;;;;;:::i;:::-;;:::i;27986:51::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11626:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35713:157::-;;;;;;;;;;-1:-1:-1;35713:157:0;;;;;:::i;:::-;;:::i;:::-;;28504:47;;;;;;;;;;;;;:::i;28319:36::-;;;;;;;;;;;;;:::i;29291:33::-;;;;;;;;;;;;;:::i;29256:28::-;;;;;;;;;;;;;:::i;33309:275::-;;;;;;;;;;-1:-1:-1;33309:275:0;;;;;:::i;:::-;;:::i;13506:529::-;;;;;;;;;;-1:-1:-1;13506:529:0;;;;;:::i;:::-;;:::i;28079:53::-;;;;;;;;;;;;;:::i;32211:154::-;;;;;;;;;;;;;:::i;28414:45::-;;;;;;;;;;;;;:::i;28375:32::-;;;;;;;;;;;;;:::i;11468:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;14444:297::-;;;;;;;;;;-1:-1:-1;14444:297:0;;;;;:::i;:::-;;:::i;28044:28::-;;;;;;;;;;;;;:::i;28602:33::-;;;;;;;;;;;;;:::i;35878:126::-;;;;;;;;;;-1:-1:-1;35878:126:0;;;;;:::i;:::-;;:::i;29100:29::-;;;;;;;;;;;;;:::i;28682:31::-;;;;;;;;;;;;;:::i;11797:177::-;;;;;;;;;;-1:-1:-1;11797:177:0;;;;;:::i;:::-;;:::i;4302:103::-;;;;;;;;;;;;;:::i;43748:555::-;;;;;;;;;;-1:-1:-1;43748:555:0;;;;;:::i;:::-;;:::i;32417:121::-;;;;;;;;;;;;;:::i;33856:167::-;;;;;;;;;;-1:-1:-1;33856:167:0;;;;;:::i;:::-;;:::i;34227:381::-;;;;;;;;;;-1:-1:-1;34227:381:0;;;;;:::i;:::-;;:::i;3651:87::-;;;;;;;;;;;;;:::i;28171:24::-;;;;;;;;;;;;;:::i;34119:100::-;;;;;;;;;;-1:-1:-1;34119:100:0;;;;;:::i;:::-;;:::i;10725:104::-;;;;;;;;;;;;;:::i;35205:304::-;;;;;;;;;;-1:-1:-1;35205:304:0;;;;;:::i;:::-;;:::i;29062:29::-;;;;;;;;;;;;;:::i;28558:35::-;;;;;;;;;;;;;:::i;29331:27::-;;;;;;;;;;;;;:::i;29217:30::-;;;;;;;;;;;;;:::i;15244:482::-;;;;;;;;;;-1:-1:-1;15244:482:0;;;;;:::i;:::-;;:::i;28466:29::-;;;;;;;;;;;;;:::i;12187:216::-;;;;;;;;;;-1:-1:-1;12187:216:0;;;;;:::i;:::-;;:::i;29136:31::-;;;;;;;;;;;;;:::i;29728:57::-;;;;;;;;;;-1:-1:-1;29728:57:0;;;;;:::i;:::-;;:::i;28642:33::-;;;;;;;;;;;;;:::i;35015:182::-;;;;;;;;;;-1:-1:-1;35015:182:0;;;;;:::i;:::-;;:::i;34616:391::-;;;;;;;;;;-1:-1:-1;34616:391:0;;;;;:::i;:::-;;:::i;33592:256::-;;;;;;;;;;-1:-1:-1;33592:256:0;;;;;:::i;:::-;;:::i;28900:39::-;;;;;;;;;;;;;:::i;28204:35::-;;;;;;;;;;;;;:::i;32804:497::-;;;;;;;;;;-1:-1:-1;32804:497:0;;;;;:::i;:::-;;:::i;28948:28::-;;;;;;;;;;;;;:::i;12466:201::-;;;;;;;;;;-1:-1:-1;12466:201:0;;;;;:::i;:::-;;:::i;28246:33::-;;;;;;;;;;;;;:::i;28983:30::-;;;;;;;;;;;;;:::i;32599:135::-;;;;;;;;;;;;;:::i;29020:35::-;;;;;;;;;;;;;:::i;4560:238::-;;;;;;;;;;-1:-1:-1;4560:238:0;;;;;:::i;:::-;;:::i;29174:36::-;;;;;;;;;;;;;:::i;28286:24::-;;;;;;;;;;;;;:::i;45107:1056::-;;;;;;;;;;-1:-1:-1;45107:1056:0;;;;;:::i;:::-;;:::i;10506:100::-;10560:13;10593:5;10586:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10506:100;:::o;12814:210::-;12933:4;12955:39;12964:12;:10;:12::i;:::-;12978:7;12987:6;12955:8;:39::i;:::-;-1:-1:-1;13012:4:0;12814:210;;;;:::o;29507:63::-;;;;;;;;;;;;;;;:::o;27986:51::-;;;:::o;11626:108::-;11714:12;;11626:108;:::o;35713:157::-;3882:12;:10;:12::i;:::-;-1:-1:-1;;;;;3871:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3871:23:0;;3863:68;;;;-1:-1:-1;;;3863:68:0;;;;;;;:::i;:::-;;;;;;;;;35820:9:::1;::::0;35792:38:::1;::::0;-1:-1:-1;;;;;35820:9:0;;::::1;::::0;35792:38;::::1;::::0;::::1;::::0;35820:9:::1;::::0;35792:38:::1;35841:9;:21:::0;;-1:-1:-1;;;;;;35841:21:0::1;-1:-1:-1::0;;;;;35841:21:0;;;::::1;::::0;;;::::1;::::0;;35713:157::o;28504:47::-;;;;:::o;28319:36::-;;;;:::o;29291:33::-;;;;:::o;29256:28::-;;;;:::o;33309:275::-;3882:12;:10;:12::i;:::-;-1:-1:-1;;;;;3871:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3871:23:0;;3863:68;;;;-1:-1:-1;;;3863:68:0;;;;;;;:::i;:::-;33446:4:::1;33438;33417:13;:11;:13::i;:::-;:17;::::0;33433:1:::1;33417:17;:::i;:::-;33416:26;;;;:::i;:::-;33415:35;;;;:::i;:::-;33405:6;:45;;33383:142;;;;-1:-1:-1::0;;;33383:142:0::1;;;;;;;:::i;:::-;33559:17;:6:::0;33569::::1;33559:17;:::i;:::-;33536:20;:40:::0;-1:-1:-1;33309:275:0:o;13506:529::-;13646:4;13663:36;13673:6;13681:9;13692:6;13663:9;:36::i;:::-;-1:-1:-1;;;;;13739:19:0;;13712:24;13739:19;;;:11;:19;;;;;13712:24;13759:12;:10;:12::i;:::-;-1:-1:-1;;;;;13739:33:0;-1:-1:-1;;;;;13739:33:0;;;;;;;;;;;;;13712:60;;13825:6;13805:16;:26;;13783:116;;;;-1:-1:-1;;;13783:116:0;;;;;;;:::i;:::-;13935:57;13944:6;13952:12;:10;:12::i;:::-;13985:6;13966:16;:25;13935:8;:57::i;:::-;-1:-1:-1;14023:4:0;;13506:529;-1:-1:-1;;;;13506:529:0:o;28079:53::-;28125:6;28079:53;:::o;32211:154::-;3882:12;:10;:12::i;:::-;-1:-1:-1;;;;;3871:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3871:23:0;;3863:68;;;;-1:-1:-1;;;3863:68:0;;;;;;;:::i;:::-;32265:13:::1;:20:::0;;-1:-1:-1;;;;32265:20:0;;::::1;;;32296:18;::::0;::::1;::::0;;32342:15:::1;32325:14;:32:::0;32211:154::o;28414:45::-;;;;:::o;28375:32::-;;;;;;:::o;11468:93::-;11551:2;11468:93;:::o;14444:297::-;14559:4;14581:130;14604:12;:10;:12::i;:::-;14631:7;14690:10;14653:11;:25;14665:12;:10;:12::i;:::-;-1:-1:-1;;;;;14653:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14653:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;14581:8;:130::i;28044:28::-;;;-1:-1:-1;;;;;28044:28:0;;:::o;28602:33::-;;;;;;:::o;35878:126::-;-1:-1:-1;;;;;35968:28:0;;35944:4;35968:28;;;:19;:28;;;;;;;;35878:126;;;;:::o;29100:29::-;;;;:::o;28682:31::-;;;;;;;;;:::o;11797:177::-;-1:-1:-1;;;;;11948:18:0;11916:7;11948:18;;;;;;;;;;;;11797:177::o;4302:103::-;3882:12;:10;:12::i;:::-;-1:-1:-1;;;;;3871:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3871:23:0;;3863:68;;;;-1:-1:-1;;;3863:68:0;;;;;;;:::i;:::-;4367:30:::1;4394:1;4367:18;:30::i;:::-;4302:103::o:0;43748:555::-;3882:12;:10;:12::i;:::-;-1:-1:-1;;;;;3871:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3871:23:0;;3863:68;;;;-1:-1:-1;;;3863:68:0;;;;;;;:::i;:::-;43950:3:::1;43927:19;:26;;43905:127;;;;-1:-1:-1::0;;;43905:127:0::1;;;;;;;:::i;:::-;44077:4;44065:8;:16;;:33;;;;-1:-1:-1::0;44085:13:0;44065:33:::1;44043:131;;;;-1:-1:-1::0;;;44043:131:0::1;;;;;;;:::i;:::-;44185:15;:37:::0;;;;44233:16:::1;:27:::0;44271:13:::1;:24:::0;;-1:-1:-1;;44271:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43748:555::o;32417:121::-;32469:4;3882:12;:10;:12::i;:::-;-1:-1:-1;;;;;3871:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3871:23:0;;3863:68;;;;-1:-1:-1;;;3863:68:0;;;;;;;:::i;:::-;-1:-1:-1;32486:14:0::1;:22:::0;;-1:-1:-1;;32486:22:0::1;::::0;;;32417:121;:::o;33856:167::-;3882:12;:10;:12::i;:::-;-1:-1:-1;;;;;3871:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3871:23:0;;3863:68;;;;-1:-1:-1;;;3863:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33969:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;33969:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33856:167::o;34227:381::-;3882:12;:10;:12::i;:::-;-1:-1:-1;;;;;3871:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3871:23:0;;3863:68;;;;-1:-1:-1;;;3863:68:0;;;;;;;:::i;:::-;34372:10:::1;:21:::0;;;34404:15:::1;:31:::0;;;34446:9:::1;:19:::0;;;34458:7;34491:28:::1;34422:13:::0;34385:8;34491:28:::1;:::i;:::-;:40;;;;:::i;:::-;34476:12;:55:::0;;;34566:1:::1;-1:-1:-1::0;34550:17:0::1;34542:58;;;;-1:-1:-1::0;;;34542:58:0::1;;;;;;;:::i;:::-;34227:381:::0;;;:::o;3651:87::-;3724:6;;-1:-1:-1;;;;;3724:6:0;3651:87;:::o;28171:24::-;;;-1:-1:-1;;;;;28171:24:0;;:::o;34119:100::-;3882:12;:10;:12::i;:::-;-1:-1:-1;;;;;3871:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3871:23:0;;3863:68;;;;-1:-1:-1;;;3863:68:0;;;;;;;:::i;:::-;34190:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;34190:21:0;;::::1;::::0;;;::::1;::::0;;34119:100::o;10725:104::-;10781:13;10814:7;10807:14;;;;;:::i;35205:304::-;3882:12;:10;:12::i;:::-;-1:-1:-1;;;;;3871:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3871:23:0;;3863:68;;;;-1:-1:-1;;;3863:68:0;;;;;;;:::i;:::-;35349:13:::1;::::0;-1:-1:-1;;;;;35341:21:0;;::::1;35349:13:::0;::::1;35341:21;;35319:128;;;;-1:-1:-1::0;;;35319:128:0::1;;;;;;;:::i;:::-;35460:41;35489:4;35495:5;35460:28;:41::i;:::-;35205:304:::0;;:::o;29062:29::-;;;;:::o;28558:35::-;;;;:::o;29331:27::-;;;;:::o;29217:30::-;;;;:::o;15244:482::-;15364:4;15386:24;15413:11;:25;15425:12;:10;:12::i;:::-;-1:-1:-1;;;;;15413:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15413:25:0;;;:34;;;;;;;;;;;-1:-1:-1;15480:35:0;;;;15458:122;;;;-1:-1:-1;;;15458:122:0;;;;;;;:::i;:::-;15616:67;15625:12;:10;:12::i;:::-;15639:7;15667:15;15648:16;:34;15616:8;:67::i;:::-;-1:-1:-1;15714:4:0;;15244:482;-1:-1:-1;;;15244:482:0:o;28466:29::-;;;;:::o;12187:216::-;12309:4;12331:42;12341:12;:10;:12::i;:::-;12355:9;12366:6;12331:9;:42::i;29136:31::-;;;;:::o;29728:57::-;;;;;;;;;;;;;;;:::o;28642:33::-;;;;;;;;;:::o;35015:182::-;3882:12;:10;:12::i;:::-;-1:-1:-1;;;;;3871:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3871:23:0;;3863:68;;;;-1:-1:-1;;;3863:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35100:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;:39;;-1:-1:-1;;35100:39:0::1;::::0;::::1;;;::::0;;35155:34;::::1;::::0;::::1;::::0;35100:39;;35155:34:::1;:::i;:::-;;;;;;;;35015:182:::0;;:::o;34616:391::-;3882:12;:10;:12::i;:::-;-1:-1:-1;;;;;3871:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3871:23:0;;3863:68;;;;-1:-1:-1;;;3863:68:0;;;;;;;:::i;:::-;34762:11:::1;:22:::0;;;34795:16:::1;:32:::0;;;34838:10:::1;:20:::0;;;34851:7;34885:30:::1;34814:13:::0;34776:8;34885:30:::1;:::i;:::-;:43;;;;:::i;:::-;34869:13;:59:::0;;;34964:1:::1;-1:-1:-1::0;34947:18:0::1;34939:60;;;;-1:-1:-1::0;;;34939:60:0::1;;;;;;;:::i;33592:256::-:0;3882:12;:10;:12::i;:::-;-1:-1:-1;;;;;3871:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3871:23:0;;3863:68;;;;-1:-1:-1;;;3863:68:0;;;;;;;:::i;:::-;33732:4:::1;33724;33703:13;:11;:13::i;:::-;:17;::::0;33719:1:::1;33703:17;:::i;:::-;33702:26;;;;:::i;:::-;33701:35;;;;:::i;:::-;33691:6;:45;;33669:131;;;;-1:-1:-1::0;;;33669:131:0::1;;;;;;;:::i;:::-;33823:17;:6:::0;33833::::1;33823:17;:::i;:::-;33811:9;:29:::0;-1:-1:-1;33592:256:0:o;28900:39::-;;;;;;:::o;28204:35::-;;;;:::o;32804:497::-;32912:4;3882:12;:10;:12::i;:::-;-1:-1:-1;;;;;3871:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3871:23:0;;3863:68;;;;-1:-1:-1;;;3863:68:0;;;;;;;:::i;:::-;32991:6:::1;32970:13;:11;:13::i;:::-;:17;::::0;32986:1:::1;32970:17;:::i;:::-;32969:28;;;;:::i;:::-;32956:9;:41;;32934:144;;;;-1:-1:-1::0;;;32934:144:0::1;;;;;;;:::i;:::-;33146:4;33125:13;:11;:13::i;:::-;:17;::::0;33141:1:::1;33125:17;:::i;:::-;33124:26;;;;:::i;:::-;33111:9;:39;;33089:141;;;;-1:-1:-1::0;;;33089:141:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;33241:18:0::1;:30:::0;33289:4:::1;::::0;32804:497::o;28948:28::-;;;;:::o;12466:201::-;-1:-1:-1;;;;;12632:18:0;;;12600:7;12632:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12466:201::o;28246:33::-;;;;:::o;28983:30::-;;;;:::o;32599:135::-;32659:4;3882:12;:10;:12::i;:::-;-1:-1:-1;;;;;3871:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3871:23:0;;3863:68;;;;-1:-1:-1;;;3863:68:0;;;;;;;:::i;:::-;-1:-1:-1;32676:20:0::1;:28:::0;;-1:-1:-1;;32676:28:0::1;::::0;;;32599:135;:::o;29020:35::-;;;;:::o;4560:238::-;3882:12;:10;:12::i;:::-;-1:-1:-1;;;;;3871:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3871:23:0;;3863:68;;;;-1:-1:-1;;;3863:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4663:22:0;::::1;4641:110;;;;-1:-1:-1::0;;;4641:110:0::1;;;;;;;:::i;:::-;4762:28;4781:8;4762:18;:28::i;:::-;4560:238:::0;:::o;29174:36::-;;;;:::o;28286:24::-;;;;:::o;45107:1056::-;45218:4;3882:12;:10;:12::i;:::-;-1:-1:-1;;;;;3871:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3871:23:0;;3863:68;;;;-1:-1:-1;;;3863:68:0;;;;;;;:::i;:::-;45303:19:::1;;45280:20;;:42;;;;:::i;:::-;45262:15;:60;45240:142;;;;-1:-1:-1::0;;;45240:142:0::1;;;;;;;:::i;:::-;45412:4;45401:7;:15;;45393:70;;;;-1:-1:-1::0;;;45393:70:0::1;;;;;;;:::i;:::-;45497:15;45474:20;:38:::0;45613:13:::1;::::0;45598:29:::1;::::0;-1:-1:-1;;;45598:29:0;;45567:28:::1;::::0;45598:4:::1;::::0;:14:::1;::::0;:29:::1;::::0;-1:-1:-1;;;;;45613:13:0;;::::1;::::0;45598:29:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45567:60:::0;-1:-1:-1;45677:20:0::1;45700:44;45738:5;45700:33;45567:60:::0;45725:7;45700:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;45677:67:::0;-1:-1:-1;45849:16:0;;45845:110:::1;;45898:13;::::0;45882:61:::1;::::0;-1:-1:-1;;;;;45898:13:0::1;45921:6;45930:12:::0;45882:15:::1;:61::i;:::-;46067:13;::::0;46092:11:::1;::::0;;-1:-1:-1;;;;;;46092:11:0;;;;-1:-1:-1;;;;;46067:13:0;;::::1;::::0;;;46092:9:::1;::::0;:11:::1;::::0;;::::1;::::0;46030:19:::1;::::0;46092:11;;;;;;;46030:19;46067:13;46092:11;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;46119:14:0::1;::::0;::::1;::::0;-1:-1:-1;46119:14:0;;-1:-1:-1;46119:14:0::1;-1:-1:-1::0;46151:4:0::1;::::0;45107:1056;-1:-1:-1;;;;45107:1056:0:o;2493:98::-;2573:10;2493:98;:::o;19034:380::-;-1:-1:-1;;;;;19170:19:0;;19162:68;;;;-1:-1:-1;;;19162:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19249:21:0;;19241:68;;;;-1:-1:-1;;;19241:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19322:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;19374:32;;;;;19352:6;;19374:32;:::i;:::-;;;;;;;;19034:380;;;:::o;36012:4991::-;-1:-1:-1;;;;;36144:18:0;;36136:68;;;;-1:-1:-1;;;36136:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36223:16:0;;36215:64;;;;-1:-1:-1;;;36215:64:0;;;;;;;:::i;:::-;36296:11;36292:93;;36324:28;36340:4;36346:2;36350:1;36324:15;:28::i;:::-;36367:7;;36292:93;36401:14;;;;36397:2487;;;36462:7;:5;:7::i;:::-;-1:-1:-1;;;;;36454:15:0;:4;-1:-1:-1;;;;;36454:15:0;;;:49;;;;;36496:7;:5;:7::i;:::-;-1:-1:-1;;;;;36490:13:0;:2;-1:-1:-1;;;;;36490:13:0;;;36454:49;:86;;;;-1:-1:-1;;;;;;36524:16:0;;;;36454:86;:128;;;;-1:-1:-1;;;;;;36561:21:0;;36575:6;36561:21;;36454:128;:158;;;;-1:-1:-1;36604:8:0;;-1:-1:-1;;;36604:8:0;;;;36603:9;36454:158;36432:2441;;;36652:13;;;;;;;36647:223;;-1:-1:-1;;;;;36724:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;36753:23:0;;;;;;:19;:23;;;;;;;;36724:52;36690:160;;;;-1:-1:-1;;;36690:160:0;;;;;;;:::i;:::-;37026:20;;;;37022:641;;;37107:7;:5;:7::i;:::-;-1:-1:-1;;;;;37101:13:0;:2;-1:-1:-1;;;;;37101:13:0;;;:72;;;;;37157:15;-1:-1:-1;;;;;37143:30:0;:2;-1:-1:-1;;;;;37143:30:0;;;37101:72;:129;;;;-1:-1:-1;37216:13:0;;-1:-1:-1;;;;;37202:28:0;;;37216:13;;37202:28;;37101:129;37071:573;;;37348:9;37319:39;;;;:28;:39;;;;;;37394:12;-1:-1:-1;37281:258:0;;;;-1:-1:-1;;;37281:258:0;;;;;;;:::i;:::-;37595:9;37566:39;;;;:28;:39;;;;;37608:12;37566:54;;37071:573;-1:-1:-1;;;;;37737:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;37794:35:0;;;;;;:31;:35;;;;;;;;37793:36;37737:92;37711:1147;;;37916:20;;37906:6;:30;;37872:169;;;;-1:-1:-1;;;37872:169:0;;;;;;;:::i;:::-;38124:9;;38107:13;38117:2;38107:9;:13::i;:::-;38098:22;;:6;:22;:::i;:::-;:35;;38064:140;;;;-1:-1:-1;;;38064:140:0;;;;;;;:::i;:::-;37711:1147;;;-1:-1:-1;;;;;38302:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;38357:37:0;;;;;;:31;:37;;;;;;;;38356:38;38302:92;38276:582;;;38481:20;;38471:6;:30;;38437:170;;;;-1:-1:-1;;;38437:170:0;;;;;;;:::i;38276:582::-;-1:-1:-1;;;;;38638:35:0;;;;;;:31;:35;;;;;;;;38633:225;;38758:9;;38741:13;38751:2;38741:9;:13::i;:::-;38732:22;;:6;:22;:::i;:::-;:35;;38698:140;;;;-1:-1:-1;;;38698:140:0;;;;;;;:::i;:::-;38896:28;38927:24;38945:4;38927:9;:24::i;:::-;39003:18;;38896:55;;-1:-1:-1;38979:42:0;;;;;;;39052:35;;-1:-1:-1;39076:11:0;;;;;;;39052:35;:61;;;;-1:-1:-1;39105:8:0;;-1:-1:-1;;;39105:8:0;;;;39104:9;39052:61;:110;;;;-1:-1:-1;;;;;;39131:31:0;;;;;;:25;:31;;;;;;;;39130:32;39052:110;:153;;;;-1:-1:-1;;;;;;39180:25:0;;;;;;:19;:25;;;;;;;;39179:26;39052:153;:194;;;;-1:-1:-1;;;;;;39223:23:0;;;;;;:19;:23;;;;;;;;39222:24;39052:194;39034:326;;;39273:8;:15;;-1:-1:-1;;;;39273:15:0;-1:-1:-1;;;39273:15:0;;;39305:10;:8;:10::i;:::-;39332:8;:16;;-1:-1:-1;;;;39332:16:0;;;39034:326;39391:8;;-1:-1:-1;;;39391:8:0;;;;39390:9;:55;;;;-1:-1:-1;;;;;;39416:29:0;;;;;;:25;:29;;;;;;;;39390:55;:85;;;;-1:-1:-1;39462:13:0;;;;39390:85;:153;;;;;39528:15;;39511:14;;:32;;;;:::i;:::-;39492:15;:51;;39390:153;:196;;;;-1:-1:-1;;;;;;39561:25:0;;;;;;:19;:25;;;;;;;;39560:26;39390:196;39372:282;;;39613:29;:27;:29::i;:::-;;39372:282;39682:8;;-1:-1:-1;;;;;39792:25:0;;39666:12;39792:25;;;:19;:25;;;;;;39682:8;-1:-1:-1;;;39682:8:0;;;;;39681:9;;39792:25;;:52;;-1:-1:-1;;;;;;39821:23:0;;;;;;:19;:23;;;;;;;;39792:52;39788:100;;;-1:-1:-1;39871:5:0;39788:100;39900:12;40005:7;40001:949;;;-1:-1:-1;;;;;40057:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;40106:1;40090:13;;:17;40057:50;40053:748;;;40135:34;40165:3;40135:25;40146:13;;40135:6;:10;;:25;;;;:::i;:34::-;40128:41;;40238:13;;40218:16;;40211:4;:23;;;;:::i;:::-;40210:41;;;;:::i;:::-;40188:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;40308:13:0;;40294:10;;40287:17;;:4;:17;:::i;:::-;40286:35;;;;:::i;:::-;40270:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;40380:13:0;;40365:11;;40358:18;;:4;:18;:::i;:::-;40357:36;;;;:::i;:::-;40340:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;40053:748:0;;-1:-1:-1;40053:748:0;;-1:-1:-1;;;;;40455:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;40505:1;40490:12;;:16;40455:51;40451:350;;;40534:33;40563:3;40534:24;40545:12;;40534:6;:10;;:24;;;;:::i;:33::-;40527:40;;40635:12;;40616:15;;40609:4;:22;;;;:::i;:::-;40608:39;;;;:::i;:::-;40586:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;40703:12:0;;40690:9;;40683:16;;:4;:16;:::i;:::-;40682:33;;;;:::i;:::-;40666:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;40773:12:0;;40759:10;;40752:17;;:4;:17;:::i;:::-;40751:34;;;;:::i;:::-;40734:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;40451:350:0;40821:8;;40817:91;;40850:42;40866:4;40880;40887;40850:15;:42::i;:::-;40924:14;40934:4;40924:14;;:::i;:::-;;;40001:949;40962:33;40978:4;40984:2;40988:6;40962:15;:33::i;:::-;36012:4991;;;;;;;:::o;4958:191::-;5051:6;;;-1:-1:-1;;;;;5068:17:0;;;-1:-1:-1;;;;;;5068:17:0;;;;;;;5101:40;;5051:6;;;5068:17;5051:6;;5101:40;;5032:16;;5101:40;4958:191;;:::o;35517:188::-;-1:-1:-1;;;;;35600:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;35600:39:0;;;;;;;;;;35657:40;;35600:39;;:31;35657:40;;;35517:188;;:::o;24483:98::-;24541:7;24568:5;24572:1;24568;:5;:::i;:::-;24561:12;24483:98;-1:-1:-1;;;24483:98:0:o;24882:::-;24940:7;24967:5;24971:1;24967;:5;:::i;16216:770::-;-1:-1:-1;;;;;16356:20:0;;16348:70;;;;-1:-1:-1;;;16348:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16437:23:0;;16429:71;;;;-1:-1:-1;;;16429:71:0;;;;;;;:::i;:::-;16513:47;16534:6;16542:9;16553:6;16513:20;:47::i;:::-;-1:-1:-1;;;;;16597:17:0;;16573:21;16597:17;;;;;;;;;;;16647:23;;;;16625:111;;;;-1:-1:-1;;;16625:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16772:17:0;;;:9;:17;;;;;;;;;;;16792:22;;;16772:42;;16836:20;;;;;;;;:30;;16808:6;;16772:9;16836:30;;16808:6;;16836:30;:::i;:::-;;;;;;;;16901:9;-1:-1:-1;;;;;16884:35:0;16893:6;-1:-1:-1;;;;;16884:35:0;;16912:6;16884:35;;;;;;:::i;:::-;;;;;;;;16932:46;16952:6;16960:9;16971:6;16932:19;:46::i;:::-;16216:770;;;;:::o;42133:1607::-;42172:23;42198:24;42216:4;42198:9;:24::i;:::-;42172:50;;42233:25;42295:12;;42261:18;;:46;;;;:::i;:::-;42233:74;-1:-1:-1;42318:12:0;42347:20;;;:46;;-1:-1:-1;42371:22:0;;42347:46;42343:85;;;42410:7;;;;;42343:85;42462:18;;:23;;42483:2;42462:23;:::i;:::-;42444:15;:41;42440:115;;;42520:18;;:23;;42541:2;42520:23;:::i;:::-;42502:41;;42440:115;42616:23;42729:1;42696:17;42661:18;;42643:15;:36;;;;:::i;:::-;42642:71;;;;:::i;:::-;:88;;;;:::i;:::-;42616:114;;42741:26;42770:55;42811:13;;42770:36;42790:15;42770;:19;;:36;;;;:::i;:::-;:40;;:55::i;:::-;42741:84;-1:-1:-1;42866:21:0;42900:36;42741:84;42900:16;:36::i;:::-;42949:18;42970:44;:21;42996:17;42970:25;:44::i;:::-;42949:65;;43027:17;43047:51;43080:17;43047:28;43062:12;;43047:10;:14;;:28;;;;:::i;:51::-;43027:71;-1:-1:-1;43111:23:0;43137:22;43027:71;43137:10;:22;:::i;:::-;43174:13;;43111:48;;-1:-1:-1;43174:17:0;43170:109;;43204:62;43228:4;43243:6;43252:13;;43204:15;:62::i;:::-;43312:1;43291:18;:22;;;43324:13;:17;;;43352:12;:16;43405:9;;43397:45;;-1:-1:-1;;;;;43405:9:0;;;;43428;;43397:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43383:59:0;;-1:-1:-1;;43459:19:0;;;;;:42;;;43500:1;43482:15;:19;43459:42;43455:278;;;43518:46;43531:15;43548;43518:12;:46::i;:::-;43584:137;43617:18;43654:15;43688:18;;43584:137;;;;;;;;:::i;:::-;;;;;;;;43455:278;42133:1607;;;;;;;;;:::o;44311:788::-;44402:15;44385:14;:32;44518:13;;44503:29;;-1:-1:-1;;;44503:29:0;;44368:4;;;;44503;;:14;;:29;;-1:-1:-1;;;;;44518:13:0;;44503:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44472:60;;44582:20;44605:77;44666:5;44605:42;44630:16;;44605:20;:24;;:42;;;;:::i;:77::-;44582:100;-1:-1:-1;44787:16:0;;44783:110;;44836:13;;44820:61;;-1:-1:-1;;;;;44836:13:0;44859:6;44868:12;44820:15;:61::i;:::-;45005:13;;45030:11;;;-1:-1:-1;;;;;;45030:11:0;;;;-1:-1:-1;;;;;45005:13:0;;;;;;45030:9;;:11;;;;;44968:19;;45030:11;;;;;;;44968:19;45005:13;45030:11;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45057:12:0;;;;-1:-1:-1;45057:12:0;;-1:-1:-1;45057:12:0;45087:4;45080:11;;;;;44311:788;:::o;24126:98::-;24184:7;24211:5;24215:1;24211;:5;:::i;41011:589::-;41161:16;;;41175:1;41161:16;;;;;;;;41137:21;;41161:16;;;;;;;;;;-1:-1:-1;41161:16:0;41137:40;;41206:4;41188;41193:1;41188:7;;;;;;-1:-1:-1;;;41188:7:0;;;;;;;;;;;;;;:23;-1:-1:-1;;;;;41188:23:0;;;-1:-1:-1;;;;;41188:23:0;;;;;41232:15;-1:-1:-1;;;;;41232:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41222:4;41227:1;41222:7;;;;;;-1:-1:-1;;;41222:7:0;;;;;;;;;;;;;;:32;-1:-1:-1;;;;;41222:32:0;;;-1:-1:-1;;;;;41222:32:0;;;;;41267:62;41284:4;41299:15;41317:11;41267:8;:62::i;:::-;41368:224;;-1:-1:-1;;;41368:224:0;;-1:-1:-1;;;;;41368:15:0;:66;;;;:224;;41449:11;;41475:1;;41519:4;;41546;;41566:15;;41368:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41011:589;;:::o;41608:517::-;41756:62;41773:4;41788:15;41806:11;41756:8;:62::i;:::-;41861:256;;-1:-1:-1;;;41861:256:0;;-1:-1:-1;;;;;41861:15:0;:31;;;;41900:9;;41861:256;;41933:4;;41953:11;;41979:1;;;;28125:6;;42091:15;;41861:256;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41608:517;;:::o;14:162:1:-;81:20;;137:13;;130:21;120:32;;110:2;;166:1;163;156:12;181:259;;293:2;281:9;272:7;268:23;264:32;261:2;;;314:6;306;299:22;261:2;358:9;345:23;377:33;404:5;377:33;:::i;445:263::-;;568:2;556:9;547:7;543:23;539:32;536:2;;;589:6;581;574:22;536:2;626:9;620:16;645:33;672:5;645:33;:::i;713:402::-;;;842:2;830:9;821:7;817:23;813:32;810:2;;;863:6;855;848:22;810:2;907:9;894:23;926:33;953:5;926:33;:::i;:::-;978:5;-1:-1:-1;1035:2:1;1020:18;;1007:32;1048:35;1007:32;1048:35;:::i;:::-;1102:7;1092:17;;;800:315;;;;;:::o;1120:470::-;;;;1266:2;1254:9;1245:7;1241:23;1237:32;1234:2;;;1287:6;1279;1272:22;1234:2;1331:9;1318:23;1350:33;1377:5;1350:33;:::i;:::-;1402:5;-1:-1:-1;1459:2:1;1444:18;;1431:32;1472:35;1431:32;1472:35;:::i;:::-;1224:366;;1526:7;;-1:-1:-1;;;1580:2:1;1565:18;;;;1552:32;;1224:366::o;1595:329::-;;;1721:2;1709:9;1700:7;1696:23;1692:32;1689:2;;;1742:6;1734;1727:22;1689:2;1786:9;1773:23;1805:33;1832:5;1805:33;:::i;:::-;1857:5;-1:-1:-1;1881:37:1;1914:2;1899:18;;1881:37;:::i;:::-;1871:47;;1679:245;;;;;:::o;1929:327::-;;;2058:2;2046:9;2037:7;2033:23;2029:32;2026:2;;;2079:6;2071;2064:22;2026:2;2123:9;2110:23;2142:33;2169:5;2142:33;:::i;:::-;2194:5;2246:2;2231:18;;;;2218:32;;-1:-1:-1;;;2016:240:1:o;2261:192::-;;2370:2;2358:9;2349:7;2345:23;2341:32;2338:2;;;2391:6;2383;2376:22;2338:2;2419:28;2437:9;2419:28;:::i;2458:190::-;;2570:2;2558:9;2549:7;2545:23;2541:32;2538:2;;;2591:6;2583;2576:22;2538:2;-1:-1:-1;2619:23:1;;2528:120;-1:-1:-1;2528:120:1:o;2653:194::-;;2776:2;2764:9;2755:7;2751:23;2747:32;2744:2;;;2797:6;2789;2782:22;2744:2;-1:-1:-1;2825:16:1;;2734:113;-1:-1:-1;2734:113:1:o;2852:328::-;;;;2995:2;2983:9;2974:7;2970:23;2966:32;2963:2;;;3016:6;3008;3001:22;2963:2;3057:9;3044:23;3034:33;;3114:2;3103:9;3099:18;3086:32;3076:42;;3137:37;3170:2;3159:9;3155:18;3137:37;:::i;:::-;3127:47;;2953:227;;;;;:::o;3185:326::-;;;;3331:2;3319:9;3310:7;3306:23;3302:32;3299:2;;;3352:6;3344;3337:22;3299:2;-1:-1:-1;;3380:23:1;;;3450:2;3435:18;;3422:32;;-1:-1:-1;3501:2:1;3486:18;;;3473:32;;3289:222;-1:-1:-1;3289:222:1:o;3516:316::-;;;;3673:2;3661:9;3652:7;3648:23;3644:32;3641:2;;;3694:6;3686;3679:22;3641:2;3728:9;3722:16;3712:26;;3778:2;3767:9;3763:18;3757:25;3747:35;;3822:2;3811:9;3807:18;3801:25;3791:35;;3631:201;;;;;:::o;3837:205::-;4037:3;4028:14::o;4047:203::-;-1:-1:-1;;;;;4211:32:1;;;;4193:51;;4181:2;4166:18;;4148:102::o;4255:607::-;-1:-1:-1;;;;;4614:15:1;;;4596:34;;4661:2;4646:18;;4639:34;;;;4704:2;4689:18;;4682:34;;;;4747:2;4732:18;;4725:34;;;;4796:15;;;4790:3;4775:19;;4768:44;4576:3;4828:19;;4821:35;;;;4545:3;4530:19;;4512:350::o;4867:187::-;5032:14;;5025:22;5007:41;;4995:2;4980:18;;4962:92::o;5292:603::-;;5433:2;5462;5451:9;5444:21;5494:6;5488:13;5537:6;5532:2;5521:9;5517:18;5510:34;5562:4;5575:140;5589:6;5586:1;5583:13;5575:140;;;5684:14;;;5680:23;;5674:30;5650:17;;;5669:2;5646:26;5639:66;5604:10;;5575:140;;;5733:6;5730:1;5727:13;5724:2;;;5803:4;5798:2;5789:6;5778:9;5774:22;5770:31;5763:45;5724:2;-1:-1:-1;5879:2:1;5858:15;-1:-1:-1;;5854:29:1;5839:45;;;;5886:2;5835:54;;5413:482;-1:-1:-1;;;5413:482:1:o;5900:399::-;6102:2;6084:21;;;6141:2;6121:18;;;6114:30;6180:34;6175:2;6160:18;;6153:62;-1:-1:-1;;;6246:2:1;6231:18;;6224:33;6289:3;6274:19;;6074:225::o;6304:346::-;6506:2;6488:21;;;6545:2;6525:18;;;6518:30;-1:-1:-1;;;6579:2:1;6564:18;;6557:52;6641:2;6626:18;;6478:172::o;6655:402::-;6857:2;6839:21;;;6896:2;6876:18;;;6869:30;6935:34;6930:2;6915:18;;6908:62;-1:-1:-1;;;7001:2:1;6986:18;;6979:36;7047:3;7032:19;;6829:228::o;7062:398::-;7264:2;7246:21;;;7303:2;7283:18;;;7276:30;7342:34;7337:2;7322:18;;7315:62;-1:-1:-1;;;7408:2:1;7393:18;;7386:32;7450:3;7435:19;;7236:224::o;7465:415::-;7667:2;7649:21;;;7706:2;7686:18;;;7679:30;7745:34;7740:2;7725:18;;7718:62;-1:-1:-1;;;7811:2:1;7796:18;;7789:49;7870:3;7855:19;;7639:241::o;7885:400::-;8087:2;8069:21;;;8126:2;8106:18;;;8099:30;8165:34;8160:2;8145:18;;8138:62;-1:-1:-1;;;8231:2:1;8216:18;;8209:34;8275:3;8260:19;;8059:226::o;8290:421::-;8492:2;8474:21;;;8531:2;8511:18;;;8504:30;8570:34;8565:2;8550:18;;8543:62;8641:27;8636:2;8621:18;;8614:55;8701:3;8686:19;;8464:247::o;8716:402::-;8918:2;8900:21;;;8957:2;8937:18;;;8930:30;8996:34;8991:2;8976:18;;8969:62;-1:-1:-1;;;9062:2:1;9047:18;;9040:36;9108:3;9093:19;;8890:228::o;9123:418::-;9325:2;9307:21;;;9364:2;9344:18;;;9337:30;9403:34;9398:2;9383:18;;9376:62;-1:-1:-1;;;9469:2:1;9454:18;;9447:52;9531:3;9516:19;;9297:244::o;9546:412::-;9748:2;9730:21;;;9787:2;9767:18;;;9760:30;9826:34;9821:2;9806:18;;9799:62;-1:-1:-1;;;9892:2:1;9877:18;;9870:46;9948:3;9933:19;;9720:238::o;9963:417::-;10165:2;10147:21;;;10204:2;10184:18;;;10177:30;10243:34;10238:2;10223:18;;10216:62;-1:-1:-1;;;10309:2:1;10294:18;;10287:51;10370:3;10355:19;;10137:243::o;10385:416::-;10587:2;10569:21;;;10626:2;10606:18;;;10599:30;10665:34;10660:2;10645:18;;10638:62;-1:-1:-1;;;10731:2:1;10716:18;;10709:50;10791:3;10776:19;;10559:242::o;10806:417::-;11008:2;10990:21;;;11047:2;11027:18;;;11020:30;11086:34;11081:2;11066:18;;11059:62;-1:-1:-1;;;11152:2:1;11137:18;;11130:51;11213:3;11198:19;;10980:243::o;11228:477::-;11430:2;11412:21;;;11469:2;11449:18;;;11442:30;11508:34;11503:2;11488:18;;11481:62;11579:34;11574:2;11559:18;;11552:62;-1:-1:-1;;;11645:3:1;11630:19;;11623:40;11695:3;11680:19;;11402:303::o;11710:404::-;11912:2;11894:21;;;11951:2;11931:18;;;11924:30;11990:34;11985:2;11970:18;;11963:62;-1:-1:-1;;;12056:2:1;12041:18;;12034:38;12104:3;12089:19;;11884:230::o;12119:356::-;12321:2;12303:21;;;12340:18;;;12333:30;12399:34;12394:2;12379:18;;12372:62;12466:2;12451:18;;12293:182::o;12480:352::-;12682:2;12664:21;;;12721:2;12701:18;;;12694:30;12760;12755:2;12740:18;;12733:58;12823:2;12808:18;;12654:178::o;12837:353::-;13039:2;13021:21;;;13078:2;13058:18;;;13051:30;13117:31;13112:2;13097:18;;13090:59;13181:2;13166:18;;13011:179::o;13195:406::-;13397:2;13379:21;;;13436:2;13416:18;;;13409:30;13475:34;13470:2;13455:18;;13448:62;-1:-1:-1;;;13541:2:1;13526:18;;13519:40;13591:3;13576:19;;13369:232::o;13606:401::-;13808:2;13790:21;;;13847:2;13827:18;;;13820:30;13886:34;13881:2;13866:18;;13859:62;-1:-1:-1;;;13952:2:1;13937:18;;13930:35;13997:3;13982:19;;13780:227::o;14012:356::-;14214:2;14196:21;;;14233:18;;;14226:30;14292:34;14287:2;14272:18;;14265:62;14359:2;14344:18;;14186:182::o;14373:400::-;14575:2;14557:21;;;14614:2;14594:18;;;14587:30;14653:34;14648:2;14633:18;;14626:62;-1:-1:-1;;;14719:2:1;14704:18;;14697:34;14763:3;14748:19;;14547:226::o;14778:343::-;14980:2;14962:21;;;15019:2;14999:18;;;14992:30;-1:-1:-1;;;15053:2:1;15038:18;;15031:49;15112:2;15097:18;;14952:169::o;15126:401::-;15328:2;15310:21;;;15367:2;15347:18;;;15340:30;15406:34;15401:2;15386:18;;15379:62;-1:-1:-1;;;15472:2:1;15457:18;;15450:35;15517:3;15502:19;;15300:227::o;15532:411::-;15734:2;15716:21;;;15773:2;15753:18;;;15746:30;15812:34;15807:2;15792:18;;15785:62;-1:-1:-1;;;15878:2:1;15863:18;;15856:45;15933:3;15918:19;;15706:237::o;15948:177::-;16094:25;;;16082:2;16067:18;;16049:76::o;16130:983::-;;16440:3;16429:9;16425:19;16471:6;16460:9;16453:25;16497:2;16535:6;16530:2;16519:9;16515:18;16508:34;16578:3;16573:2;16562:9;16558:18;16551:31;16602:6;16637;16631:13;16668:6;16660;16653:22;16706:3;16695:9;16691:19;16684:26;;16745:2;16737:6;16733:15;16719:29;;16766:4;16779:195;16793:6;16790:1;16787:13;16779:195;;;16858:13;;-1:-1:-1;;;;;16854:39:1;16842:52;;16949:15;;;;16914:12;;;;16890:1;16808:9;16779:195;;;-1:-1:-1;;;;;;;17030:32:1;;;;17025:2;17010:18;;17003:60;-1:-1:-1;;;17094:3:1;17079:19;17072:35;16991:3;16401:712;-1:-1:-1;;;16401:712:1:o;17118:319::-;17320:25;;;17376:2;17361:18;;17354:34;;;;17419:2;17404:18;;17397:34;17308:2;17293:18;;17275:162::o;17442:184::-;17614:4;17602:17;;;;17584:36;;17572:2;17557:18;;17539:87::o;17631:128::-;;17702:1;17698:6;17695:1;17692:13;17689:2;;;17708:18;;:::i;:::-;-1:-1:-1;17744:9:1;;17679:80::o;17764:217::-;;17830:1;17820:2;;-1:-1:-1;;;17855:31:1;;17909:4;17906:1;17899:15;17937:4;17862:1;17927:15;17820:2;-1:-1:-1;17966:9:1;;17810:171::o;17986:168::-;;18092:1;18088;18084:6;18080:14;18077:1;18074:21;18069:1;18062:9;18055:17;18051:45;18048:2;;;18099:18;;:::i;:::-;-1:-1:-1;18139:9:1;;18038:116::o;18159:125::-;;18227:1;18224;18221:8;18218:2;;;18232:18;;:::i;:::-;-1:-1:-1;18269:9:1;;18208:76::o;18289:380::-;18374:1;18364:12;;18421:1;18411:12;;;18432:2;;18486:4;18478:6;18474:17;18464:27;;18432:2;18539;18531:6;18528:14;18508:18;18505:38;18502:2;;;18585:10;18580:3;18576:20;18573:1;18566:31;18620:4;18617:1;18610:15;18648:4;18645:1;18638:15;18502:2;;18344:325;;;:::o;18674:127::-;18735:10;18730:3;18726:20;18723:1;18716:31;18766:4;18763:1;18756:15;18790:4;18787:1;18780:15;18806:133;-1:-1:-1;;;;;18883:31:1;;18873:42;;18863:2;;18929:1;18926;18919:12

Swarm Source

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